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.502.tar.gz
(28.0 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.502.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.502.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1e1420c7764df0f6bc8ee7898fdaa57369e1347e7ecb076ab72ec607d079021 |
|
MD5 | 3bac13da1ef0a173c2931f2a6dc16878 |
|
BLAKE2b-256 | 38b5b7eddd4a1962c5284536731824578eb92ce223191df2d7f776a19a2b423f |
File details
Details for the file cdk8s_image-0.2.502-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.502-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 | f101172e8e57c71fac739c66bcb0ee09a16d20eed350f617a16af14c10cf8dcc |
|
MD5 | de72614fdd5f1843d034b78fd717a1ee |
|
BLAKE2b-256 | 9701eb92b126cfdee89b53a2256ad153007a6efc86a315486b02ebcd6750cf27 |