Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ExternalDNS (0.28 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. 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)
  4. 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)
Back to top