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.392.tar.gz
(27.4 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.392.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.392.tar.gz
- Upload date:
- Size: 27.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc48fe9614ac75f8b73623c0317847fffe9861e68f885b29d823d757bb24b00e |
|
MD5 | 79d12ea243e96c88546b45c483a5b654 |
|
BLAKE2b-256 | 5abd55a04712d114c3d69257c312ab381e429ba3257b3784f97cc5d3305b8b31 |
File details
Details for the file cdk8s_image-0.2.392-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.392-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdbd534040cb105bc326d0d613d15d92101806f97a85d39a9a2d379788f6b1f1 |
|
MD5 | 3eed16dda7239da8426d4ea11b308348 |
|
BLAKE2b-256 | be45d490b2fce0a1734050f78c3649ec6e9666e86d893ee8f5dd214f418011d3 |