Build & Push local docker images inside CDK8s applications
Project description
cdk8s-image
An Image
construct which takes care of building & pushing docker images that
can be used in CDK8s apps.
The following example will build the docker image from Dockerfile
under the
my-app
directory, push it to a local registry and then define a Kubernetes
deployment that deploys containers that run this image.
const image = new Image(this, 'image', {
dir: `${__dirname}/my-app`,
registry: 'localhost:5000'
});
new Deployment(this, 'deployment', {
containers: [ new Container({ image: image.url }) ],
});
Contributions
All contributions are celebrated.
License
Licensed under Apache 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cdk8s-image-0.2.565.tar.gz
(28.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.565.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.565.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05ce902d731b29c4fa9cea6c23d705152e0babee74f27a61c19c995300c68832 |
|
MD5 | cf88f456e0069c8ecec93513b064f463 |
|
BLAKE2b-256 | bd32323b515f140498052143c1b5538f2c77fe13d3236f260f607a58d1bf7dc1 |
File details
Details for the file cdk8s_image-0.2.565-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.565-py3-none-any.whl
- Upload date:
- Size: 26.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89ca5dac1f03341d0a6bc8927560a99a953874112c24ef50d18f52437544ef8a |
|
MD5 | d3e33edc282ddac1e127684e6e451f94 |
|
BLAKE2b-256 | ccbaa4ad113ff245ca9059380d10048cfddab44c2495e1914d24cef503c0ddee |