This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-deploy-kube.git
The following commit(s) were added to refs/heads/master by this push:
new 81909b4 Small change to make persistent-volumes work in GKE (#208)
81909b4 is described below
commit 81909b457481b91953251fc8ded85f71eb38e786
Author: vcosqui <[email protected]>
AuthorDate: Fri Jun 1 15:51:34 2018 +0200
Small change to make persistent-volumes work in GKE (#208)
added `storageClassName: manual` to PV and PVC to make them work in GKE
---
kubernetes/cluster-setup/persistent-volumes.yml | 10 ++++++++++
1 file changed, 10 insertions(+)
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:
--
To stop receiving notification emails like this one, please contact
[email protected].