From 066e3efc67f59e52c0e4757c49a95831b116e662 Mon Sep 17 00:00:00 2001 From: Chao Xu Date: Wed, 13 May 2015 17:16:13 -0700 Subject: [PATCH] remove gce-pd example, as it duplicates the examples/persistent-volumes/volumes/gce.yaml --- examples/gce-pd/testpd.yaml | 22 ---------------------- examples/gce-pd/v1beta3/testpd.yaml | 21 --------------------- 2 files changed, 43 deletions(-) delete mode 100644 examples/gce-pd/testpd.yaml delete mode 100644 examples/gce-pd/v1beta3/testpd.yaml diff --git a/examples/gce-pd/testpd.yaml b/examples/gce-pd/testpd.yaml deleted file mode 100644 index 246e4eafe5f..00000000000 --- a/examples/gce-pd/testpd.yaml +++ /dev/null @@ -1,22 +0,0 @@ -apiVersion: v1beta1 -desiredState: - manifest: - containers: - - image: gcr.io/google_containers/pause - name: testpd - volumeMounts: - - mountPath: "/testpd" - name: "testpd" - id: testpd - version: v1beta1 - volumes: - - name: testpd - source: - persistentDisk: - # This GCE PD must already exist. - pdName: "%insert_pd_name_here%" - fsType: ext4 -id: testpd -kind: Pod -labels: - test: testpd diff --git a/examples/gce-pd/v1beta3/testpd.yaml b/examples/gce-pd/v1beta3/testpd.yaml deleted file mode 100644 index 1f95d4ff36f..00000000000 --- a/examples/gce-pd/v1beta3/testpd.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: v1beta3 -kind: Pod -metadata: - labels: - test: testpd - name: testpd -spec: - containers: - - name: testpd - image: gcr.io/google_containers/pause - volumeMounts: - # name must match the volume name below - - name: testpd - # mount path within the container - mountPath: /testpd - volumes: - - name: testpd - gcePersistentDisk: - # This GCE PD must already exist. - pdName: %insert_pd_name_here% - fsType: ext4