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.500.tar.gz
(27.9 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.500.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.500.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 | 1c3c4a9e3b69cddf7b3c8edba080ead1c26282efe7e0e0332487c0aa5fe8745a |
|
MD5 | 61c4a733b05ec3535c6808299907f9da |
|
BLAKE2b-256 | a82f89dbc16ed63cabd29b043afa95d993111754b65506f15f2e1a45d21711da |
File details
Details for the file cdk8s_image-0.2.500-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.500-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 | 1384dc51b8a7d0c1713ea9c4abfc115b808854d0b11aa9b2466faa9dabdafe95 |
|
MD5 | d8992f6446897efccf6d2e3e65064fcf |
|
BLAKE2b-256 | bdfa0e7d95846f57c8649ba87ae5ecb58f8ae5702ae124314db619371157964e |