Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for alternate (0.15 sec)

  1. cluster/gce/util.sh

        fi
      done
      sans="${sans}IP:${service_ip},DNS:kubernetes,DNS:kubernetes.default,DNS:kubernetes.default.svc,DNS:kubernetes.default.svc.${DNS_DOMAIN},DNS:${MASTER_NAME}"
    
      echo "Generating certs for alternate-names: ${sans}"
    
      setup-easyrsa
      PRIMARY_CN="${primary_cn}" SANS="${sans}" generate-certs
      AGGREGATOR_PRIMARY_CN="${primary_cn}" AGGREGATOR_SANS="${sans}" generate-aggregator-certs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		instead of making them read-only.
    //	-modfile file
    //		in module aware mode, read (and possibly write) an alternate go.mod
    //		file instead of the one in the module root directory. A file named
    //		"go.mod" must still be present in order to determine the module root
    //		directory, but it is not accessed. When -modfile is specified, an
    //		alternate go.sum file is also used: its path is derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		runtimeVal := envVar.Value
    		if runtimeVal != "" {
    			// Step 1a: expand variable references
    			runtimeVal = expansion.Expand(runtimeVal, mappingFunc)
    		} else if envVar.ValueFrom != nil {
    			// Step 1b: resolve alternate env var sources
    			switch {
    			case envVar.ValueFrom.FieldRef != nil:
    				runtimeVal, err = kl.podFieldSelectorRuntimeValue(envVar.ValueFrom.FieldRef, pod, podIP, podIPs)
    				if err != nil {
    					return result, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        args:
        - -c
        - test -e /scrub && find /scrub -mindepth 1 -delete && test -z $(ls -A /scrub) || exit 1
        volumeMounts:
        - name: vol
          mountPath: /scrub
    EOF
    
    # fixup the alternate registry if specified
    if [[ -n "${KUBE_ADDON_REGISTRY:-}" ]]; then
      sed -i -e "******@****.***@${KUBE_ADDON_REGISTRY}@g" "${PV_RECYCLER_OVERRIDE_TEMPLATE}"
    fi
    }
    
    function wait-till-apiserver-ready() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		}
    		if a1.built != "" {
    			vcfg.PackageFile[p1.ImportPath] = a1.built
    		}
    		if p1.Standard {
    			vcfg.Standard[p1.ImportPath] = true
    		}
    	}
    }
    
    // VetTool is the path to an alternate vet tool binary.
    // The caller is expected to set it (if needed) before executing any vet actions.
    var VetTool string
    
    // VetFlags are the default flags to pass to vet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top