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.348.tar.gz
(27.5 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.348.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.348.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 | 06a6f4e2993ea3a3bbf0788c9bbd774eb8901b7c0ea932d55b8b4c1c7127b1dd |
|
MD5 | d2579bd571f58ff9ce5d964630f18f5c |
|
BLAKE2b-256 | 3860e141bec1a86c5e28dd8666957dca8055a202f75141bf7ba30422d039b2c8 |
File details
Details for the file cdk8s_image-0.2.348-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.348-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 | 2256a33534a7629f123ae7a8ebb69712ef90f5605a06bb4415502b6abbbd844e |
|
MD5 | e08bdf8da4626c8ac9e42c1ac5c96926 |
|
BLAKE2b-256 | e68c7ce0a4f8975b004fbdea24a28211f325097e041ccb4feda2afc8a1e9b5f4 |