Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for CRs (0.03 sec)

  1. releasenotes/notes/43706.yaml

    issue:
    - 43705
    
    releaseNotes:
    - |
      **Added** `istioctl analyze` will display a error when encountering the following two situations:
      - For any namespace, if there are multiple Telemetry CRs without selector,
      - For any namespace, if there are multiple telemetry CRs with selector that select the same workload.
      
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 380 bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/model/proxy_config.go

    	}
    
    	workloadConfig := p.mergedWorkloadConfig(meta.Namespace, meta.Labels)
    
    	// Check for proxy.istio.io/config annotation and merge it with lower priority than the
    	// workload-matching ProxyConfig CRs.
    	if v, ok := meta.Annotations[annotation.ProxyConfig.Name]; ok {
    		pca, err := proxyConfigFromAnnotation(v)
    		if err == nil {
    			workloadConfig = mergeWithPrecedence(workloadConfig, pca)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tests/integration/security/util/reachability/context.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // TestCase represents reachability test cases.
    type TestCase struct {
    	// ConfigFile is the name of the yaml contains the authentication policy and destination rule CRs
    	// that are needed for the test setup.
    	// The file is expected in the tests/integration/security/reachability/testdata folder.
    	ConfigFile string
    	Namespace  namespace.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tools/bug-report/pkg/content/content.go

    	if err != nil {
    		return nil, err
    	}
    	out, err := p.Runner.RunCmd("get --all-namespaces "+strings.Join(crds, ",")+" -o yaml", "", p.KubeConfig, p.KubeContext, p.DryRun)
    	return map[string]string{
    		"crs": out,
    	}, err
    }
    
    // GetClusterInfo returns the cluster info.
    func GetClusterInfo(p *Params) (map[string]string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. 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)
Back to top