Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for DR (0.03 sec)

  1. pilot/pkg/model/push_context_test.go

    			}
    			for i, dr := range drList {
    				if dr.rule.Name != tt.expectedDrName[i] {
    					t.Errorf("destinationRuleName expected %v got %v", tt.expectedDrName[i], dr.rule.Name)
    				}
    			}
    			testLocal := ps.destinationRuleIndex.namespaceLocal[tt.proxyNs]
    			if testLocal != nil {
    				destRules := testLocal.specificDestRules
    				for _, dr := range destRules[host.Name(testhost)] {
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/lds.go

    // Map of all configs that do not impact LDS
    var skippedLdsConfigs = map[model.NodeType]sets.Set[kind.Kind]{
    	model.Router: sets.New(
    		// for autopassthrough gateways, we build filterchains per-dr subset
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    		kind.Secret,
    		kind.ProxyConfig,
    		kind.DNSName,
    	),
    	model.SidecarProxy: sets.New(
    		kind.Gateway,
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. tests/integration/security/pass_through_filter_chain_test.go

    							param.Namespace.String(): apps.Ns1.Namespace,
    						})).
    						// It's not trivial to force mTLS to pass-through ports. To work around this, we will
    						// set up a SE and DR that forces it.
    						//
    						// Since our client will talk directly to pods via IP, we have to configure the ports
    						// in the SE as TCP, since only TCP does will match based in IP address rather than host.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/grpcecho_test.go

      selector:
        app: echo
      ports:
      - name: grpc
        targetPort: grpc
        port: 7070
    `,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: echo-dr
      namespace: default
    spec:
      host: echo-app.default.svc.cluster.local
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tests/integration/security/egress_sidecar_tls_origination_test.go

      ports:
      - number: 80
        name: http-port
        protocol: HTTP
        targetPort: 443
      - number: 443
        name: https-port
        protocol: HTTPS
      resolution: DNS
    `
    	dr := `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-server-sds-{{.WorkloadSelector}}
    spec:
      workloadSelector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_tls.go

    	}
    }
    
    // Set auto_sni if EnableAutoSni feature flag is enabled and if sni field is not explicitly set in DR.
    // Set auto_san_validation if VerifyCertAtClient feature flag is enabled and if there is no explicit SubjectAltNames specified  in DR.
    func (cb *ClusterBuilder) setAutoSniAndAutoSanValidation(mc *clusterWrapper, tls *networking.ClientTLSSettings) {
    	if mc == nil || !features.EnableAutoSni {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    			if err != nil {
    				t.Errorf("Could not parse destination rule: %v", err)
    			}
    			dr := &networking.DestinationRule{}
    			err = json.Unmarshal(byteArray, dr)
    			if err != nil {
    				t.Errorf("Could not unmarshal destination rule: %v", err)
    			}
    			ca := dr.TrafficPolicy.Tls.CaCertificates
    			if ca != tt.expectedCaCertificateName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. internal/bucket/object/lock/lock_test.go

    			expectErr:   true,
    		},
    	}
    	for _, tt := range tests {
    		d, err := xml.MarshalIndent(&tt.value, "", "\t")
    		if err != nil {
    			t.Fatal(err)
    		}
    		var dr DefaultRetention
    		err = xml.Unmarshal(d, &dr)
    		//nolint:gocritic
    		if tt.expectedErr == nil {
    			if err != nil {
    				t.Fatalf("error: expected = <nil>, got = %v", err)
    			}
    		} else if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar_test.go

    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-workloadselector-specific-dr-match",
    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app2"},
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs19 = &config.Config{
    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-workloadselector-specific-dr-no-match",
    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app5"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. tests/integration/security/egress_gateway_origination_test.go

    		"CredentialName": credentialName,
    	}
    
    	// Get namespace for gateway pod.
    	istioCfg := istio.DefaultConfigOrFail(t, t)
    	systemNS := namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    
    	dr := `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-server-sds-{{.CredentialName}}
    spec:
      host: "{{ .to.Config.ClusterLocalFQDN }}"
      trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top