Fixing cluster service version issue for operators on 4.6 cluster (#3746)

This commit is contained in:
Priti Kumari
2020-08-13 09:08:31 +05:30
committed by GitHub
parent 81154f8c41
commit ed9f304a1e

View File

@@ -9,7 +9,6 @@ install_mongo_operator() {
apiVersion: operators.coreos.com/v1alpha1 apiVersion: operators.coreos.com/v1alpha1
kind: Subscription kind: Subscription
metadata: metadata:
generation: 1
name: mongodb-enterprise name: mongodb-enterprise
namespace: openshift-operators namespace: openshift-operators
spec: spec:
@@ -18,6 +17,7 @@ install_mongo_operator() {
name: mongodb-enterprise name: mongodb-enterprise
source: certified-operators source: certified-operators
sourceNamespace: openshift-marketplace sourceNamespace: openshift-marketplace
startingCSV: mongodb-enterprise.v1.6.0
EOF EOF
} }
@@ -35,6 +35,7 @@ install_etcd_operator(){
name: etcd name: etcd
source: community-operators source: community-operators
sourceNamespace: openshift-marketplace sourceNamespace: openshift-marketplace
startingCSV: etcdoperator.v0.9.4-clusterwide
EOF EOF
} }
@@ -43,7 +44,6 @@ install_service_binding_operator(){
apiVersion: operators.coreos.com/v1alpha1 apiVersion: operators.coreos.com/v1alpha1
kind: Subscription kind: Subscription
metadata: metadata:
generation: 1
name: service-binding-operator name: service-binding-operator
namespace: openshift-operators namespace: openshift-operators
spec: spec:
@@ -52,6 +52,7 @@ install_service_binding_operator(){
name: service-binding-operator name: service-binding-operator
source: community-operators source: community-operators
sourceNamespace: openshift-marketplace sourceNamespace: openshift-marketplace
startingCSV: service-binding-operator.v0.1.1-352
EOF EOF
} }