Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
bdf30f1
Merge pull request #4438 from dell/pub/q2_dev
abhishek-sa1 May 15, 2026
e25165f
Feature branch sync - pub/q2_dev to staging (#4443)
abhishek-sa1 May 15, 2026
bc514be
Merge pull request #4451 from dell/pub/q2_dev
abhishek-sa1 May 15, 2026
92503e3
Feature branch sync - pub/q2_upgrade to staging (#4644)
abhishek-sa1 Jun 2, 2026
16bd939
Feature branch sync - pub/q2_upgrade to staging (#4653)
abhishek-sa1 Jun 3, 2026
0a79509
Merge pull request #4663 from dell/pub/q2_upgrade
abhishek-sa1 Jun 3, 2026
141a190
Merge pull request #4670 from dell/pub/q2_upgrade
abhishek-sa1 Jun 4, 2026
b706374
Merge pull request #4726 from dell/pub/q2_upgrade
abhishek-sa1 Jun 10, 2026
1d84266
Feature branch sync - pub/q2_upgrade to staging (#4740)
abhishek-sa1 Jun 11, 2026
303c4b5
Merge pull request #4750 from dell/pub/q2_upgrade
abhishek-sa1 Jun 12, 2026
347f703
Merge pull request #4751 from dell/pub/q2_upgrade
abhishek-sa1 Jun 14, 2026
392c631
Merge pull request #4756 from dell/pub/q2_upgrade
abhishek-sa1 Jun 16, 2026
2cbb03b
Merge pull request #4761 from dell/pub/q2_upgrade
abhishek-sa1 Jun 17, 2026
5ec26d9
Feature branch sync - pub/q2_upgrade to staging (#4773)
abhishek-sa1 Jun 18, 2026
5ca86bf
Update software_config.json
sakshi-singla-1735 Jun 19, 2026
4213b89
Merge pull request #4776 from sakshi-singla-1735/staging
Katakam-Rakesh Jun 19, 2026
48450df
csi
sakshi-singla-1735 Jun 19, 2026
9f1d9c4
Merge pull request #4778 from sakshi-singla-1735/staging
Katakam-Rakesh Jun 19, 2026
0495049
Feature branch sync - pub/q2_upgrade to staging (#4777)
abhishek-sa1 Jun 19, 2026
8a0cb1e
Merge pull request #4783 from dell/pub/q2_upgrade
abhishek-sa1 Jun 23, 2026
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
2 changes: 1 addition & 1 deletion input/software_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{"name": "openldap", "arch": ["x86_64","aarch64"]},
{"name": "service_k8s","version": "1.35.1", "arch": ["x86_64"]},
{"name": "slurm_custom", "arch": ["x86_64","aarch64"]},
{"name": "csi_driver_powerscale", "version":"v2.16.0", "arch": ["x86_64"]},
{"name": "csi_driver_powerscale", "version":"v2.17.0", "arch": ["x86_64"]},
{"name": "ldms", "arch": ["x86_64","aarch64"]},
{"name": "additional_packages", "arch": ["x86_64","aarch64"]}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@ else
echo "Snapshot Controller deployment failed (expected). Continuing..."
}

echo "Updating Snapshot Controller image to v8.5.0..."
kubectl set image deployment/snapshot-controller snapshot-controller=registry.k8s.io/sig-storage/snapshot-controller:v8.5.0 -n kube-system >/dev/null 2>&1 || true
echo "Waiting for Snapshot Controller rollout to finish (timeout: 5 minutes)..."
kubectl rollout status deployment/snapshot-controller -n kube-system --timeout=300s >/dev/null 2>&1 || {
echo "Snapshot Controller rollout did not complete in time."
}

echo "Waiting for Snapshot Controller pods to reach Running state..."
MAX_ATTEMPTS=60
WAIT_TIME=5
Expand Down
Loading