From a5eeceb3191225a61a533be515150513e68cfeb3 Mon Sep 17 00:00:00 2001 From: Gabriel Monroy Date: Mon, 26 Oct 2015 16:20:11 -0600 Subject: [PATCH] feat(alpine): add alpine waiter pod --- alpine/Chart.yaml | 10 ++++++++++ alpine/README.md | 3 +++ alpine/manifests/alpine-pod.yaml | 10 ++++++++++ 3 files changed, 23 insertions(+) create mode 100644 alpine/Chart.yaml create mode 100644 alpine/README.md create mode 100644 alpine/manifests/alpine-pod.yaml 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"]