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.364.tar.gz
(27.5 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.364.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.364.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 | 1025207bcfca946bb5a8e2d9e5e1d69e7a3055e6fc54cc7c92e16378554d9e9b |
|
MD5 | 1e04026cb9fe595f5095f9d9ff946c68 |
|
BLAKE2b-256 | c1dcf99cd3097485d741b4832773404247c76793634c180a11ce1ba439cd6f5b |
File details
Details for the file cdk8s_image-0.2.364-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.364-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 | ea12f22487a4b2ba464acf2f1fcfa46b27df23368f94662d42b912666e39a660 |
|
MD5 | c7ec80f99c03876b25efa48cac3efa21 |
|
BLAKE2b-256 | fde79886b02d4fde1bcf51c161ebb76cb21a6da3646e69d0448bbe10c21475f8 |