Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,873 for egress (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// ServerList is the list of storage servers to connect with.
    	ServerList []string
    	// TLS credentials
    	KeyFile       string
    	CertFile      string
    	TrustedCAFile string
    	// function to determine the egress dialer. (i.e. konnectivity server dialer)
    	EgressLookup egressselector.Lookup
    	// The TracerProvider can add tracing the connection
    	TracerProvider oteltrace.TracerProvider
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. operator/pkg/name/name.go

    		PilotComponentName:              "Istiod",
    		CNIComponentName:                "CNI",
    		ZtunnelComponentName:            "Ztunnel",
    		IngressComponentName:            "Ingress gateways",
    		EgressComponentName:             "Egress gateways",
    		IstioOperatorComponentName:      "Istio operator",
    		IstioOperatorCustomResourceName: "Istio operator CRDs",
    		IstiodRemoteComponentName:       "Istiod remote",
    	}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. 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)
  6. prow/config/calico.yaml

                      or to egress, or to both.  When not explicitly specified (and so
                      the value on creation is empty or nil), Calico defaults Types according
                      to what Ingress and Egress rules are present in the policy.  The
                      default is: \n - [ PolicyTypeIngress ], if there are no Egress rules
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	// admission plugin initializers to Admission.ApplyTo.
    	ExtraAdmissionInitializers func(c *server.RecommendedConfig) ([]admission.PluginInitializer, error)
    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    	EgressSelector *EgressSelectorOptions
    	// Traces contains options to control distributed request tracing.
    	Traces *TracingOptions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. 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)
  9. tests/integration/security/util/framework.go

    		return vmCfg
    	}()
    
    	externalSvc := echo.Config{
    		Service: ExternalSvc,
    		// Namespace: appsNamespace,
    		Ports: []echo.Port{
    			{
    				// Plain HTTP port only used to route request to egress gateway
    				Name:         "http",
    				Protocol:     protocol.HTTP,
    				ServicePort:  80,
    				WorkloadPort: 8080,
    			},
    			{
    				// HTTPS port
    				Name:         "https",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/options/options.go

    	s.Authentication.AddFlags(fss.FlagSet("authentication"))
    	s.Authorization.AddFlags(fss.FlagSet("authorization"))
    	s.APIEnablement.AddFlags(fss.FlagSet("API enablement"))
    	s.EgressSelector.AddFlags(fss.FlagSet("egress selector"))
    	s.Admission.AddFlags(fss.FlagSet("admission"))
    	s.Metrics.AddFlags(fss.FlagSet("metrics"))
    	logsapi.AddFlags(s.Logs, fss.FlagSet("logs"))
    	s.Traces.AddFlags(fss.FlagSet("traces"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top