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.549.tar.gz
(28.0 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.549.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.549.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fac4b62be17641042b32b11d921fe0284a9dc222f21910b6062eebc90ec184f |
|
MD5 | a6f47863ec52f072b4acb8eea59d9072 |
|
BLAKE2b-256 | b274b0d76c7551a29aec9c898d90966821eebb73c3faf67ad51aaa87135428ca |
File details
Details for the file cdk8s_image-0.2.549-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.549-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 | 6506ec9a0ac9a93ab32e5e28e80d5ea56e002de7f308dbb1194c033d8255c5fd |
|
MD5 | 175f62c3c901e596e4198144ea280d2d |
|
BLAKE2b-256 | d19db9ad6d2c68ddae1484a83465a090383d115fbb5124ac9f45e43f612be2de |