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.574.tar.gz
(28.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.574.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.574.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f3d48879c8823907b93dfffb8fa975ba19276700ba79ac8f2ad53e4adf3a88c |
|
MD5 | c4b31c26f927dc01ed9488dc24725c08 |
|
BLAKE2b-256 | 31043bf98abc341cea3f639f5b77fd3998751b71851c623faa032420817c717b |
File details
Details for the file cdk8s_image-0.2.574-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.574-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.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b878c23132a6f5704a61b6bba6549f4883fe976e545d71c4b4f358759b65248c |
|
MD5 | 4d72471a25a4e118923f89f82664c412 |
|
BLAKE2b-256 | f0ed4ed72584bfd48fa749cc55bfa98e33ffde7cad9877b396d3d553fea97441 |