Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for analyzer_util (0.18 sec)

  1. istioctl/pkg/checkinject/checkinject.go

    						}
    					}
    				}
    			}
    		} else if podMatched {
    			if v, ok := nsLabels[analyzer_util.InjectionLabelName]; ok {
    				if v != "enabled" {
    					return fmt.Sprintf("Namespace has %s=%s label, preventing injection",
    						analyzer_util.InjectionLabelName, v), false
    				}
    			}
    		}
    	}
    	noMatchingReason := func(whs []admitv1.MutatingWebhook) string {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  2. istioctl/pkg/injector/injector-list.go

    	oldLabel, ok := namespace.ObjectMeta.GetLabels()[analyzer_util.InjectionLabelName]
    	// If there is no istio-injection=disabled and no istio.io/rev, the namespace isn't injected
    	if newRev == "" && (ok && oldLabel == "disabled" || !ok) {
    		return ""
    	}
    	if newRev != "" {
    		return fmt.Sprintf("MISSING/%s", newRev)
    	}
    	return fmt.Sprintf("MISSING/%s", analyzer_util.InjectionLabelName)
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 04 03:08:06 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    	"istio.io/istio/pilot/pkg/security/authn"
    	pilotcontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config"
    	analyzerutil "istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	configKube "istio.io/istio/pkg/config/kube"
    	"istio.io/istio/pkg/config/mesh"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
Back to top