Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ExternalDNS (1.02 sec)

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

            - /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:
              httpGet:
    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. pkg/kubelet/nodestatus/setters_test.go

    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    		},
    		{
    			name:   "An Internal/ExternalIP, an Internal/ExternalDNS",
    			nodeIP: netutils.ParseIPSloppy("10.1.1.1"),
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. 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.
      ([#34259](https://github.com/kubernetes/kubernetes/pull/34259), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    	// be a listed NodeExternalIP address.
    	NodeExternalDNS NodeAddressType = "ExternalDNS"
    )
    
    // NodeAddress represents node's address
    type NodeAddress struct {
    	Type    NodeAddressType
    	Address string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// the characteristics of a NodeExternalIP. The IP it resolves to may or may not
    	// be a listed NodeExternalIP address.
    	NodeExternalDNS NodeAddressType = "ExternalDNS"
    )
    
    // NodeAddress contains information for the node's address.
    type NodeAddress struct {
    	// Node address type, one of Hostname, ExternalIP or InternalIP.
    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. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "type": "string"
            },
            "type": {
    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