Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for networkingv1 (0.17 sec)

  1. tests/integration/pilot/ingress_test.go

    			ingressClassConfig := `
    apiVersion: networking.k8s.io/v1
    kind: IngressClass
    metadata:
      name: istio-test
    spec:
      controller: istio.io/ingress-controller`
    
    			ingressConfigTemplate := `
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: %s
    spec:
      ingressClassName: %s
      tls:
      - hosts: ["foo.example.com"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			[]*networking.EnvoyFilter{{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{{
    					ApplyTo: networking.EnvoyFilter_CLUSTER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_ADD,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    			proxyView:   model.ProxyViewAll,
    			destRule: &networking.DestinationRule{
    				Host: "foo.default.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{
    					PortLevelSettings: []*networking.TrafficPolicy_PortTrafficPolicy{
    						{
    							Port: &networking.PortSelector{Number: uint32(servicePort[0].Port)},
    							Tls:  &networking.ClientTLSSettings{Mode: networking.ClientTLSSettings_SIMPLE},
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway_test.go

    				},
    				{
    					Hosts: []string{"a.apps.svc.cluster.local", "b.apps.svc.cluster.local"},
    					Port:  &networking.Port{Name: "tls", Number: 15443, Protocol: "TLS"},
    					Tls:   &networking.ServerTLSSettings{Mode: networking.ServerTLSSettings_AUTO_PASSTHROUGH},
    				},
    			},
    		},
    	}
    	svc := &Service{
    		Attributes: ServiceAttributes{
    			Labels: map[string]string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_INBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-inbound-listener"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/envoyfilter.go

    		}
    		if cpw.Operation == networking.EnvoyFilter_Patch_INSERT_AFTER ||
    			cpw.Operation == networking.EnvoyFilter_Patch_INSERT_BEFORE ||
    			cpw.Operation == networking.EnvoyFilter_Patch_INSERT_FIRST {
    			// insert_before, after or first is applicable for listener filter, network filter,
    			// http filter and http route, convert the rest to add
    			if cpw.ApplyTo != networking.EnvoyFilter_HTTP_FILTER &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    package ambient
    
    import (
    	"net/netip"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	networking "istio.io/api/networking/v1alpha3"
    	networkingclient "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/kube/krt/krttest"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_test.go

    		cfgs             []config.Config
    		proxy            *Proxy
    		class            networking.ListenerClass
    		protocol         networking.ListenerProtocol
    		defaultProviders *meshconfig.MeshConfig_DefaultProviders
    		want             map[string]string
    	}{
    		{
    			"empty",
    			nil,
    			sidecar,
    			networking.ListenerClassSidecarOutbound,
    			networking.ListenerProtocolHTTP,
    			nil,
    			map[string]string{},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - outbound",
    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - inbound",
    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassSidecarInbound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_test.go

        name: default
        port: 80
      selector:
        gateway.networking.k8s.io/gateway-name: managed-owner
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: managed-owner-istio
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: managed-owner
      replicas: 1
      template:
        metadata:
          labels:
            gateway.networking.k8s.io/gateway-name: managed-owner
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top