Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. hack/local-up-cluster.sh

      local nodes_stats="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' get nodes"
      local node_name=$HOSTNAME_OVERRIDE
      local system_node_wait_time=60
      local interval_time=2
      kube::util::wait_for_success "$system_node_wait_time" "$interval_time" "$nodes_stats | grep $node_name"
      if [ $? == "1" ]; then
        echo "time out on waiting $node_name exist"
        exit 1
      fi
    
      local system_node_ready_time=300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      # try creating again just in case.
      New-Item $fluentd_config_dir -ItemType 'directory' -Force | Out-Null
    
      $config = $FLUENTD_CONFIG.replace('NODE_NAME', (hostname))
      $config | Out-File -FilePath $fluentd_config_file -Encoding ASCII
      Log-Output "Wrote fluentd logging config to $fluentd_config_file"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top