Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for host3 (0.27 sec)

  1. pkg/proxy/iptables/proxier_test.go

    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    		},
    		{
    			name:                  "internalTrafficPolicy is set and there are no local endpoints",
    			internalTrafficPolicy: ptr.To(v1.ServiceInternalTrafficPolicyLocal),
    			endpoints: []endpoint{
    				{"10.0.1.1", "host0"},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// HostPath represents file or directory on the host machine that is
    	// directly exposed to the container. This is generally used for system
    	// agents or other privileged things that are allowed to see the host
    	// machine. Most containers will NOT need this.
    	// ---
    	// TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not
    	// mount host directories as read/write.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"port":        "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.",
    	"host":        "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
    	"scheme":      "Scheme to use for connecting to the host. Defaults to HTTP.",
    	"httpHeaders": "Custom headers to set in the request. HTTP allows repeated headers.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // pod's hosts file.
    message HostAlias {
      // IP address of the host file entry.
      optional string ip = 1;
    
      // Hostnames for the above IP address.
      repeated string hostnames = 2;
    }
    
    // Represents a host path mapped into a pod.
    // Host path volumes do not support ownership management or SELinux relabeling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	Port intstr.IntOrString `json:"port" protobuf:"bytes,2,opt,name=port"`
    	// Host name to connect to, defaults to the pod IP. You probably want to set
    	// "Host" in httpHeaders instead.
    	// +optional
    	Host string `json:"host,omitempty" protobuf:"bytes,3,opt,name=host"`
    	// Scheme to use for connecting to the host.
    	// Defaults to HTTP.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // Name must be an IANA_SVC_NAME.
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString port = 2;
    
      // Host name to connect to, defaults to the pod IP. You probably want to set
      // "Host" in httpHeaders instead.
      // +optional
      optional string host = 3;
    
      // Scheme to use for connecting to the host.
      // Defaults to HTTP.
      // +optional
      optional string scheme = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                      traffic that goes from a workload endpoint to the host itself (after
                      the traffic hits the endpoint egress policy). By default Calico
                      blocks traffic from workload endpoints to the host itself with an
                      iptables "DROP" action. If you want to allow some or all traffic
                      from endpoint to host, set this parameter to RETURN or ACCEPT. Use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

          "io.k8s.api.core.v1.HTTPGetAction": {
            "description": "HTTPGetAction describes an action based on HTTP Get requests.",
            "properties": {
              "host": {
                "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
                "type": "string"
              },
              "httpHeaders": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	cc.hbuf.Reset()
    	if req.URL == nil {
    		return nil, http2errNilRequestURL
    	}
    
    	host := req.Host
    	if host == "" {
    		host = req.URL.Host
    	}
    	host, err := httpguts.PunycodeHostPort(host)
    	if err != nil {
    		return nil, err
    	}
    	if !httpguts.ValidHostHeader(host) {
    		return nil, errors.New("http2: invalid Host header")
    	}
    
    	var path string
    	if req.Method != "CONNECT" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
Back to top