Skip to content

Commit

Permalink
Merge pull request #769 from 3scale/backport-768-THREESCALE-8476-fix-…
Browse files Browse the repository at this point in the history
…domain-resync-command-line

[Backport 768] THREESCALE-8476 fix domain resync command line
  • Loading branch information
eguzki authored Jun 29, 2022
2 parents b47d255 + 0edd867 commit a2e70c7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ spec:
- name: RELATED_IMAGE_ZYNC_POSTGRESQL
value: centos/postgresql-10-centos7
- name: RELATED_IMAGE_OC_CLI
value: quay.io/openshift/origin-cli:4.2
value: quay.io/openshift/origin-cli:4.7
image: quay.io/3scale/3scale-operator:master
name: manager
ports:
Expand Down
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ spec:
- name: RELATED_IMAGE_ZYNC_POSTGRESQL
value: "centos/postgresql-10-centos7"
- name: RELATED_IMAGE_OC_CLI
value: "quay.io/openshift/origin-cli:4.2"
value: "quay.io/openshift/origin-cli:4.7"
terminationGracePeriodSeconds: 10
2 changes: 1 addition & 1 deletion pkg/3scale/amp/component/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ func ZyncPostgreSQLImageURL() string {
}

func OCCLIImageURL() string {
return "quay.io/openshift/origin-cli:4.2"
return "quay.io/openshift/origin-cli:4.7"
}
2 changes: 1 addition & 1 deletion pkg/restore/apimanager_restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ func (b *APIManagerRestore) zyncResyncDomainsContainerArgs() string {
exit 1
fi
podname=$(echo -n $dcpods | awk '{print $1}')
oc exec ${podname} bash -- -c "bundle exec rake zync:resync:domains"
oc exec ${podname} -- bash -c "bundle exec rake zync:resync:domains"
`
}

Expand Down

0 comments on commit a2e70c7

Please sign in to comment.