Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 225 for destinationFile (0.19 sec)

  1. pilot/pkg/networking/grpcgen/cds.go

    	if b.svc == nil || b.port == nil {
    		return nil
    	}
    
    	// resolve policy from context
    	destinationRule := corexds.CastDestinationRule(b.node.SidecarScope.DestinationRule(
    		model.TrafficDirectionOutbound, b.node, b.svc.Hostname).GetRule())
    	trafficPolicy, _ := util.GetPortLevelTrafficPolicy(destinationRule.GetTrafficPolicy(), b.port)
    
    	// setup default cluster
    	b.applyTrafficPolicy(defaultCluster, trafficPolicy)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. releasenotes/notes/use-client-protocol.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 08:36:20 UTC 2020
    - 168 bytes
    - Viewed (0)
  3. tests/integration/security/testdata/reachability/workload-dr.yaml.tmpl

    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "{{ .To.ServiceName }}"
    spec:
      host: "{{ .To.ClusterLocalFQDN }}"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 200 bytes
    - Viewed (0)
  4. releasenotes/notes/dr-analyzer.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 181 bytes
    - Viewed (0)
  5. tests/integration/ambient/testdata/automtls-passthrough.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: passthrough
      annotations:
        test-suite: automtls-passthrough
    spec:
      host: "*"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 224 bytes
    - Viewed (0)
  6. pilot/pkg/config/file/store_test.go

    func TestUpdateExistingContents(t *testing.T) {
    	g := NewWithT(t)
    	src := NewKubeSource(collections.Istio)
    
    	applyAndValidate := func(version string) {
    		configTemplate := `apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: productpage
      labels:
        version: %s
    spec:
      host: productpage
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
      subsets:
      - name: %s
        labels:
          version: %s`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 18:44:58 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. pkg/config/schema/gvk/resources.gen.go

    	DestinationRule                = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1alpha3", Kind: "DestinationRule"}
    	DestinationRule_v1beta1        = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1beta1", Kind: "DestinationRule"}
    	DestinationRule_v1             = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1", Kind: "DestinationRule"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/plaintext.yaml.tmpl

      namespace: {{ .To.NamespaceName }}
    spec:
      mtls:
        mode: PERMISSIVE
    
    ---
    # This configures requests to any service in the namespace to use mTLS.
    
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: default
      namespace: {{ .To.NamespaceName }}
    spec:
      host: "*.{{ .To.NamespaceName }}.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. releasenotes/notes/sidecar-api-connectionpool.yaml

    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 17:19:29 UTC 2023
    - 612 bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    	}
    }
    
    // DestinationRule returns a destinationrule for a svc.
    func (sc *SidecarScope) DestinationRule(direction TrafficDirection, proxy *Proxy, svc host.Name) *ConsolidatedDestRule {
    	destinationRules := sc.destinationRules[svc]
    	var catchAllDr *ConsolidatedDestRule
    	for _, destRule := range destinationRules {
    		destinationRule := destRule.rule.Spec.(*networking.DestinationRule)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top