Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for crdNames (0.2 sec)

  1. operator/pkg/helmreconciler/wait.go

    	var crdNames []string
    	for _, o := range object.KindObjects(objects, name.CRDStr) {
    		crdNames = append(crdNames, o.Name)
    	}
    	if len(crdNames) == 0 {
    		return nil
    	}
    
    	errPoll := wait.PollUntilContextTimeout(context.Background(), cRDPollInterval, cRDPollTimeout, false, func(context.Context) (bool, error) {
    	descriptor:
    		for _, crdName := range crdNames {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/util/util.go

    					GatewayLabel:   inst.Settings().IngressGatewayIstioLabel,
    				})
    				credNames = append(credNames, cred)
    			}
    			SetupConfig(ctx, ns.Get(), tests...)
    			return nil
    		}).
    		To(echotest.SimplePodServiceAndAllSpecial(1)).
    		RunFromClusters(func(ctx framework.TestContext, fromCluster cluster.Cluster, to echo.Target) {
    			for _, cn := range credNames {
    				CreateIngressKubeSecret(ctx, cn, Mtls, IngressCredentialA, false)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug.go

    	var cmdNames []string
    	for k := range s.debugHandlers {
    		key := strings.Replace(k, "/debug/", "", -1)
    		// exclude current list command
    		if key == "list" {
    			continue
    		}
    		// can not support pprof commands
    		if strings.Contains(key, "pprof") {
    			continue
    		}
    		cmdNames = append(cmdNames, key)
    	}
    	sort.Strings(cmdNames)
    	writeJSON(w, cmdNames, req)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top