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.547.tar.gz
(28.0 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.547.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.547.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 | 289104861f8c5206f4266bc98ce261586cbdb31fa64f6fb2550531453e4be354 |
|
MD5 | 0b560787a4eeec448ea42367fe8b9dec |
|
BLAKE2b-256 | 3aa8988c372a0415c6b0401493ead1089f3d0ab29818f1ccae435b50b2c6f1bb |
File details
Details for the file cdk8s_image-0.2.547-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.547-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 | d2ae5d34e922a6575618d044d34580431cd0489e52a3cfac326b27dfedfa5f46 |
|
MD5 | 560319b9bdfba376b79beef1a12a3061 |
|
BLAKE2b-256 | 1b35b6001a3dfdc443e84741c18d4f72bd96a2ab53249f21225b983ef3e9635f |