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.206.tar.gz
(27.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.206.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.206.tar.gz
- Upload date:
- Size: 27.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0acf03c1d272faa97a1085284b6c89716bf6f91f812b6259c4e0ee918fa24cb |
|
MD5 | a7a4cc3d7e12f49efee1d061ea59b619 |
|
BLAKE2b-256 | ad96b9ec261692c98efa259653272304f3a4131e96c533b9a26c8c27dcbb2ce3 |
File details
Details for the file cdk8s_image-0.2.206-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.206-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.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e37892b799ab7cca8ba9ab8cc5e2a40ad02c8f6d55b5d558e418bad25e00b88 |
|
MD5 | 8c4d112076986bb3aac8c1b7fbe9788a |
|
BLAKE2b-256 | a7155d254fa59ad6123a8594d94d6ddb14f979762af842f3a2c9f86e1073fa1a |