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.139.tar.gz
(25.6 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.139.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.139.tar.gz
- Upload date:
- Size: 25.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a32a5065a6b814b8a42dc69d2946e2f8a11b0605130e4f141dd37ad7106c666f |
|
MD5 | 1da50543654160d3aa059c2358355d4d |
|
BLAKE2b-256 | b1694bf771f82a7d5271c75de2878080c86e67f920cdb4bf7c490327bee88f96 |
File details
Details for the file cdk8s_image-0.2.139-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.139-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7ba7bb56d29ce662db52c9d9bcc8f284954c9e61a3f7a54af8e2c68076c8c23 |
|
MD5 | 8b41cca352c5eca112beedd2e97e03a7 |
|
BLAKE2b-256 | 2220a4c1e2c9753b2f326fa9b40dd7ff553302b739e24537787423630381a7d7 |