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.495.tar.gz
(27.9 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.495.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.495.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed66eedc1a743417cba54e0cb655b7476ced727463ad7b91e9fa58fe558b543e |
|
MD5 | d975efee90a6b5ca93ada482471e7e2f |
|
BLAKE2b-256 | 93980a65f40e522c50f43819e94107456e298717aca22a778db4adf5d612c5d1 |
File details
Details for the file cdk8s_image-0.2.495-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.495-py3-none-any.whl
- Upload date:
- Size: 26.5 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 | 69908685d11c5efd67f476b35e1fffbca95801eec4b1220c4e72185d5426564e |
|
MD5 | dbf8ae3719d8549a6a04e5b98284859c |
|
BLAKE2b-256 | 99da18f057aaf29336f3d433a418bd8b4b09e304df68de945a071fb622f642a2 |