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.114.tar.gz
(25.2 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.114.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.114.tar.gz
- Upload date:
- Size: 25.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f20ce9506a5b4b795d9e531d07c982c74f87d1376fd3ab321d70611f529ab184 |
|
MD5 | 6b820a0d1dbf0c6fc45d523674d49588 |
|
BLAKE2b-256 | 0ce2188b70e1e8d5236e7a38e9ee437bc57ba2cce6a9eacc665d231ab4354095 |
File details
Details for the file cdk8s_image-0.2.114-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.114-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8330729b4861b777ddf8d6c7364284a9680d13054f2392b9f9d24122fb2bc93 |
|
MD5 | a7896ca170c6f64c7033659604731329 |
|
BLAKE2b-256 | 0c2b51fbc9cdb835ba2f8b497920cbb2db7ea28f55a09d9b9551659ba8a0ca40 |