Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for win1909 (0.12 sec)

  1. cluster/gce/windows/README-GCE-Windows-kube-up.md

    gcloud auth login
    ```
    
    Invoke kube-up.sh with these environment variables:
    
    ```bash
    # WINDOWS_NODE_OS_DISTRIBUTION: the Windows version you want your nodes to
    #   run, e.g. win2019 or win1909.
    # KUBE_UP_AUTOMATIC_CLEANUP (optional): cleans up existing cluster without
    #   prompting.
    WINDOWS_NODE_OS_DISTRIBUTION=win2019 KUBE_UP_AUTOMATIC_CLEANUP=true ./cluster/kube-up.sh
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      WINDOWS_NODE_IMAGE_PROJECT="windows-cloud"
      if [[ "${WINDOWS_NODE_OS_DISTRIBUTION}" == "win2019" ]]; then
        WINDOWS_NODE_IMAGE="windows-server-2019-dc-core-v20210914"
      elif [[ "${WINDOWS_NODE_OS_DISTRIBUTION}" == "win1909" ]]; then
        WINDOWS_NODE_IMAGE="windows-server-1909-dc-core-v20210413"
      elif [[ "${WINDOWS_NODE_OS_DISTRIBUTION}" == "win2004" ]]; then
        WINDOWS_NODE_IMAGE="windows-server-2004-dc-core-v20210914"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

                    // provided pid is not attached to a console
                    // when pid is not attached to console, GetLastError(pid) returns:
                    // ERROR_GEN_FAILURE on Win7
                    // ERROR_INVALID_HANDLE on Win10
                    if (!AttachConsole(pid)) {
                        if (GetLastError() == ERROR_GEN_FAILURE || GetLastError() == ERROR_INVALID_HANDLE) {
                            printf("none\\n");
                            exit(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. cluster/gce/config-default.sh

    export SERVICEACCOUNT_ISSUER="https://kubernetes.io/${CLUSTER_NAME}"
    
    # Taint Windows nodes by default to prevent Linux workloads from being
    # scheduled onto them.
    WINDOWS_NODE_TAINTS="${WINDOWS_NODE_TAINTS:-node.kubernetes.io/os=win1809:NoSchedule}"
    
    # Whether to set up a private GCE cluster, i.e. a cluster where nodes have only private IPs.
    export GCE_PRIVATE_CLUSTER="${KUBE_GCE_PRIVATE_CLUSTER:-false}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. cluster/gce/config-test.sh

    # Taint Windows nodes by default to prevent Linux workloads from being
    # scheduled onto them.
    WINDOWS_NODE_TAINTS=${WINDOWS_NODE_TAINTS:-node.kubernetes.io/os=win1809:NoSchedule}
    
    # Whether to set up a private GCE cluster, i.e. a cluster where nodes have only private IPs.
    export GCE_PRIVATE_CLUSTER=${KUBE_GCE_PRIVATE_CLUSTER:-false}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top