dgrove-oss closed pull request #208: Small change to make persistent-volumes work in GKE
URL: https://github.com/apache/incubator-openwhisk-deploy-kube/pull/208
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/kubernetes/cluster-setup/persistent-volumes.yml b/kubernetes/cluster-setup/persistent-volumes.yml
index 2beb87a..16fe723 100644
--- a/kubernetes/cluster-setup/persistent-volumes.yml
+++ b/kubernetes/cluster-setup/persistent-volumes.yml
@@ -9,6 +9,7 @@ metadata:
pv-owner: openwhisk
pv-usage: pv-apigateway
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
capacity:
@@ -22,6 +23,7 @@ metadata:
name: pv-apigateway-01
namespace: openwhisk
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
@@ -40,6 +42,7 @@ metadata:
pv-owner: openwhisk
pv-usage: pv-couchdb
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
capacity:
@@ -53,6 +56,7 @@ metadata:
name: pv-couchdb-01
namespace: openwhisk
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
@@ -72,6 +76,7 @@ metadata:
pv-owner: openwhisk
pv-usage: pv-kafka
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
capacity:
@@ -85,6 +90,7 @@ metadata:
name: pv-kafka-01
namespace: openwhisk
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
@@ -104,6 +110,7 @@ metadata:
pv-owner: openwhisk
pv-usage: pv-zookeeper-data
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
capacity:
@@ -117,6 +124,7 @@ metadata:
name: pv-zookeeper-data-01
namespace: openwhisk
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
@@ -134,6 +142,7 @@ metadata:
pv-owner: openwhisk
pv-usage: pv-zookeeper-datalog
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
capacity:
@@ -147,6 +156,7 @@ metadata:
name: pv-zookeeper-datalog-01
namespace: openwhisk
spec:
+ storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
users@infra.apache.org
With regards,
Apache Git Services
|