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.604.tar.gz
(28.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.604.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.604.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a4d97b72117e6e6ba65bad32304722cac5f082d3bc27b1de32670d75387fd85 |
|
MD5 | 56042fc9c8dad4fb30d5fef36cd0ec4f |
|
BLAKE2b-256 | 8b073d1877b465e11b5d50867fdb478afe0517668a89f1037116f3310720dc3a |
File details
Details for the file cdk8s_image-0.2.604-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.604-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.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a23eca729fe8ce9bb38f58ee0eec7021d2f8f5625352a778be4d4e0ab3f6a723 |
|
MD5 | 81d547cae3ae854205b0a9da96d2e4aa |
|
BLAKE2b-256 | 462688ea6322a759a69fbca6dc0b956413d514099667ca6c5db9043d18003e04 |