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.225.tar.gz
(27.2 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.225.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.225.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77a87e4784f5431d383d1448ee9574cb1303be39857d82c5b9b8881d19954c90 |
|
MD5 | 211e95d510941e89f2060c47a4ee8aea |
|
BLAKE2b-256 | 19969abcc5a94eb5b7675968b8207390b82b1aee2026806f61ec4d45cab73207 |
File details
Details for the file cdk8s_image-0.2.225-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.225-py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46191c1d7f74cddb4940d15c3cf2935aebaeb0ff7030e879034e9214b68e6699 |
|
MD5 | 0f52e23a14bd706bdff0ca18dcf3dc51 |
|
BLAKE2b-256 | 493a9d69561f88274375bc64e335cecf7a39c8ccbadf777b8ddc3602dbe5bca3 |