[fas2discourse] Fix the path to oc binary

/root/bin/oc doesn't exist, the oc is located in /bin/oc. I assume that
this was just some manually created symlink, so let me fix that.
This commit is contained in:
Michal Konecny
2025-07-01 18:47:52 +02:00
parent ef8aa2f749
commit b4a80bed38
3 changed files with 3 additions and 3 deletions

View File

@@ -8,4 +8,4 @@
# apply created openshift resources
- name: Oc apply resources
ansible.builtin.command: "/root/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-discourse-apikey.yml"
ansible.builtin.command: "/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-discourse-apikey.yml"

View File

@@ -21,4 +21,4 @@
# apply created openshift resources
- name: Oc apply resources
ansible.builtin.command: "/root/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-keytab.yml"
ansible.builtin.command: "/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/secret-keytab.yml"

View File

@@ -8,4 +8,4 @@
# apply created openshift resources
- name: Oc apply resources
ansible.builtin.command: "/root/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/namespace.yml"
ansible.builtin.command: "/bin/oc apply -f /root/ocp4/openshift-apps/fas2discourse-operator/namespace.yml"