Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for Validate (0.22 sec)

  1. istioctl/pkg/workload/workload.go

    	idx := strings.Index(str, "=")
    	var k string
    	var v string
    	if idx >= 0 {
    		k = str[:idx]
    		v = str[idx+1:]
    	} else {
    		k = str
    	}
    	return k, v
    }
    
    // validateFlagIsSetManuallyOrNot can validate that a persistent flag is set manually or not by user for given command
    func validateFlagIsSetManuallyOrNot(istioCmd *cobra.Command, flagName string) bool {
    	if istioCmd != nil {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    		"app":   "istio-ingressgateway",
    		"istio": "ingressgateway",
    	}
    	egress15Selector := map[string]string{
    		"app":   "istio-egressgateway",
    		"istio": "egressgateway",
    	}
    
    	// Validate references within the same deployment
    	validateReferentialIntegrity(t, objs, "istiod", istiod15Selector)
    	validateReferentialIntegrity(t, objs, "istio-ingressgateway", ingress15Selector)
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
Back to top