Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,171 for egress (0.24 sec)

  1. pkg/apis/networking/validation/validation.go

    		}
    	}
    	// Validate egress rules
    	for i, egress := range spec.Egress {
    		egressPath := fldPath.Child("egress").Index(i)
    		for i, port := range egress.Ports {
    			portPath := egressPath.Child("ports").Index(i)
    			allErrs = append(allErrs, ValidateNetworkPolicyPort(&port, portPath)...)
    		}
    		for i, to := range egress.To {
    			toPath := egressPath.Child("to").Index(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/stats_test.go

    			// Following resources are being deployed to test sidecar->gateway communication. With following resources,
    			// routing is being setup from sidecar to external site, via egress gateway.
    			// clt(https:443) -> sidecar(tls:443) -> istio-mtls -> (TLS:443)egress-gateway-> vs(tcp:443) -> cnn.com
    			t.ConfigIstio().File(apps.Namespace.Name(), filepath.Join(base, "istio-mtls-dest-rule.yaml")).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/httproute.go

    	// Get the services from the egress listener.  When sniffing is enabled, we send
    	// route name as foo.bar.com:8080 which is going to match against the wildcard
    	// egress listener only. A route with sniffing would not have been generated if there
    	// was a sidecar with explicit port (and hence protocol declaration). A route with
    	// sniffing is generated only in the case of the catch all egress listener.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/xds_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: sidecar
      namespace:  app
    spec:
    {{- if .IngressListener }}
      ingress:
        - port:
            number: 9080
            protocol: HTTP
            name: custom-http
          defaultEndpoint: unix:///var/run/someuds.sock
    {{- end }}
      egress:
        - hosts:
    {{ range $i, $ns := .ImportedNamespaces }}
          - {{$ns}}
    {{ end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    kind: Sidecar
    metadata:
      labels:
        app: foo
      name: sidecar
    spec:
      ingress:
      - defaultEndpoint: 127.0.0.1:8080
        port:
          name: tls
          number: 8080
          protocol: TCP
      - defaultEndpoint: 127.0.0.1:9090
        port:
          name: plaintext
          number: 9090
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
      workloadSelector:
        labels:
          app: foo
    ---`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

          enableCoreDump: false
    
          # istio ingress capture allowlist
          # examples:
          #     Redirect only selected ports:            --includeInboundPorts="80,8080"
          excludeInboundPorts: ""
          includeInboundPorts: "*"
    
          # istio egress capture allowlist
          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

          enableCoreDump: false
          # istio ingress capture allowlist
          # examples:
          #     Redirect only selected ports:            --includeInboundPorts="80,8080"
          excludeInboundPorts: ""
          includeInboundPorts: "*"
          # istio egress capture allowlist
          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. pkg/apis/networking/zz_generated.deepcopy.go

    	*out = *in
    	in.PodSelector.DeepCopyInto(&out.PodSelector)
    	if in.Ingress != nil {
    		in, out := &in.Ingress, &out.Ingress
    		*out = make([]NetworkPolicyIngressRule, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Egress != nil {
    		in, out := &in.Egress, &out.Egress
    		*out = make([]NetworkPolicyEgressRule, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-kubeapiserver.sh

      local default_konnectivity_socket_vol=""
      local default_konnectivity_socket_mnt=""
      if [[ "${PREPARE_KONNECTIVITY_SERVICE:-false}" == "true" ]]; then
        # Create the EgressSelectorConfiguration yaml file to control the Egress Selector.
        csc_config_mount="{\"name\": \"cscconfigmount\",\"mountPath\": \"/etc/srv/kubernetes/egress_selector_configuration.yaml\", \"readOnly\": false},"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. pilot/pkg/security/model/authentication.go

    	}
    }
    
    // ApplyCustomSDSToClientCommonTLSContext applies the customized sds to CommonTlsContext
    // Used for building upstream TLS context for egress gateway's TLS/mTLS origination
    func ApplyCustomSDSToClientCommonTLSContext(tlsContext *tls.CommonTlsContext,
    	tlsOpts *networking.ClientTLSSettings, credentialSocketExist bool,
    ) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top