Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for InternalDNS (0.3 sec)

  1. cluster/addons/metrics-server/metrics-server-deployment.yaml

            command:
            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
            - --kubelet-preferred-address-types=InternalIP,Hostname,InternalDNS,ExternalDNS,ExternalIP
            - --cert-dir=/tmp
            - --secure-port=10250
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
            readinessProbe:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.6.md

      ([#38258](https://github.com/kubernetes/kubernetes/pull/38258),
      [@derekwaynecarr](https://github.com/derekwaynecarr))
    * Nodes can now report two additional address types in their status: InternalDNS
      and ExternalDNS. The apiserver can use --kubelet-preferred-address-types to
      give priority to the type of address it uses to reach nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// the characteristics of a NodeInternalIP. The IP it resolves to may or may not
    	// be a listed NodeInternalIP address.
    	NodeInternalDNS NodeAddressType = "InternalDNS"
    
    	// NodeExternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    	// be a listed NodeExternalIP address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.11.md

    * You can now receive node DNS info with the `--node-ip` flag, which adds `ExternalDNS`, `InternalDNS`, and `ExternalIP` to kubelet's output. ([#63170](https://github.com/kubernetes/kubernetes/pull/63170), [@micahhausler](https://github.com/micahhausler))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// the characteristics of a NodeInternalIP. The IP it resolves to may or may not
    	// be a listed NodeInternalIP address.
    	NodeInternalDNS NodeAddressType = "InternalDNS"
    
    	// NodeExternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    	// be a listed NodeExternalIP address.
    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/cli-runtime/artifacts/openapi/swagger.json

    NodeInternalIP).\n - `\"Hostname\"` identifies a name of the node. Although every node can be assumed to have a NodeAddress of this type, its exact syntax and semantics are not defined, and are not consistent between different clusters.\n - `\"InternalDNS\"` identifies a DNS name which resolves to an IP address which has the characteristics of a NodeInternalIP. The IP it resolves to may or may not be a listed NodeInternalIP address.\n - `\"InternalIP\"` identifies an IP address which is assigned...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top