Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 178 for destinationFile (0.18 sec)

  1. pilot/pkg/model/push_context_test.go

    		},
    	})
    	_, _ = configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "rule1",
    			Namespace:        "test1",
    			GroupVersionKind: gvk.DestinationRule,
    		},
    		Spec: &networking.DestinationRule{
    			ExportTo: []string{".", "ns1"},
    		},
    	})
    	_, _ = configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "default",
    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/networking/core/tls.go

    				alt := GenerateAltVirtualHosts(a.Hostname.String(), 0, node.DNSDomain)
    				sniHosts = append(sniHosts, a.Hostname.String())
    				sniHosts = append(sniHosts, alt...)
    			}
    		}
    		destinationRule := CastDestinationRule(node.SidecarScope.DestinationRule(
    			model.TrafficDirectionOutbound, node, service.Hostname).GetRule())
    		var destinationCIDRs []string
    		if destinationCIDR != "" {
    			destinationCIDRs = []string{destinationCIDR}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-mutual.yaml

            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
            host: "multiversion"
            subset: "vlegacy"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "multiversion"
      annotations:
        test-suite: "automtls-partial-dr-mutual"
    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/a.yaml

        route:
        - destination:
            host: a
      # Fallthrough
      - route:
        - destination:
            host: a
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: a
    spec:
      host: a
      subsets:
      - name: v1
        labels:
          version: v1
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: integ-test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 942 bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	if push == nil {
    		return nil, nil
    	}
    	mergedDR := node.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, node, svc.Hostname)
    	destinationRule := mergedDR.GetRule()
    	if destinationRule == nil {
    		return nil, nil
    	}
    	rule := destinationRule.Spec.(*networking.DestinationRule)
    	consistentHash := rule.GetTrafficPolicy().GetLoadBalancer().GetConsistentHash()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. tests/integration/security/egress_gateway_origination_test.go

    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    // TestSimpleTlsOrigination test SIMPLE TLS mode with TLS origination happening at Gateway proxy
    // It uses CredentialName set in DestinationRule API to fetch secrets from k8s API server
    func TestSimpleTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleNetwork(). // https://github.com/istio/istio/issues/37134
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    						internalClient[0].CallOrFail(t, opts)
    					})
    			}
    		})
    }
    
    const (
    	// Destination Rule configs
    	DestinationRuleConfigSimple = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-server-filebased-simple
    spec:
      host: "external-service.{{.AppNamespace}}.svc.cluster.local"
      trafficPolicy:
        portLevelSettings:
          - port:
    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. pkg/config/analysis/analyzers/util/find_errorline_utils.go

    	// Path for Port in ServiceEntry.
    	// Required parameters: port index.
    	ServiceEntryPort = "{.spec.ports[%d].name}"
    
    	// Path for DestinationRule tls certificate.
    	// Required parameters: none.
    	DestinationRuleTLSCert = "{.spec.trafficPolicy.tls.caCertificates}"
    
    	// Path for DestinationRule port-level tls certificate.
    	// Required parameters: portLevelSettings index.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/conversion_test.go

    				}
    				assert.Equal(t, &got, c.want)
    			}
    		})
    	}
    }
    
    func TestProtoSchemaConversions(t *testing.T) {
    	destinationRuleSchema := collections.DestinationRule
    
    	msg := &networking.DestinationRule{
    		Host: "something.svc.local",
    		TrafficPolicy: &networking.TrafficPolicy{
    			LoadBalancer: &networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_Simple{},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    	env.SetPushContext(pushContext)
    	pushContext.SetDestinationRulesForTesting([]config.Config{
    		{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: &networking.DestinationRule{
    				Host: "test.example.org",
    				TrafficPolicy: &networking.TrafficPolicy{
    					OutlierDetection: &networking.OutlierDetection{},
    				},
    			},
    		},
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top