You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
inCluster=flags.Bool("in-cluster", true, "If running in a Kubernetes cluster, use the pod secrets for creating a Kubernetes client. Optional.")
58
58
apiServerHost=flags.String("apiserver-host", "", "The address of the Kubernetes API Server. Optional if running in cluster; if omitted, local discovery is attempted.")
59
59
kubeConfigFile=flags.String("kubeconfig", "", "Path to kubeconfig file with authorization and master location information.")
60
-
resyncPeriod=flags.Duration("sync-period", thirtySeconds, "Interval at which to re-list and confirm cloud resources.")
60
+
resyncPeriod=flags.Duration("sync-period", resyncPause, "Interval at which to re-list and confirm cloud resources.")
ErrResolvingBackendPortForService=errors.New("unable to resolve backend port for some services")
13
+
14
+
// ErrMultipleServiceBackendPortBinding is an error.
13
15
ErrMultipleServiceBackendPortBinding=errors.New("more than one service-backend port binding is not allowed")
16
+
17
+
// ErrGeneratingProbes is an error.
14
18
ErrGeneratingProbes=errors.New("unable to generate health probes")
19
+
20
+
// ErrGeneratingBackendSettings is an error.
15
21
ErrGeneratingBackendSettings=errors.New("unable to generate backend http settings")
22
+
23
+
// ErrGeneratingPools is an error.
16
24
ErrGeneratingPools=errors.New("unable to generate backend address pools")
25
+
26
+
// ErrGeneratingListeners is an error.
17
27
ErrGeneratingListeners=errors.New("unable to generate frontend listeners")
28
+
29
+
// ErrGeneratingRoutingRules is an error.
18
30
ErrGeneratingRoutingRules=errors.New("unable to generate request routing rules")
31
+
32
+
// ErrKeyNoDefaults is an error.
19
33
ErrKeyNoDefaults=errors.New("either a DefaultRedirectConfiguration or (DefaultBackendAddressPool + DefaultBackendHTTPSettings) must be configured")
34
+
35
+
// ErrKeyEitherDefaults is an error.
20
36
ErrKeyEitherDefaults=errors.New("URL Path Map must have either DefaultRedirectConfiguration or (DefaultBackendAddressPool + DefaultBackendHTTPSettings) but not both")
37
+
38
+
// ErrKeyNoBorR is an error.
21
39
ErrKeyNoBorR=errors.New("A valid path rule must have one of RedirectConfiguration or (BackendAddressPool + BackendHTTPSettings)")
40
+
41
+
// ErrKeyEitherBorR is an error.
22
42
ErrKeyEitherBorR=errors.New("A Path Rule must have either RedirectConfiguration or (BackendAddressPool + BackendHTTPSettings) but not both")
43
+
44
+
// ErrKeyNoPrivateIP is an error.
23
45
ErrKeyNoPrivateIP=errors.New("A Private IP must be present in the Application Gateway FrontendIPConfiguration if the controller is configured to UsePrivateIP for routing rules")
46
+
47
+
// ErrKeyNoPublicIP is an error.
24
48
ErrKeyNoPublicIP=errors.New("A Public IP must be present in the Application Gateway FrontendIPConfiguration")
0 commit comments