Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 350 for egress (0.13 sec)

  1. pilot/pkg/model/sidecar_test.go

    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress",
    			configs1,
    			nil,
    			nil,
    			nil,
    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress-with-service",
    			configs1,
    			services1,
    			nil,
    
    			[]*Service{
    				{
    					Hostname: "bar",
    				},
    			},
    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress-with-service-on-same-port",
    			configs1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute_test.go

    				},
    				{
    					// Wildcard egress importing from all namespaces
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	sidecarConfigWithWildcard := &config.Config{
    		Meta: config.Meta{
    			Name:             "foo",
    			Namespace:        "not-default",
    			GroupVersionKind: gvk.Sidecar,
    		},
    		Spec: &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation_test.go

    			tweakIngress: func(ingress *networking.Ingress) {
    				ingress.Spec.IngressClassName = utilpointer.String("foo")
    				ingress.Annotations = map[string]string{annotationIngressClass: "foo"}
    			},
    			expectedErrs: field.ErrorList{},
    		},
    		"class field and annotation set with different value": {
    			tweakIngress: func(ingress *networking.Ingress) {
    				ingress.Spec.IngressClassName = utilpointer.String("bar")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	// +listType=atomic
    	Egress []NetworkPolicyEgressRule `json:"egress,omitempty" protobuf:"bytes,3,rep,name=egress"`
    
    	// List of rule types that the NetworkPolicy relates to.
    	// Valid options are ["Ingress"], ["Egress"], or ["Ingress", "Egress"].
    	// If this field is not specified, it will default based on the existence of Ingress or Egress rules;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    				// for user defined Egress listeners with ports. And these should occur in the API before
    				// the wildcard egress listener. the check for the "locked" bit will eliminate the collision.
    				// User is also not allowed to add duplicate ports in the egress listener
    				var newHostname host.Name
    				if opts.service != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    	// Verify that an implicit catch all egress listener will not bind to privileged ports
    	// if proxy is not using Iptables and cannot bind to privileged ports (1-1023).
    	//
    	// It is very common for the catch all egress listener to match services on ports 80 and 443.
    	// Therefore, the default behavior should not force users to start from looking for a workaround.
    	t.Run("implicit catch all egress listener", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    }
    
    type scArgs struct {
    	Namespace string
    	Egress    []string
    }
    
    func (args scArgs) Config(t *testing.T, variant string) string {
    	return tmpl.MustEvaluate(`apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: "{{.Namespace}}"
      namespace: "{{.Namespace}}"
    spec:
      egress:
      - hosts:
    {{- range $val := .Egress }}
        - "{{$val}}"
    {{- end }}
    `, args)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string ingressClass = 3;
    }
    
    // Mode for the ingress controller.
    enum ingressControllerMode {
      // Unspecified Istio ingress controller.
      UNSPECIFIED = 0;
      // Selects all Ingress resources, with or without Istio annotation.
      DEFAULT = 1;
      // Selects only resources with istio annotation.
      STRICT = 2;
      // No ingress or sync.
      OFF = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.Ingress)(nil), (*networking.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_Ingress_To_networking_Ingress(a.(*v1beta1.Ingress), b.(*networking.Ingress), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.Ingress)(nil), (*v1beta1.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  10. pkg/apis/networking/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Ingress)(nil), (*networking.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Ingress_To_networking_Ingress(a.(*v1.Ingress), b.(*networking.Ingress), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.Ingress)(nil), (*v1.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top