@@ -350,7 +350,10 @@ jobs:
350350 ANSIBLE_FORCE_COLOR: 1
351351 ANSIBLE_DISPLAY_SKIPPED_HOSTS: 0
352352 ANSIBLE_STDOUT_CALLBACK: "yaml"
353+ TMPDIR: "/mnt/tmp"
353354 run: |
355+ sudo mkdir -p "${TMPDIR}"
356+ sudo chmod 1777 "${TMPDIR}"
354357 OPP_FORCE_OPERATORS=${OPP_FORCE_OPERATORS// /,}
355358 echo $OPP_FORCE_OPERATORS
356359 [ "$OPP_AUTO_LABEL" = '1' ] && ANSIBLE_ARGS="-e automatic_cluster_version_label=true" || ANSIBLE_ARGS="-e automatic_cluster_version_label=false"
@@ -695,7 +698,10 @@ jobs:
695698 ANSIBLE_FORCE_COLOR: 1
696699 ANSIBLE_DISPLAY_SKIPPED_HOSTS: 0
697700 ANSIBLE_STDOUT_CALLBACK: "yaml"
701+ TMPDIR: "/mnt/tmp"
698702 run: |
703+ sudo mkdir -p "${TMPDIR}"
704+ sudo chmod 1777 "${TMPDIR}"
699705 OPP_FORCE_OPERATORS=${OPP_FORCE_OPERATORS// /,}
700706 echo $OPP_FORCE_OPERATORS
701707 [ "$OPP_AUTO_LABEL" = '1' ] && ANSIBLE_ARGS="-e automatic_cluster_version_label=true" || ANSIBLE_ARGS="-e automatic_cluster_version_label=false"
@@ -937,7 +943,10 @@ jobs:
937943 id: index-verify
938944 env:
939945 OPP_CONTAINER_TOOL: podman
946+ TMPDIR: "/mnt/tmp"
940947 run: |
948+ sudo mkdir -p "${TMPDIR}"
949+ sudo chmod 1777 "${TMPDIR}"
941950 MY_TAG=${{ matrix.index-tag }}
942951 MY_TAG=$(echo $MY_TAG | cut -d '-' -f 1)
943952{% endraw %}
@@ -966,9 +975,12 @@ jobs:
966975{% endraw %}
967976 OHIO_INPUT_CATALOG_IMAGE: "{{ default_config.production.index.registry }}/{{ default_config.production.index.organization }}/{{ default_config.production.index.name }}:latest"
968977 OHIO_REGISTRY_IMAGE: "{{ default_config.operatorhubio.registry }}/{{ default_config.operatorhubio.organization }}/{{ default_config.operatorhubio.name }}:{{ default_config.operatorhubio.tag }}"
978+ TMPDIR: "/mnt/tmp"
969979{% raw %}
970980 steps:
971981 - name: Ohio image
982+ env:
983+ TMPDIR: "/mnt/tmp"
972984 run: |
973985 echo "ohio_image operators/sync $OPP_THIS_REPO $OPP_THIS_BRANCH"
974986 bash <(curl -sL $OPP_SCRIPT_CLEANUP_URL)
0 commit comments