Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for connect0 (0.17 sec)

  1. prow/config/calico.yaml

                      whether Felix installs the connect-time load balancer. The connect-time
                      load balancer is required for the host to be able to reach Kubernetes
                      services and it improves the performance of pod-to-service connections.When
                      set to TCP, connect time load balancing is available only for services
                      with TCP ports. [Default: TCP]'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	URISchemeHTTPS URIScheme = "HTTPS"
    )
    
    // TCPSocketAction describes an action based on opening a socket
    type TCPSocketAction struct {
    	// Required: Port to connect to.
    	// +optional
    	Port intstr.IntOrString
    	// Optional: Host name to connect to, defaults to the pod IP.
    	// +optional
    	Host string
    }
    
    // ExecAction describes a "run in container" action.
    type ExecAction struct {
    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. src/net/http/h2_bundle.go

    		method:    f.PseudoValue("method"),
    		scheme:    f.PseudoValue("scheme"),
    		authority: f.PseudoValue("authority"),
    		path:      f.PseudoValue("path"),
    	}
    
    	isConnect := rp.method == "CONNECT"
    	if isConnect {
    		if rp.path != "" || rp.scheme != "" || rp.authority == "" {
    			return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"secretRef": "secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack.",
    }
    
    func (CinderPersistentVolumeSource) SwaggerDoc() map[string]string {
    	return map_CinderPersistentVolumeSource
    }
    
    var map_CinderVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://examples.k8s.io/mysql-cinder-pd/README.md
      // +optional
      optional bool readOnly = 3;
    
      // secretRef is Optional: points to a secret object containing parameters used to connect
      // to OpenStack.
      // +optional
      optional SecretReference secretRef = 4;
    }
    
    // Represents a cinder volume resource in Openstack.
    // A Cinder volume must exist before mounting to a container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
    	// secretRef is optional: points to a secret object containing parameters used to connect
    	// to OpenStack.
    	// +optional
    	SecretRef *LocalObjectReference `json:"secretRef,omitempty" protobuf:"bytes,4,opt,name=secretRef"`
    }
    
    // Represents a cinder volume resource in Openstack.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    			sourceIP: testNodeIP,
    			destIP:   svcLBIP2,
    			destPort: svcPort,
    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    
    		// The LB rules assume that when you connect from a node to a LB IP, that
    		// something external to kube-proxy will cause the connection to be
    		// SNATted to the LB IP, so if the LoadBalancerSourceRanges include the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: used `ttlSecondsAfterFinished` to automatically clean up the `upgrade-health-check`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
                  }
                ],
                "description": "secretRef is optional: points to a secret object containing parameters used to connect to OpenStack."
              },
              "volumeID": {
                "default": "",
                "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - Fixed a bug where `kubectl port-forward`, when used with a Deployment, could connect to a terminating pod even when a running pod is also available. ([#119256](https://github.com/kubernetes/kubernetes/pull/119256), [@brianpursley](https://github.com/brianpursley)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top