Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for connectat (0.15 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

    		}
    		if err != nil {
    			t.vlogf("RoundTrip failure: %v", err)
    			return nil, err
    		}
    		return res, nil
    	}
    }
    
    // CloseIdleConnections closes any connections which were previously
    // connected from previous requests but are now sitting idle.
    // It does not interrupt any connections currently in use.
    func (t *http2Transport) CloseIdleConnections() {
    	if cp, ok := t.connPool().(http2clientConnPoolIdleCloser); ok {
    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. common-protos/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: 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_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)
  6. CHANGELOG/CHANGELOG-1.8.md

    * Fix kubelet to correctly umounts mount points for glusterfs when transport endpoint is not connected and nfs when there is a stale file handle ([#58660](https://github.com/kubernetes/kubernetes/pull/58660), [@humblec](https://github.com/humblec))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Ginkgo: when e2e tests are invoked through ginkgo-e2e.sh, the default now is to use color escape sequences only when connected to a terminal. `GINKGO_NO_COLOR=y/n` can be used to override that default. ([#111633](https://github.com/kubernetes/kubernetes/pull/111633), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top