updated gce-pd and redis examples to use v1beta3

This commit is contained in:
Abhi Shah
2015-03-04 12:19:51 -08:00
parent e6517e48eb
commit f92b20888b
23 changed files with 498 additions and 190 deletions

View File

@@ -0,0 +1,21 @@
apiVersion: v1beta3
kind: Pod
metadata:
labels:
test: testpd
name: testpd
spec:
containers:
- name: testpd
image: kubernetes/pause
volumeMounts:
# name must match the volume name below
- name: testpd
# mount path within the container
mountPath: /testpd
volumes:
- name: testpd
persistentDisk:
# This GCE PD must already exist.
pdName: %insert_pd_name_here%
fsType: ext4