mirror of https://github.com/kubernetes/kops.git
Ignore cert-manager in LBC's webhooks
LBC depends on cert-manager but kops can get in a circular dependency loop when applying these manifests on a new cluster. The cert-manager pods wont be created because the LBC webhook on "CREATE pods" isn't working yet, but LBC pod cant be created because it depends on a secret volume mount created by cert-manager
This commit is contained in:
parent
b801315e2d
commit
8311ce18da
|
|
@ -1008,6 +1008,7 @@ webhooks:
|
|||
operator: NotIn
|
||||
values:
|
||||
- aws-load-balancer-controller
|
||||
- cert-manager
|
||||
rules:
|
||||
- apiGroups:
|
||||
- ""
|
||||
|
|
@ -1039,6 +1040,7 @@ webhooks:
|
|||
operator: NotIn
|
||||
values:
|
||||
- aws-load-balancer-controller
|
||||
- cert-manager
|
||||
rules:
|
||||
- apiGroups:
|
||||
- ""
|
||||
|
|
|
|||
Loading…
Reference in New Issue