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.244.tar.gz
(27.2 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.244.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.244.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4d6dba056f6256e67d1f6541664f0641dc5f6ecb2c77c66f766f0408413bc4d |
|
MD5 | 33804d26e6309aab4815a2b79b239408 |
|
BLAKE2b-256 | da1cb8b91e203985dcc685e87d6c2bd3fc91cb0063c82daecee7014343d0f467 |
File details
Details for the file cdk8s_image-0.2.244-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.244-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 | ca7a56f7a24e3b083404bd2dc99ed88e5e051c7f30efe7160271875e2e40b195 |
|
MD5 | 30c93de8be8f8062144c6e7ac255cc4f |
|
BLAKE2b-256 | e32322891fb569ca7a0b4bfda64c8ec4bc4c80bfddddf20504e08489c1128a40 |