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.644.tar.gz
(29.3 kB
view details)
Built Distribution
File details
Details for the file cdk8s_image-0.2.644.tar.gz
.
File metadata
- Download URL: cdk8s_image-0.2.644.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f40d430dac09379a05e84b74f1fa00812c48af0638b44cfd69ee3f6a11791004 |
|
MD5 | fff4b2b899c58eae776f38aac45da947 |
|
BLAKE2b-256 | c644a4ee15c0d384df1a32ec16cf3e54796d0c985184663949f1d75a786bff45 |
File details
Details for the file cdk8s_image-0.2.644-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.644-py3-none-any.whl
- Upload date:
- Size: 28.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bba269aa7e5d14c42e4564153c85ae0520452ee7a27c49642b47b5ea948dd29b |
|
MD5 | 8bed0f396941a8b4833d6b15209f6195 |
|
BLAKE2b-256 | c64491fc03b6a49fd64bd468048f8d83116c26a526c8fabeacb39f1f3252b2d4 |