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.272.tar.gz
(27.2 kB
view details)
Built Distribution
File details
Details for the file cdk8s-image-0.2.272.tar.gz
.
File metadata
- Download URL: cdk8s-image-0.2.272.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fcfd3381f2eb5f1f85c44f47c226ba5e1194f11c49d13e9870f4cda930614a7 |
|
MD5 | 9f705eb9b152c7c6f80f78df1d21d5ff |
|
BLAKE2b-256 | 4465aa24ad3b4050e6e4878ec5ab1cb37e24691555cf07e23ca412825ba6ff8e |
File details
Details for the file cdk8s_image-0.2.272-py3-none-any.whl
.
File metadata
- Download URL: cdk8s_image-0.2.272-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfc595f7d1fefd67def36191875ddfcfc2c915ae427f7d1b492a30b64bbab892 |
|
MD5 | cc0f4cdd00f95df101960fb4b14f3142 |
|
BLAKE2b-256 | 63a6032bed166343a905b9d28778439010711c7ca329d0abeee9d9ce2c0e1ed3 |