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.584.tar.gz
(28.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.584.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.584.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfd8e9fdafc7a0f0f5cc377ea5d766d7e7667b0eb6e214c2981f806417fcd603 |
|
MD5 | 927a778324c3b677e4b159c2b835bf48 |
|
BLAKE2b-256 | 12dd0380a6218e641fa6c7ad5c9c647236e0558cdffdaeadcffd55e2177e82f2 |
File details
Details for the file cdk8s_image-0.2.584-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.584-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.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c63117ab75c1db2d49f15813b862f455f438cc7120a782566b23419d75661bf8 |
|
MD5 | 8ae382afaab2c33b0b75f418261729f3 |
|
BLAKE2b-256 | 2d0a2891449fd2f3ad44755280ed24a160fe1324b32c606b58b3e9e34d9b3a09 |