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.623.tar.gz
(27.7 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.623.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.623.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6966419a50e46c3e13dfa4c6bcc3508c0e467be76607db87880001c8de31d990 |
|
MD5 | dfbe08119ba13e149129c3d59f4f1627 |
|
BLAKE2b-256 | 16a725d5a34192b48a957b6761e6a57726561184edf8ba26c26b61442c95abb3 |
File details
Details for the file cdk8s_image-0.2.623-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.623-py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e354ede48ff0dfd34da4a9a34a50306b55a8a4d67b2e9abd925284feacf5b044 |
|
MD5 | c1784d0124e1cdca4c378c2c8a043368 |
|
BLAKE2b-256 | 549732f945862cf6fde419197a9085102165a222cfe1ace34e934c4feb5b1acc |