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.176.tar.gz
(26.8 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.176.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.176.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a097cdf652215399cdc365caadf18617159c159c69b31af3958e92a72c42549 |
|
MD5 | a9fdf5d659b5c820bfff5415edaae0d5 |
|
BLAKE2b-256 | 8cebb48f3c1cfcf7b1973410ebf5f51946f202e35ab1c35d932d73b1b593b2ee |
File details
Details for the file cdk8s_image-0.2.176-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.176-py3-none-any.whl
- Upload date:
- Size: 25.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4760b6d5377c7ce6cc7a766d5baf77ab0e6352e5614e10b4fad76b5f3ca9881 |
|
MD5 | 3d6236c86fed99388afbc0a4146a4d16 |
|
BLAKE2b-256 | a0192f3cf590ec4c053ed1b8d805354341c095c76938fcc50990c5f4eeed86c8 |