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.485.tar.gz
(27.9 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.485.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.485.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4ea61242dbf9692cd09cee3d780aeffd84aec15e18b380309d49f93b9988d6c |
|
MD5 | 41c12b1f9a63565e175c5ee51f2ef124 |
|
BLAKE2b-256 | b9bd1e4b95c888f61391e3acf0f1feed8c955ce781366f4048eebd9469ef12f6 |
File details
Details for the file cdk8s_image-0.2.485-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.485-py3-none-any.whl
- Upload date:
- Size: 26.5 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 | 652f215a744ac29e98a7b6792245f78d3d5dc9e118dc90718b966dddaca852a5 |
|
MD5 | 2f575eae26ac44e0c4a7fc5fff9a4030 |
|
BLAKE2b-256 | 1265562c172ee76990d992fb49e521efa9055cb75ef1d48c891b32b501abd7ae |