Skip to content

Commit 845ac78

Browse files
committed
ci(helm): fix rollout wait to target StatefulSet, not Deployment
The agent-sandbox controller manifest installs a StatefulSet, not a Deployment, so kubectl rollout status was 404'ing on the wrong kind. Signed-off-by: Taylor Mutch <taylormutch@gmail.com>
1 parent 2cac75b commit 845ac78

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/branch-helm-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
set -euo pipefail
128128
kubectl --kubeconfig "$GITHUB_WORKSPACE/kubeconfig" apply -f deploy/kube/manifests/agent-sandbox.yaml
129129
kubectl --kubeconfig "$GITHUB_WORKSPACE/kubeconfig" wait --for=condition=Established crd/sandboxes.agents.x-k8s.io --timeout=120s
130-
kubectl --kubeconfig "$GITHUB_WORKSPACE/kubeconfig" -n agent-sandbox-system rollout status deployment/agent-sandbox-controller --timeout=300s
130+
kubectl --kubeconfig "$GITHUB_WORKSPACE/kubeconfig" -n agent-sandbox-system rollout status statefulset/agent-sandbox-controller --timeout=300s
131131
132132
- name: Run Helm E2E (Rust smoke)
133133
env:

0 commit comments

Comments
 (0)