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.263.tar.gz
(27.2 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.263.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.263.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd5ce6b0388c3c17f56c411e33f85a8191e88259604fe05b0a7e4b803b7ff65a |
|
MD5 | f7923ec3f1983b5d80514ac1783b292f |
|
BLAKE2b-256 | 9bc8995dcea94a14c922be9250fd90cd1c2578c86c3ea6205cdd23e550b8908c |
File details
Details for the file cdk8s_image-0.2.263-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.263-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.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6a9298450f610266482ea85102a2e4a0b2d011f44dc9e3b00e3b493e4d5c06b |
|
MD5 | 768184a1391dd2a48dcb1c4f004e9449 |
|
BLAKE2b-256 | a64fb23c68267db06312d7aab0acf11bf96fb8bbee7652989c224957d9eadb5a |