Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for envMap (0.12 sec)

  1. pkg/kubelet/kubelet_pods.go

    	)
    	for _, envVar := range container.Env {
    		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:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	}
    	if obj.Timeouts == nil {
    		obj.Timeouts = &Timeouts{}
    	}
    	SetDefaults_Timeouts(obj.Timeouts)
    }
    
    // SetDefaults_EnvVar assigns default values for EnvVar.
    // +k8s:defaulter-gen=covers
    func SetDefaults_EnvVar(obj *EnvVar) {
    	if obj.ValueFrom != nil {
    		if obj.ValueFrom.FieldRef != nil {
    			if obj.ValueFrom.FieldRef.APIVersion == "" {
    				obj.ValueFrom.FieldRef.APIVersion = "v1"
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    	for _, exp := range exps {
    		expTags = append(expTags, "goexperiment."+exp)
    	}
    	BuildContext.ToolTags = append(expTags, BuildContext.ToolTags...)
    }
    
    // An EnvVar is an environment variable Name=Value.
    type EnvVar struct {
    	Name    string
    	Value   string
    	Changed bool // effective Value differs from default
    }
    
    // OrigEnv is the original environment of the program at startup.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pkg/credentialprovider/plugin/plugin_test.go

    			testcase.execPlugin.environ = func() []string {
    				return testcase.systemEnvVars
    			}
    
    			var configVars []string
    			for _, envVar := range testcase.execPlugin.envVars {
    				configVars = append(configVars, fmt.Sprintf("%s=%s", envVar.Name, envVar.Value))
    			}
    			merged := mergeEnvVars(testcase.systemEnvVars, configVars)
    
    			err := validate(testcase.expectedEnvVars, merged)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/types.go

    }
    
    // DeviceRunContainerOptions contains the combined container runtime settings to consume its allocated devices.
    type DeviceRunContainerOptions struct {
    	// The environment variables list.
    	Envs []kubecontainer.EnvVar
    	// The mounts for the container.
    	Mounts []kubecontainer.Mount
    	// The host devices mapped into the container.
    	Devices []kubecontainer.DeviceInfo
    	// The Annotations for the container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook_test.go

    	cases := []struct {
    		name               string
    		perviouslyInjected bool
    		in                 []corev1.EnvVar
    		probers            string
    		want               []corev1.EnvVar
    	}{
    		{
    			name:               "Append Prober",
    			perviouslyInjected: false,
    			in:                 []corev1.EnvVar{},
    			probers: `{"/app-health/bar/livez":{"httpGet":{"path":"/","port":9000,"scheme":"HTTP"}},` +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    type ComponentConfigMap map[string]ComponentConfig
    
    // Arg represents an argument with a name and a value.
    type Arg struct {
    	Name  string
    	Value string
    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	v1.EnvVar
    }
    
    // EncryptionAlgorithmType can define an asymmetric encryption algorithm type.
    type EncryptionAlgorithmType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. plugin/pkg/admission/serviceaccount/admission.go

    		for _, env := range container.Env {
    			if env.ValueFrom != nil && env.ValueFrom.SecretKeyRef != nil {
    				if !mountableSecrets.Has(env.ValueFrom.SecretKeyRef.Name) {
    					return fmt.Errorf("init container %s with envVar %s referencing secret.secretName=\"%s\" is not allowed because service account %s does not reference that secret", container.Name, env.Name, env.ValueFrom.SecretKeyRef.Name, serviceAccount.Name)
    				}
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/runtime/rt0_android_386.s

    	CALL	_rt0_386_lib(SB)
    	POPL	AX
    	POPL	AX
    	RET
    
    DATA _rt0_386_android_argv+0x00(SB)/4,$_rt0_386_android_argv0(SB)
    DATA _rt0_386_android_argv+0x04(SB)/4,$0  // argv terminate
    DATA _rt0_386_android_argv+0x08(SB)/4,$0  // envp terminate
    DATA _rt0_386_android_argv+0x0c(SB)/4,$0  // auxv terminate
    GLOBL _rt0_386_android_argv(SB),NOPTR,$0x10
    
    // TODO: wire up necessary VDSO (see os_linux_386.go)
    
    DATA _rt0_386_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 21 04:56:36 UTC 2018
    - 822 bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/waypoint.go

    	ConnectOriginate = "connect_originate"
    
    	// EncapClusterName is the name of the cluster used for traffic to the connect_originate listener.
    	EncapClusterName = "encap"
    
    	// ConnectUpgradeType is the type of upgrade for HTTP CONNECT.
    	ConnectUpgradeType = "CONNECT"
    )
    
    type waypointServices struct {
    	services        map[host.Name]*model.Service
    	orderedServices []*model.Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top