Skip to content

Commit 22a54aa

Browse files
committed
fix: Calico wait 타임아웃을 SSM 세션 제한에 맞게 조정
kubectl wait --timeout=300s → 50s (SSM 60초 세션 제한 내), retries 3→10, delay 10→15로 변경하여 총 대기 시간 유지.
1 parent 063bc93 commit 22a54aa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • IaC/3-v3/ansible/roles/calico/tasks

IaC/3-v3/ansible/roles/calico/tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
kubectl --kubeconfig=/home/ubuntu/.kube/config
3838
wait --for=condition=Ready pods
3939
--all -n calico-system
40-
--timeout=300s
41-
retries: 3
42-
delay: 10
40+
--timeout=50s
41+
retries: 10
42+
delay: 15
4343
register: calico_ready
4444
until: calico_ready.rc == 0

0 commit comments

Comments
 (0)