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.209.tar.gz
(27.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.209.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.209.tar.gz
- Upload date:
- Size: 27.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7796008740d33f938bcfe88847605a9abb1d19b841c7c14344cf674a313ccb4c |
|
MD5 | 07bcad156032fcd6100713d4d8d38190 |
|
BLAKE2b-256 | 2c2741ba63f8656e8a5c14fa74818040a18e2eb24cdac4fa87fca8b3736b671c |
File details
Details for the file cdk8s_image-0.2.209-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.209-py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c63becfee8e5870e96b0fc1c917d8454e237616746480761189b581ca185fc7 |
|
MD5 | 80ef2f640edc811693be3ddd3fdc4064 |
|
BLAKE2b-256 | 16d87c39e22a67d8d43e7e477b057b71b4251a3301616994309afce2352cc67d |