Skip to content

Commit

Permalink
increase vault wait timeout (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Edwards authored Oct 30, 2023
1 parent e4a2f62 commit c276b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ func (clctrl *ClusterController) WaitForVault() error {
log.Errorf("error finding Vault StatefulSet: %s", err)
return err
}
_, err = k8s.WaitForStatefulSetReady(kcfg.Clientset, vaultStatefulSet, 120, true)
_, err = k8s.WaitForStatefulSetReady(kcfg.Clientset, vaultStatefulSet, 300, true)
if err != nil {
log.Errorf("error waiting for Vault StatefulSet ready state: %s", err)
return err
Expand Down

0 comments on commit c276b00

Please sign in to comment.