Skip to content

Commit a2e70c7

Browse files
authored
Merge pull request #769 from 3scale/backport-768-THREESCALE-8476-fix-domain-resync-command-line
[Backport 768] THREESCALE-8476 fix domain resync command line
2 parents b47d255 + 0edd867 commit a2e70c7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bundle/manifests/3scale-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ spec:
375375
- name: RELATED_IMAGE_ZYNC_POSTGRESQL
376376
value: centos/postgresql-10-centos7
377377
- name: RELATED_IMAGE_OC_CLI
378-
value: quay.io/openshift/origin-cli:4.2
378+
value: quay.io/openshift/origin-cli:4.7
379379
image: quay.io/3scale/3scale-operator:master
380380
name: manager
381381
ports:

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@ spec:
7070
- name: RELATED_IMAGE_ZYNC_POSTGRESQL
7171
value: "centos/postgresql-10-centos7"
7272
- name: RELATED_IMAGE_OC_CLI
73-
value: "quay.io/openshift/origin-cli:4.2"
73+
value: "quay.io/openshift/origin-cli:4.7"
7474
terminationGracePeriodSeconds: 10

pkg/3scale/amp/component/images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ func ZyncPostgreSQLImageURL() string {
4141
}
4242

4343
func OCCLIImageURL() string {
44-
return "quay.io/openshift/origin-cli:4.2"
44+
return "quay.io/openshift/origin-cli:4.7"
4545
}

pkg/restore/apimanager_restore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ func (b *APIManagerRestore) zyncResyncDomainsContainerArgs() string {
402402
exit 1
403403
fi
404404
podname=$(echo -n $dcpods | awk '{print $1}')
405-
oc exec ${podname} bash -- -c "bundle exec rake zync:resync:domains"
405+
oc exec ${podname} -- bash -c "bundle exec rake zync:resync:domains"
406406
`
407407
}
408408

0 commit comments

Comments
 (0)