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.566.tar.gz
(28.0 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.566.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.566.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 | d1aa14fb309a57b728f642e45a600aa9bf44ff25feb33db742e7f9a3cdc66429 |
|
MD5 | 5626db81a9dd3518ee9c390d40e01511 |
|
BLAKE2b-256 | 42500d9f2c89d36cbd93cfe3729b363db8fb7190121438334569c31694bc5432 |
File details
Details for the file cdk8s_image-0.2.566-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.566-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 | 5c716e8d9357eeb578332079844a99d80c361e4f9ad02bd77c306d3c3d86d9b4 |
|
MD5 | 91cd713ddd7ac9008186fa4174953ead |
|
BLAKE2b-256 | aef56e00097ebe8970aace70534cf387cab9c193779233d58bb34e5f1660e1b8 |