Skip to content

Commit f3df434

Browse files
committed
add a bit more doc
1 parent c079b81 commit f3df434

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

skaffold-duct-tape/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,10 @@ podspec that would be transformed to `k8s-pod.yaml` to:
2323
- mount a volume to hold the debugging support files
2424
- provide an initContainer to populate the volume
2525
- mount the volume to the applicable containers
26+
27+
This directory includes a `skaffold.yaml` for development of the
28+
the `duct-tape` initContainer image. To add support for a new
29+
language runtime, run `skaffold dev` and tweak `duct-tape/Dockerfile`
30+
to download and install the necessary files in `/duct-tape`. The
31+
initContainer will then copy the contents of this image into place
32+
via its entrypoint (`install.sh`).

skaffold-duct-tape/skaffold.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: skaffold/v1beta5
2+
kind: Config
3+
build:
4+
artifacts:
5+
- image: gcr.io/gcp-dev-tools/duct-tape
6+
context: duct-tape
7+
deploy:
8+
kubectl:
9+
manifests:
10+
- k8s-*

0 commit comments

Comments
 (0)