mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
feat(alpine): add alpine waiter pod
This commit is contained in:
@@ -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.
|
||||
@@ -0,0 +1,3 @@
|
||||
# Alpine
|
||||
|
||||
This Chart provides a Pod running Alpine Linux.
|
||||
@@ -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"]
|
||||
Reference in New Issue
Block a user