chore: removed pvc creation from pipeline

This commit is contained in:
2024-07-19 02:11:30 -06:00
parent 93f28e2269
commit 64559ef563
2 changed files with 0 additions and 15 deletions

View File

@@ -221,21 +221,6 @@ spec:
x=0; until [[ -n $( ./rabbitmqadmin -H ${RABBITHOST} -u ${RABBITUSER} -p ${RABBITPASS} declare binding source="conversion" destination_type="queue" destination="complete" routing_key="complete" ) || $x -eq 10 ]]; do echo "waiting for exchange to be created" && sleep 5 && ((x++)); done
if [[ "${x}" -eq 10 ]]; then exit 1; fi
oc apply -f - <<EOF
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: pvc-conversion
namespace: goghvideo-test-${RANDOMID}
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 5Gi
storageClassName: nfs-client
volumeMode: Filesystem
EOF
echo -n "goghvideo-test-${RANDOMID}" > $(results.namespace.path)
runAfter:
- build