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.530.tar.gz
(28.0 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.530.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.530.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c1cae2a332f36d8a04442e069b957d537666a98fd286e4ca727b31aa651637d |
|
MD5 | 62586c4b7276e1d686237a39bf583356 |
|
BLAKE2b-256 | 434a0c1b4ea4b58852fb36dc967a7c428877170c498b32de114d16ba61abe619 |
File details
Details for the file cdk8s_image-0.2.530-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.530-py3-none-any.whl
- Upload date:
- Size: 26.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a31632c3eadd6d27704c27e5d832b86bd67055a59cb8e8de321ac2e4cf933b33 |
|
MD5 | f7ac22f9ac4b2248003066b8aa092bdc |
|
BLAKE2b-256 | 8370f3c7597bc604a8ea24842e4aebf8fe5a8d65ad03007ad5767674cd2c1dbe |