Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for kenv (1.32 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/controller/job/job_controller_test.go

    				},
    			},
    		},
    	}
    	for _, c := range spec.InitContainers {
    		if diff := cmp.Diff(want, c.Env); diff != "" {
    			t.Errorf("Unexpected Env in container %s (-want,+got):\n%s", c.Name, diff)
    		}
    	}
    	for _, c := range spec.Containers {
    		if diff := cmp.Diff(want, c.Env); diff != "" {
    			t.Errorf("Unexpected Env in container %s (-want,+got):\n%s", c.Name, diff)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               " the end of the block where they are defined.",
               "llvm::cl::values(clEnumValN(MoveTransposeDirection::kBegin, \"begin\", \"beginning of the block\"),"
               "clEnumValN(MoveTransposeDirection::kEnd, \"end\", \"end of the block\"))">
      ];
    }
    
    def BroadcastFoldPass : Pass<"tf-broadcast-fold", "mlir::func::FuncOp"> {
      let summary = "Fold explicit broadcasts into the following operations if they "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. samples/addons/grafana.yaml

                - name: gossip-tcp
                  containerPort: 9094
                  protocol: TCP
                - name: gossip-udp
                  containerPort: 9094
                  protocol: UDP
              env:
                - name: POD_IP
                  valueFrom:
                    fieldRef:
                      fieldPath: status.podIP
                - name: GF_PATHS_DATA
                  value: /var/lib/grafana/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top