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.343.tar.gz
(27.5 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.343.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.343.tar.gz
- Upload date:
- Size: 27.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bd3b4dc7e255dd592d20365da52dde9c15e5d96f767a220390ef3f1b5601866 |
|
MD5 | 337ed06f070e9bbbdfcafbd72a16f151 |
|
BLAKE2b-256 | c602225e5e5f1ea9b3d234615a94d2e26a37a7fa020b224a4ac5bd72c7f8468e |
File details
Details for the file cdk8s_image-0.2.343-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.343-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 | 9cbc8f5cd9461c8c1734b76e766eee00e9dba4cc6c8b6c6e1bae19235c5a2b7f |
|
MD5 | bfdf8840f557cd2f7a436a3eb84cf3e1 |
|
BLAKE2b-256 | 81b45a9f19d26f69867533c87586a2e17a7c7999c58f36176394bc0b0d8ed01d |