Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KUBE_NODE_IP_ADDRESSES (2.2 sec)

  1. cluster/skeleton/util.sh

    }
    
    # Get node names if they are not static.
    function detect-node-names {
    	echo "NODE_NAMES: [${NODE_NAMES[*]}]" 1>&2
    }
    
    # Get node IP addresses and store in KUBE_NODE_IP_ADDRESSES[]
    function detect-nodes {
    	echo "KUBE_NODE_IP_ADDRESSES: [${KUBE_NODE_IP_ADDRESSES[*]}]" 1>&2
    }
    
    # Verify prereqs on host machine
    function verify-prereqs {
    	echo "Skeleton Provider: verify-prereqs not implemented" 1>&2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 13 00:54:20 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    }
    
    # Detect the information about the minions
    #
    # Assumed vars:
    #   ZONE
    # Vars set:
    #   NODE_NAMES
    #   KUBE_NODE_IP_ADDRESSES (array)
    function detect-nodes() {
      detect-project
      detect-node-names
      KUBE_NODE_IP_ADDRESSES=()
      for (( i=0; i<${#NODE_NAMES[@]}; i++)); do
        local node_ip
        node_ip=$(gcloud compute instances describe --project "${PROJECT}" --zone "${ZONE}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top