diff --git a/alpine/Chart.yaml b/alpine/Chart.yaml new file mode 100644 index 0000000000..fee478225f --- /dev/null +++ b/alpine/Chart.yaml @@ -0,0 +1,10 @@ +name: alpine-pod +home: http://github.com/deis/helm +version: 0.0.1 +description: Simple pod running Alpine Linux. +maintainers: + - Matt Butcher +details: + This package provides a basic Alpine Linux image that can be used for basic + debugging and troubleshooting. By default, it starts up, sleeps for a long + time, and then eventually stops. diff --git a/alpine/README.md b/alpine/README.md new file mode 100644 index 0000000000..0c3333efc0 --- /dev/null +++ b/alpine/README.md @@ -0,0 +1,3 @@ +# Alpine + +This Chart provides a Pod running Alpine Linux. diff --git a/alpine/manifests/alpine-pod.yaml b/alpine/manifests/alpine-pod.yaml new file mode 100644 index 0000000000..139eb7c8eb --- /dev/null +++ b/alpine/manifests/alpine-pod.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Pod +metadata: + name: alpine +spec: + restartPolicy: Never + containers: + - name: waiter + image: "alpine:3.2" + command: ["/bin/sleep","9000"]