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.607.tar.gz
(28.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.607.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.607.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e18455014c9316716594ee010f5561edb01ec135ba3ad4d1505082ae00fc1fc |
|
MD5 | 419be5e82478d75bacc83401fe19f8f7 |
|
BLAKE2b-256 | 6692f7cba87771216012a99c635e266b623180de9d6814fc5d76856f812032bd |
File details
Details for the file cdk8s_image-0.2.607-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.607-py3-none-any.whl
- Upload date:
- Size: 26.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cefc6287733162cd8239a369c3e97fe2d083dd00bf0e02f36e1097c733899700 |
|
MD5 | eaad1680e16e7c3c727a8c24e202e6c8 |
|
BLAKE2b-256 | 4cf1e76f09324903131450d017702c98f3c7589d3aab63a93b8d22933eee0ef6 |