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.428.tar.gz
(27.9 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.428.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.428.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b905dba8660462602575265a7ee749a759d07d259f9912f46da6cfda4636a36 |
|
MD5 | 30be2eef376ab75e5c61f616197b49da |
|
BLAKE2b-256 | 011681f82a4f0efdb34cdda1745a9f3a0e374ba1775e987cd6a48416d8341d58 |
File details
Details for the file cdk8s_image-0.2.428-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.428-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.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00c923688dbd4ba2bdf9883e6950c7cd74ad6e13cfb3d76968172b7e5238209a |
|
MD5 | fcb306f13ace3c90381dbe20647b6024 |
|
BLAKE2b-256 | 77efea9f20784baf1eecced678d4e0e9f71de1d65ddb851e5bbd44bb4f9ca2be |