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.440.tar.gz
(27.9 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.440.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.440.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5eaa134cc223a96433cfb1427d550794043fc802802180fdd8ada04cc696eb7 |
|
MD5 | 5ef3eca9e83507f7f7a089418e51fcf1 |
|
BLAKE2b-256 | 6e43aa0adc6036339115de0c967808d495e41c4d70367c3ef0360e78385a46d6 |
File details
Details for the file cdk8s_image-0.2.440-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.440-py3-none-any.whl
- Upload date:
- Size: 26.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd3528a460c26004dfc2433f43291db7337219016c3f9435a0331cdbcc12b463 |
|
MD5 | 9e6eb75d3fe76539c0b740c4cbce9d11 |
|
BLAKE2b-256 | 74a26af40fdfa23e0ff3d409212395b0b9e3a03fa44c785d0388fb1881c615f6 |