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.367.tar.gz
(27.5 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.367.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.367.tar.gz
- Upload date:
- Size: 27.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d42a2fb1c9c4aad924452a61df7c8b06230b9adcc120baefc1b35fb15c9e761f |
|
MD5 | a3e4df610d7e0cf46afc19acd3149d46 |
|
BLAKE2b-256 | d2b90614336016c59542fddb73a38df26c92dce076586da6e91df5b8e22e9dfb |
File details
Details for the file cdk8s_image-0.2.367-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.367-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4ae2251032934402ae99675e7253b8c20eb9c6f4ae44f08c5435244ff10455f |
|
MD5 | a014a22fd1527f34c588157626325e3c |
|
BLAKE2b-256 | ce090695bd49f541cd682edfee1a08f7f3266396107cfb5a2932269d8ad51e3c |