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.346.tar.gz
(27.4 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.346.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.346.tar.gz
- Upload date:
- Size: 27.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07e54de09dbbe3d4ffc494e2e4b1e3e747c5a0a289829326b96f8b30d2d87632 |
|
MD5 | 246f2091027872cc987ea9c6526a9912 |
|
BLAKE2b-256 | da99b4b37a380f19e42f4b646af42753d3b56804e5f323605a3b65053b6e2079 |
File details
Details for the file cdk8s_image-0.2.346-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.346-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e6f4007f5410ea21cc1163fbc2ef8b2b66d273bfbff35772c544a08e2ba39d7 |
|
MD5 | fbd90fe88c8d228d3380a3b4ce534c25 |
|
BLAKE2b-256 | 4cd8626bfcc0a4c39306bd447b7f5bf971d30212b9047775826c53771fdc22e4 |