Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MASTER_IP (0.19 sec)

  1. cluster/kubemark/pre-existing/config-default.sh

    # cluster.
    
    # Pre-existing provider expects a MASTER_IP.
    # If you need to specify a port that's not the default (443), add it to MASTER_IP.
    #
    # Example: Connect to the Master on the secure port 6443
    #          MASTER_IP=192.168.122.5:6443
    #
    MASTER_IP="${MASTER_IP:-}"
    
    # The container registry and project given to the kubemark container:
    #   $CONTAINER_REGISTRY/$PROJECT/kubemark
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 09 19:04:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. cluster/pre-existing/util.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    
    source "${KUBE_ROOT}/cluster/common.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    function detect-project() {
      if [[ -z "${MASTER_IP:-}" ]]; then
        echo "Set 'MASTER_IP' to the instance assigned to be the Kubernetes master" 1>&2
        exit 1
      fi
    
      if [[ -z "${PROJECT:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 25 21:33:22 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top