Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for PORT (0.05 sec)

  1. cluster/gce/gci/configure-helper.sh

      else
        echo "KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE must be set to either grpc or http-connect"
        exit 1
      fi
    
      params+=("--agent-port=$1")
      params+=("--health-port=$2")
      params+=("--admin-port=$3")
      params+=("--kubeconfig-qps=75")
      params+=("--kubeconfig-burst=150")
      params+=("--keepalive-time=60s")
      params+=("--frontend-keepalive-time=60s")
      konnectivity_args=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      run-gcloud-command "${EXISTING_MASTER_NAME}" "${EXISTING_MASTER_ZONE}" "curl -s ${TLSARG} ${PROTO}127.0.0.1:${port}/v2/members/\$(curl -s ${TLSARG} ${PROTO}127.0.0.1:${port}/v2/members -XGET | sed 's/{\\\"id/\n/g' | grep ${REPLICA_NAME}\\\" | cut -f 3 -d \\\") -XDELETE -L 2>/dev/null"
      local -r res=$?
      echo "Removing etcd replica, name: ${REPLICA_NAME}, port: ${port}, result: ${res}"
      return "${res}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "port": {
                "description": "port represents the port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.",
                "format": "int32",
                "type": "integer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    // Test that if the node is already scheduled with a pod using a host port
    // but belonging to the same daemonset, we don't delete that pod
    //
    // Issue: https://github.com/kubernetes/kubernetes/issues/22309
    func TestPortConflictWithSameDaemonPodDoesNotDeletePod(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		podSpec := v1.PodSpec{
    			NodeName: "port-conflict",
    			Containers: []v1.Container{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    			if wireType != 0 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Port", wireType)
    			}
    			m.Port = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.Port |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    		newHostPort := newHost
    		if len(endpoint.Port()) > 0 {
    			// Host + port
    			newHostPort = newHost + ":" + endpoint.Port()
    			mapIfNotPresent(hostAnonymizer, endpoint.Host, newHostPort)
    			mapIfNotPresent(hostAnonymizer, schemePfx+endpoint.Host, newHostPort)
    		}
    
    		newHostPortPath := newHostPort
    		if len(endpoint.Path) > 0 {
    			// Host + port + path
    			currentHostPortPath := endpoint.Host + endpoint.Path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.pb.go

    }
    
    func (m *ServiceReference) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.Port != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.Port))
    		i--
    		dAtA[i] = 0x20
    	}
    	if m.Path != nil {
    		i -= len(*m.Path)
    		copy(dAtA[i:], *m.Path)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Path)))
    		i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 187.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		MaxPerPodContainer: int(maxPerPodContainerCount),
    		MaxContainers:      int(maxContainerCount),
    	}
    
    	daemonEndpoints := &v1.NodeDaemonEndpoints{
    		KubeletEndpoint: v1.DaemonEndpoint{Port: kubeCfg.Port},
    	}
    
    	imageGCPolicy := images.ImageGCPolicy{
    		MinAge:               kubeCfg.ImageMinimumGCAge.Duration,
    		HighThresholdPercent: int(kubeCfg.ImageGCHighThresholdPercent),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    			np = p
    		} else {
    			np += "/"
    		}
    	}
    	return np
    }
    
    // stripHostPort returns h without any trailing ":<port>".
    func stripHostPort(h string) string {
    	// If no port on host, return unchanged
    	if !strings.Contains(h, ":") {
    		return h
    	}
    	host, _, err := net.SplitHostPort(h)
    	if err != nil {
    		return h // on error, return unchanged
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "description": "Namespace is the namespace of the service",
                "type": "string"
              },
              "port": {
                "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
                "format": "int32",
                "type": "integer"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
Back to top