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.106.tar.gz
(25.1 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.106.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.106.tar.gz
- Upload date:
- Size: 25.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6a5abef00b6e6ecc55a5f10c58479e2ad3c8f2c56c3953ba86731446e23ce6e |
|
MD5 | 8da9aaf8cf01d3f4c84d55cd9db8dffb |
|
BLAKE2b-256 | 39c69aa08ff30e3cd1e22a403f17a283b8c13fa80ebe00f2419ee5fec298bb11 |
File details
Details for the file cdk8s_image-0.2.106-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.106-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b65e9e3540f21bbeaad02a43e128bc0cdfb1faafa525b4e8d2cb788b87853cef |
|
MD5 | 0d06daa473c00ab76934f04f8db83dab |
|
BLAKE2b-256 | 54e90f7935cdcff3a91702b296d20d3810b59a2f23ea170ed9ffcff2bf82738a |