Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for InternalIP (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
      addresses:
      - address: 10.0.0.1
        type: InternalIP
      - address: 192.168.0.1
        type: ExternalIP
      - address: node-default-pool-something
        type: Hostname
      allocatable:
        cpu: 3920m
        ephemeral-storage: "104638878617"
        hugepages-2Mi: "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    				{Type: v1.NodeInternalIP, Address: "127.0.0.2"},
    				{Type: v1.NodeInternalIP, Address: "127.0.0.3"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    		},
    		{
    			Name: "1 InternalIP to 2 InternalIP",
    			Before: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "127.0.0.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			After: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/controlplane/manifests.go

    		{Name: "secure-port", Value: fmt.Sprintf("%d", localAPIEndpoint.BindPort)},
    		{Name: "allow-privileged", Value: "true"},
    		{Name: "kubelet-preferred-address-types", Value: "InternalIP,ExternalIP,Hostname"},
    		// add options to configure the front proxy.  Without the generated client cert, this will never be useable
    		// so add it unconditionally with recommended values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

      fi
      if [[ -e "${KUBE_HOME}/bin/gke-internal-configure-helper.sh" ]]; then
        params+=" $(gke-kube-apiserver-internal-sni-param)"
      fi
      params+=" --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname"
      if [[ -s "${REQUESTHEADER_CA_CERT_PATH:-}" ]]; then
        params+=" --requestheader-client-ca-file=${REQUESTHEADER_CA_CERT_PATH}"
        params+=" --requestheader-allowed-names=aggregator"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. pkg/kubelet/nodestatus/setters_test.go

    		existingAnnotations            map[string]string
    		expectedAnnotations            map[string]string
    		shouldError                    bool
    		shouldSetNodeAddressBeforeTest bool
    	}{
    		{
    			name:   "A single InternalIP",
    			nodeIP: netutils.ParseIPSloppy("10.1.1.1"),
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	}
    	svcType := obj.Spec.Type
    	internalIP := "<none>"
    	if len(obj.Spec.ClusterIPs) > 0 {
    		internalIP = obj.Spec.ClusterIPs[0]
    	}
    
    	externalIP := getServiceExternalIP(obj, options.Wide)
    	svcPorts := makePortString(obj.Spec.Ports)
    	if len(svcPorts) == 0 {
    		svcPorts = "<none>"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    	obj config.Config,
    	classInfo classInfo,
    	gatewayServices []string,
    	servers []*istio.Server,
    	gatewayErr *ConfigError,
    ) {
    	// TODO: we lose address if servers is empty due to an error
    	internal, internalIP, external, pending, warnings, allUsable := r.Context.ResolveGatewayInstances(obj.Namespace, gatewayServices, servers)
    
    	// Setup initial conditions to the success state. If we encounter errors, we will update this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * The apiserver now uses addresses reported by the kubelet in the Node object's status for apiserver->kubelet communications, rather than the name of the Node object. The address type used defaults to `InternalIP`, `ExternalIP`, and `LegacyHostIP` address types, in that order. ([#33718](https://github.com/kubernetes/kubernetes/pull/33718), [@justinsb](https://github.com/justinsb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    			name: "Simple",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "InternalIP is preferred over ExternalIP",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "192.168.0.1"},
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.16.md

    - Fix in kube-proxy for SCTP nodeport service which only works for node's InternalIP, but doesn't work for other IPs present in the node when ipvs is enabled. ([#81477](https://github.com/kubernetes/kubernetes/pull/81477), [@paulsubrata55](https://github.com/paulsubrata55))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top