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.441.tar.gz
(27.9 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.441.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.441.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ed79421cd4573de039b107b32c6604f05bab89b63f5780654b1f5a489938889 |
|
MD5 | 8d521d3e099b0737b22b1779a7f6ea65 |
|
BLAKE2b-256 | 3a5b39908e8916c75bcb9f0164e7d5ee992e43bc055f3a313582c517636d086f |
File details
Details for the file cdk8s_image-0.2.441-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.441-py3-none-any.whl
- Upload date:
- Size: 26.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2e621eaf596c678a318d87f5570fe0c3667b4116e5cd5460bebd18a91791cac |
|
MD5 | 7393c236d1db325446c1a7d65ba287d3 |
|
BLAKE2b-256 | 278bc75b283e6ca3df4f235affb9f498bafc5903874e9bd8a7cd07c88edd1e22 |