diff --git a/chart/infra-server/static/workflow-aks.yaml b/chart/infra-server/static/workflow-aks.yaml index 1b99c1d8b..e84315977 100644 --- a/chart/infra-server/static/workflow-aks.yaml +++ b/chart/infra-server/static/workflow-aks.yaml @@ -128,3 +128,9 @@ spec: secretKeyRef: name: azure-secrets key: AZURE_SP_TENANT + volumeMounts: + - name: data + mountPath: /data + volumes: + - name: data + emptyDir: {} diff --git a/chart/infra-server/static/workflow-eks.yaml b/chart/infra-server/static/workflow-eks.yaml index acb4b88f4..805b00d39 100644 --- a/chart/infra-server/static/workflow-eks.yaml +++ b/chart/infra-server/static/workflow-eks.yaml @@ -108,3 +108,9 @@ spec: secretKeyRef: name: aws-access-secrets key: AWS_SECRET_ACCESS_KEY + volumeMounts: + - name: data + mountPath: /data + volumes: + - name: data + emptyDir: {}