Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for crs (0.21 sec)

  1. pilot/pkg/model/proxy_config_test.go

    					}),
    			},
    			proxy:    newMeta("test-ns", map[string]string{"test": "selector"}, nil),
    			expected: &meshconfig.ProxyConfig{Concurrency: v(3)},
    		},
    		{
    			name: "multiple matching workload CRs, oldest applies",
    			configs: []config.Config{
    				setCreationTimestamp(newProxyConfig("workload-a", "test-ns",
    					&v1beta1.ProxyConfig{
    						Selector: selector(map[string]string{
    							"test": "selector",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/controller.go

    // Controller defines the controller for the gateway-api. The controller acts a bit different from most.
    // Rather than watching the CRs directly, we depend on the existing model.ConfigStoreController which
    // already watches all CRs. When there are updates, a new PushContext will be computed, which will eventually
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. tests/integration/operator/switch_cr_test.go

    			installWithCRFile(t, t, cs, istioCtl, "default", "v2")
    			installWithCRFile(t, t, cs, istioCtl, "default", "")
    
    			// istio control plane resources expected to be deleted after deleting CRs
    			cleanupInClusterCRs(t, cs)
    
    			// test operator remove command
    			scopes.Framework.Infof("checking operator remove command for default revision")
    			removeCmd := []string{
    				"operator", "remove",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    		{Group: "apiextensions.k8s.io", Resource: "customresourcedefinitions"}: true,
    	}
    }
    
    // CRDFinalizer is a controller that finalizes the CRD by deleting all the CRs associated with it.
    type CRDFinalizer struct {
    	crdClient      client.CustomResourceDefinitionsGetter
    	crClientGetter CRClientGetter
    
    	crdLister listers.CustomResourceDefinitionLister
    	crdSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    		}
    	}
    
    	shirtv1beta1Client := dynamicClient.Resource(schema.GroupVersionResource{Group: crd.Spec.Group, Version: crd.Spec.Versions[0].Name, Resource: crd.Spec.Names.Plural})
    
    	// read CRs with the v1beta1 client and
    	// wait until conversion webhook is called the first time
    	if err := wait.PollUntilContextTimeout(ctx, time.Millisecond*100, wait.ForeverTestTimeout, true, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. architecture/environments/operator.md

    step.
    1. Overlays in the user CR are applied to the rendered manifests. No values are ever defined in configuration profile
    CRs at this layer, so no merge is performed in this step.
    
    ## CLI
    
    The CLI `mesh` command is implemented in the [cmd/mesh](../operator/cmd/mesh/)
    subdirectory as a Cobra command with the following subcommands:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. src/go/scanner/scanner_test.go

    		switch e.tok {
    		case token.COMMENT:
    			// no CRs in comments
    			elit = string(stripCR([]byte(e.lit), e.lit[1] == '*'))
    			//-style comment literal doesn't contain newline
    			if elit[1] == '/' {
    				elit = elit[0 : len(elit)-1]
    			}
    		case token.IDENT:
    			elit = e.lit
    		case token.SEMICOLON:
    			elit = ";"
    		default:
    			if e.tok.IsLiteral() {
    				// no CRs in raw string literals
    				elit = e.lit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  8. operator/pkg/manifest/shared.go

    		}
    		multiple := false
    		multiple, err = hasMultipleIOPs(string(b))
    		if err != nil {
    			return "", err
    		}
    		if multiple {
    			return "", fmt.Errorf("input file %s contains multiple IstioOperator CRs, only one per file is supported", fn)
    		}
    		ly, err = util.OverlayIOP(ly, string(b))
    		if err != nil {
    			return "", err
    		}
    	}
    	return ly, nil
    }
    
    func hasMultipleIOPs(s string) (bool, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/scanner.go

    	for {
    		if s.ch == '`' {
    			s.nextch()
    			break
    		}
    		if s.ch < 0 {
    			s.errorAtf(0, "string not terminated")
    			ok = false
    			break
    		}
    		s.nextch()
    	}
    	// We leave CRs in the string since they are part of the
    	// literal (even though they are not part of the literal
    	// value).
    
    	s.setLit(StringLit, ok)
    }
    
    func (s *scanner) comment(text string) {
    	s.errorAtf(0, "%s", text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject.go

    		patchBytes, err = injector.Inject(pod, namespace)
    	}
    	if err != nil {
    		return nil, err
    	}
    	// TODO(Monkeyanator) istioctl injection still applies just the pod annotation since we don't have
    	// the ProxyConfig CRs here.
    	if pca, f := metadata.GetAnnotations()[annotation.ProxyConfig.Name]; f {
    		var merr error
    		meshconfig, merr = mesh.ApplyProxyConfig(pca, meshconfig)
    		if merr != nil {
    			return nil, merr
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
Back to top