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.567.tar.gz
(28.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.567.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.567.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2adde63070c97794a68c274877b0c19ef0391c1925961fcbb2a19f04bb6f2165 |
|
MD5 | d852c0b27e97b92e37bac5ea55d56e22 |
|
BLAKE2b-256 | 519f6398e353fb5a87b2796a07da9275b79396ce0cdc7c6a957ddb1afb5b44fe |
File details
Details for the file cdk8s_image-0.2.567-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.567-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 | f1ec6ab1a97b170e287f31e32d65ff964240d82b13a5b1a45619469158de6f49 |
|
MD5 | 6b12a545ce09ee65a1f0032a91e177d7 |
|
BLAKE2b-256 | 4486121592eabfb7e9ea7976bc63102c602487562acee2585758d7b00cc6c1f9 |