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.396.tar.gz
(27.9 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.396.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.396.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 | 566ec9bb983ec5dfd0c056187a7fe571cae3518ac73bb8c8acfb1e01d1e2ed66 |
|
MD5 | 0e8e4974e46a53963244c468e3479ef6 |
|
BLAKE2b-256 | 0329b62ed4717bdd8495a38c47d3f2da58f8521645e8667860e2645351a1bc63 |
File details
Details for the file cdk8s_image-0.2.396-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.396-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.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68b0206455ffd5c7a8bcc596e158395df90faa0034097dc6db2a9f1d25cad243 |
|
MD5 | 2a3decea9975870e960e32ba3e8d21b4 |
|
BLAKE2b-256 | 898cb109caf661d574a6764488749d5c85c97c8a470004dab281cf7cef4f2734 |