Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for DR (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. internal/bucket/object/lock/lock.go

    const (
    	// This tested by using `mc lock` command
    	maximumRetentionDays  = 36500
    	maximumRetentionYears = 100
    )
    
    // UnmarshalXML - decodes XML data.
    func (dr *DefaultRetention) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    	// Make subtype to avoid recursive UnmarshalXML().
    	type defaultRetention DefaultRetention
    	retention := defaultRetention{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    			fmt.Fprintf(w, "%v\n", err)
    			return
    		}
    		typeURL := fmt.Sprintf("istio.io%s", req.URL.Path)
    		dr := discovery.DiscoveryRequest{
    			TypeUrl: typeURL,
    		}
    		resourceName := qp.Get("resourceName")
    		if resourceName != "" {
    			dr.ResourceNames = []string{resourceName}
    		}
    		response, err := p.tapRequest(&dr, 5*time.Second)
    		if err != nil {
    			w.WriteHeader(http.StatusServiceUnavailable)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    				fakeRootCert        bool // If Fake root cert is to be used to verify server's presented certificate
    			}{
    				// Mutual Connection is originated by our DR but server side drops the connection to
    				// only use Simple TLS as it doesn't verify client side cert
    				// TODO: mechanism to enforce mutual TLS(client cert) validation by the server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    	// First get DR port level traffic policy
    	original, _ = GetPortLevelTrafficPolicy(original, port)
    	if subsetPolicy == nil {
    		return original
    	}
    	subsetPolicy, hasPortLevel := GetPortLevelTrafficPolicy(subsetPolicy, port)
    	if original == nil {
    		return subsetPolicy
    	}
    
    	// merge DR with subset traffic policy
    	// Override with subset values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads_test.go

    				GroupVersionKind: gvk.DestinationRule,
    				Name:             fmt.Sprintf("dr%d", i), Namespace: testConfigNamespace,
    			},
    			Spec: &networking.DestinationRule{
    				Host:     host,
    				ExportTo: nil,
    			},
    		}); err != nil {
    			t.Fatal(err)
    		}
    	}
    	removeDestinationRule := func(i int) {
    		s.Store().Delete(gvk.DestinationRule, fmt.Sprintf("dr%d", i), testConfigNamespace, nil)
    	}
    
    	sc := &networking.Sidecar{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                throw new IllegalArgumentException("could not make url use https", e);
            }
        }
    
        public static boolean isSecureUrl(URI url) {
            /*
             * TL;DR: http://127.0.0.1 will bypass this validation, http://localhost will fail this validation.
             *
             * Hundreds of Gradle's integration tests use a local web-server to test logic that relies upon
             * this behavior.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top