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.228.tar.gz
(27.2 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.228.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.228.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78790de8e35438c58283186f7ce3f23866f35a83d4a2fccf431abd48aa57344d |
|
MD5 | e4e4c53def0ddb7ff839ada9117621bb |
|
BLAKE2b-256 | 11d0a137e28e4694faab2fc21246aa4a702e6ec981a0a38455502d34ca58116a |
File details
Details for the file cdk8s_image-0.2.228-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.228-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 | 98acab31e33905264b623ea869ba53a01c2f187828290469ae7ed7d8c2d03de5 |
|
MD5 | 13f7c147fc04dc8d4a5440ee881b41e5 |
|
BLAKE2b-256 | 9c1c01679681092113963c33f6b28cab235cd1b6829dcdc8d23b81c85f580a91 |