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.503.tar.gz
(28.0 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.503.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.503.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 | 4438d7b7b11858f78cbb2104d2adfec012af21e7185233cb9b90b080a5903406 |
|
MD5 | 83f38367f10ea2c67eecdd36986fbb88 |
|
BLAKE2b-256 | 93c678f6387a7a143759579994b48493bd0825281727ce72b20fc9650ce095f3 |
File details
Details for the file cdk8s_image-0.2.503-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.503-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 | 92731020392036385607657f2d34622c412d19b6d287e7117de627472971cdcb |
|
MD5 | 06aed7ede9d1e0343494771183a9ab89 |
|
BLAKE2b-256 | be211ea5e78e75b9b2d427fb62f70b180b8d358d9b7d73490cfda491d6cfb611 |