Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/actions/setup-test-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,12 @@ runs:
echo "✓ Cluster resource check completed for ${{ inputs.architecture }}"
- name: Deploy CSI driver
shell: bash
run: |
chmod +x ./operator/src/scripts/test-scripts/deploy-csi-driver.sh
./operator/src/scripts/test-scripts/deploy-csi-driver.sh
- name: Install cert-manager
shell: bash
run: |
Expand Down Expand Up @@ -583,6 +589,7 @@ runs:
resource:
storage:
pvcSize: 5Gi
storageClass: csi-hostpath-sc
exposeViaService:
serviceType: ClusterIP
EOF
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/release_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,19 @@ jobs:
image_tag: ${{ inputs.image_tag }}
secrets: inherit

test-backup-and-restore:
name: Test Backup and Restore
if: ${{ inputs.run_tests == true }}
uses: ./.github/workflows/test-backup-and-restore.yml
with:
image_tag: ${{ inputs.image_tag }}
secrets: inherit

copy-and-push-manifest:
name: Release Images
runs-on: ubuntu-latest
needs: [test-e2e, test-integration]
if: always() && (needs.test-e2e.result == 'success' || needs.test-e2e.result == 'skipped') && (needs.test-integration.result == 'success' || needs.test-integration.result == 'skipped')
needs: [test-e2e, test-integration, test-backup-and-restore]
if: always() && (needs.test-e2e.result == 'success' || needs.test-e2e.result == 'skipped') && (needs.test-integration.result == 'success' || needs.test-integration.result == 'skipped') && (needs.test-backup-and-restore.result == 'success' || needs.test-backup-and-restore.result == 'skipped')
strategy:
matrix:
image: [operator, sidecar]
Expand Down
Loading
Loading