We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c639a4e commit f0a96a1Copy full SHA for f0a96a1
cns/middlewares/k8sSwiftV2.go
@@ -17,7 +17,9 @@ import (
17
)
18
19
var (
20
- errMTPNCNotReady = errors.New("mtpnc is not ready")
+ // In AKS, for kubelet to retry faster it is particularly looking for "network is not ready" error string.
21
+ // https://github.com/kubernetes/kubernetes/blob/efd2a0d1f514be96a2f012fc3cb40f7c872b4e67/pkg/kubelet/pod_workers.go#L1495C2-L1501C3
22
+ errMTPNCNotReady = errors.New("network is not ready - mtpnc is not ready")
23
errInvalidSWIFTv2NICType = errors.New("invalid NIC type for SWIFT v2 scenario")
24
errInvalidMTPNCPrefixLength = errors.New("invalid prefix length for MTPNC primaryIP, must be 32")
25
0 commit comments