Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for kenv (0.07 sec)

  1. cluster/gce/util.sh

    }
    
    # Load the master env by calling get-master-env, and extract important values
    function parse-master-env() {
      # Get required master env vars
      local master_env
      master_env=$(get-master-env)
      KUBE_PROXY_TOKEN=$(get-env-val "${master_env}" "KUBE_PROXY_TOKEN")
      NODE_PROBLEM_DETECTOR_TOKEN=$(get-env-val "${master_env}" "NODE_PROBLEM_DETECTOR_TOKEN")
      CA_CERT_BASE64=$(get-env-val "${master_env}" "CA_CERT")
    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. pkg/api/pod/util_test.go

    		"Spec.Containers[*].EnvFrom[*].SecretRef",
    		"Spec.Containers[*].Env[*].ValueFrom.SecretKeyRef",
    		"Spec.EphemeralContainers[*].EphemeralContainerCommon.EnvFrom[*].SecretRef",
    		"Spec.EphemeralContainers[*].EphemeralContainerCommon.Env[*].ValueFrom.SecretKeyRef",
    		"Spec.ImagePullSecrets",
    		"Spec.InitContainers[*].EnvFrom[*].SecretRef",
    		"Spec.InitContainers[*].Env[*].ValueFrom.SecretKeyRef",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    				},
    				{
    					Name:  "KUBERNETES_PORT_8081_TCP_ADDR",
    					Value: "1.2.3.1",
    				},
    			},
    		},
    		{
    			name:               "env expansion, service env vars",
    			ns:                 "test1",
    			enableServiceLinks: &trueValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{
    						Name:  "TEST_LITERAL",
    						Value: "test-test-test",
    					},
    					{
    						Name: "POD_NAME",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    			}
    		}
    
    		tmpEnv[envVar.Name] = runtimeVal
    	}
    
    	// Append the env vars
    	for k, v := range tmpEnv {
    		result = append(result, kubecontainer.EnvVar{Name: k, Value: v})
    	}
    
    	// Append remaining service env vars.
    	for k, v := range serviceEnv {
    		// Accesses apiserver+Pods.
    		// So, the master may set service env vars, or kubelet may.  In case both are doing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // # Print Go environment information
    //
    // Usage:
    //
    //	go env [-json] [-changed] [-u] [-w] [var ...]
    //
    // Env prints Go environment information.
    //
    // By default env prints information as a shell script
    // (on Windows, a batch file). If one or more variable
    // names is given as arguments, env prints the value of
    // each named variable on its own line.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    var proxyFromEnvTests = []proxyFromEnvTest{
    	{env: "127.0.0.1:8080", want: "http://127.0.0.1:8080"},
    	{env: "cache.corp.example.com:1234", want: "http://cache.corp.example.com:1234"},
    	{env: "cache.corp.example.com", want: "http://cache.corp.example.com"},
    	{env: "https://cache.corp.example.com", want: "https://cache.corp.example.com"},
    	{env: "http://127.0.0.1:8080", want: "http://127.0.0.1:8080"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      log-start 'SourceKubeEnv'
      if [[ ! -e "${KUBE_HOME}/kube-env" ]]; then
        echo "The ${KUBE_HOME}/kube-env file does not exist!! Terminate cluster initialization."
        exit 1
      fi
      source "${KUBE_HOME}/kube-env"
      log-end 'SourceKubeEnv'
    
      if [[ -f "${KUBE_HOME}/kubelet-config.yaml" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	if vm == nil || len(vm.Env) == 0 {
    		return nil
    	}
    
    	keys := sets.New[string]()
    	for _, env := range vm.Env {
    		if env == nil {
    			continue
    		}
    
    		if env.Name == "" {
    			return fmt.Errorf("spec.vmConfig.env invalid")
    		}
    
    		if keys.InsertContains(env.Name) {
    			return fmt.Errorf("duplicate env")
    		}
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    								},
    							},
    						},
    					},
    				},
    				Sni: "foo.default.svc.cluster.local",
    			},
    		},
    		{
    			name:        "With tls mode simple, InsecureSkipVerify is set true and env VERIFY_CERTIFICATE_AT_CLIENT is true",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS}},
    			clusterMode: DefaultClusterMode,
    			service:     service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    			"GOSSAFUNC",
    			"GOSSADIR",
    			"GOCOMPILEDEBUG",
    		}
    		for _, env := range magic {
    			if x := os.Getenv(env); x != "" {
    				fmt.Fprintf(h, "magic %s=%s\n", env, x)
    			}
    		}
    
    	case "gccgo":
    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