feat(alpine): add alpine waiter pod

This commit is contained in:
Gabriel Monroy
2015-10-26 16:20:11 -06:00
parent d7e819834c
commit a5eeceb319
3 changed files with 23 additions and 0 deletions
+10
View File
@@ -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 <mbutcher@deis.com>
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.
+3
View File
@@ -0,0 +1,3 @@
# Alpine
This Chart provides a Pod running Alpine Linux.
+10
View File
@@ -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"]