Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CRs (0.02 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. releasenotes/notes/revision-cmd.yaml

      - 23892
    releaseNotes:
      - |
        **Added** tooling for revision-centric view of current istio deployments in a cluster. This is to
        provide better understanding of deployments - like number of istiod, gateway pods, IstioOperator CRs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 15:53:01 UTC 2021
    - 408 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. 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)
  5. 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)
Back to top