Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for envvars (0.17 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    				},
    				Mounts: []kubecontainer.Mount{
    					{Name: "/home/lib1", HostPath: "/home/lib1", ContainerPath: "/home/lib1", ReadOnly: true},
    				},
    				Envs: []kubecontainer.EnvVar{
    					{Name: "ENV1", Value: "VALUE1"},
    				},
    			},
    		},
    		{
    			description: "cdi devices are handled when feature gate is enabled",
    			gate:        true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/multicluster_test.go

    			template := deps.Items[0].Spec.Template.Spec
    			for _, container := range template.Containers {
    				if container.Name != "discovery" {
    					continue
    				}
    				container.Env = append(container.Env, corev1.EnvVar{
    					Name:  "PILOT_REMOTE_CLUSTER_TIMEOUT",
    					Value: "15s",
    				})
    			}
    			_, err = pods.Create(context.TODO(), &corev1.Pod{
    				ObjectMeta: podMeta,
    				Spec:       deps.Items[0].Spec.Template.Spec,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. ci/official/README.md

    #   of these env files.
    #
    #   If you've clicked on a test result from our CI (via a dashboard or GitHub link),
    #   click to "Invocation Details" and find BUILD_CONFIG, which will contain a TFCI
    #   value in the "env_vars" list that you can choose to copy that environment.
    #      Ex. 1: TFCI=py311,linux_x86_cuda,nightly_upload  (nightly job)
    #      Ex. 2: TFCI=py39,linux_x86,rbe                   (continuous job)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject_test.go

    			}
    		})
    	}
    }
    
    func podWithEnv(envCount int) *corev1.Pod {
    	envs := []corev1.EnvVar{}
    	for i := 0; i < envCount; i++ {
    		envs = append(envs, corev1.EnvVar{
    			Name:  fmt.Sprintf("something-%d", i),
    			Value: "blah",
    		})
    	}
    	return &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

    #include "tensorflow/compiler/mlir/tfr/ir/tfr_ops.h"
    #include "tensorflow/compiler/mlir/tfr/passes/passes.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/stringpiece.h"
    #include "tensorflow/core/util/env_var.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tfr {
    
    const char* const kTFRLibEnv = "TF_MLIR_TFR_LIB_DIR";
    
    absl::StatusOr<std::unique_ptr<TFRDecomposeContext>> TFRDecomposeContext::Get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    				EnvFrom: []api.EnvFromSource{{
    					SecretRef: &api.SecretEnvSource{
    						LocalObjectReference: api.LocalObjectReference{
    							Name: "Spec.Containers[*].EnvFrom[*].SecretRef"}}}},
    				Env: []api.EnvVar{{
    					ValueFrom: &api.EnvVarSource{
    						SecretKeyRef: &api.SecretKeySelector{
    							LocalObjectReference: api.LocalObjectReference{
    								Name: "Spec.Containers[*].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)
  7. pkg/apis/core/validation/validation_test.go

    	errorCases := []struct {
    		name          string
    		envs          []core.EnvVar
    		expectedError string
    	}{{
    		name:          "illegal character",
    		envs:          []core.EnvVar{{Name: "=abc"}},
    		expectedError: `[0].name: Invalid value: "=abc": ` + relaxedEnvVarNameFmtErrMsg,
    	}, {
    		name:          "zero-length name",
    		envs:          []core.EnvVar{{Name: ""}},
    		expectedError: "[0].name: Required value",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/extensions_test.go

    							WasmResourceVersionEnv: "dummy-resource-version",
    						},
    					},
    				},
    			},
    		},
    		{
    			desc: "Build VMConfig on top of a base VMConfig",
    			vm: &extensions.VmConfig{
    				Env: []*extensions.EnvVar{
    					{
    						Name:      "POD_NAME",
    						ValueFrom: extensions.EnvValueSource_HOST,
    					},
    					{
    						Name:  "ENV1",
    						Value: "VAL1",
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EnvVar)(nil), (*core.EnvVar)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EnvVar_To_core_EnvVar(a.(*v1.EnvVar), b.(*core.EnvVar), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.EnvVar)(nil), (*v1.EnvVar)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests.go

    // NB. this method holds the information about how kubeadm creates static pod manifests.
    func GetStaticPodSpecs(cfg *kubeadmapi.ClusterConfiguration, endpoint *kubeadmapi.APIEndpoint, proxyEnvs []kubeadmapi.EnvVar) map[string]v1.Pod {
    	// Get the required hostpath mounts
    	mounts := getHostPathVolumesForTheControlPlane(cfg)
    	if proxyEnvs == nil {
    		proxyEnvs = kubeadmutil.GetProxyEnvVars()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top