diff options
author | Michael Hanselmann <hansmi@vshn.ch> | 2018-01-30 13:48:39 +0100 |
---|---|---|
committer | Michael Hanselmann <hansmi@vshn.ch> | 2018-01-30 14:03:46 +0100 |
commit | f2ea513cde9dad1fb83bd10baa40c69da70a0bfe (patch) | |
tree | e59c476d0ce10f20f80ac423c9a5a4c3f3d30864 /roles | |
parent | 844156f49a1899dd9d6059207bf63e6d8b865ec6 (diff) | |
download | openshift-f2ea513cde9dad1fb83bd10baa40c69da70a0bfe.tar.gz openshift-f2ea513cde9dad1fb83bd10baa40c69da70a0bfe.tar.bz2 openshift-f2ea513cde9dad1fb83bd10baa40c69da70a0bfe.tar.xz openshift-f2ea513cde9dad1fb83bd10baa40c69da70a0bfe.zip |
Revert "GlusterFS: Remove image option from heketi command"
This reverts commit 3d3853836d71c37a9c81aea8e606c94052439789 which was
supposedly a fix for an issue with topology initialization, but that
turned out to be a separate issue fixed in commit
b8879b5c6731bd51e590b470b1a51fce73db0ee1. By default "heketi-cli
setup-openshift-heketi-storage" uses the "heketi/heketi:dev" image
while, for OpenShift Container Platform installations, the default image
for all other operations is "rhgs3/rhgs-volmanager-rhel7". In
environments where only a limited set of Docker registries is available,
i.e. only the Red Hat registry but not Docker Hub, using
"heketi/heketi:dev" does not work or would require manual intervention.
The discussion surrounding the removal of "--image" in PR#5769 involved
statements that "--image" was removed from Heketi. As of January 30,
2018 the master branch contains the option, as does the upstream Docker
image (Heketi version v5.0.0-225-gffb9fea) and the aforementioned
"rhgs3/rhgs-volmanager-rhel7" image.
Tested with OpenShift Container Platform 3.7.23.
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_storage_glusterfs/tasks/heketi_deploy_part2.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_storage_glusterfs/tasks/heketi_deploy_part2.yml b/roles/openshift_storage_glusterfs/tasks/heketi_deploy_part2.yml index c0a8c53de..303589617 100644 --- a/roles/openshift_storage_glusterfs/tasks/heketi_deploy_part2.yml +++ b/roles/openshift_storage_glusterfs/tasks/heketi_deploy_part2.yml @@ -1,6 +1,6 @@ --- - name: Create heketi DB volume - command: "{{ glusterfs_heketi_client }} setup-openshift-heketi-storage --listfile /tmp/heketi-storage.json" + command: "{{ glusterfs_heketi_client }} setup-openshift-heketi-storage --image {{ glusterfs_heketi_image}}:{{ glusterfs_heketi_version }} --listfile /tmp/heketi-storage.json" register: setup_storage - name: Copy heketi-storage list |