Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RELATIVE_PATH (0.7 sec)

  1. cluster/gce/gci/configure-helper.sh

    function find-master-pd {
      MASTER_PD_DEVICE=""
      if [[ ! -e /dev/disk/by-id/google-master-pd ]]; then
        return
      fi
      device_info=$(ls -l /dev/disk/by-id/google-master-pd)
      relative_path=${device_info##* }
      MASTER_PD_DEVICE="/dev/disk/by-id/${relative_path}"
    }
    
    # Mounts a persistent disk (formatting if needed) to store the persistent data
    # on the master -- etcd's data, a few settings, and security certs/keys/tokens.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top