Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for envvars (0.11 sec)

  1. 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)
  2. pkg/apis/core/zz_generated.deepcopy.go

    func (in *EnvVar) DeepCopyInto(out *EnvVar) {
    	*out = *in
    	if in.ValueFrom != nil {
    		in, out := &in.ValueFrom, &out.ValueFrom
    		*out = new(EnvVarSource)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar.
    func (in *EnvVar) DeepCopy() *EnvVar {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *EnvVar) DeepCopyInto(out *EnvVar) {
    	*out = *in
    	if in.ValueFrom != nil {
    		in, out := &in.ValueFrom, &out.ValueFrom
    		*out = new(EnvVarSource)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar.
    func (in *EnvVar) DeepCopy() *EnvVar {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "The Secret to select from"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.EnvVar": {
          "description": "EnvVar represents an environment variable present in a Container.",
          "properties": {
            "name": {
              "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/jaxb/runtime/pom.xml
    quarkus/integration-tests/hibernate-orm-envers/pom.xml
    	quarkus/extensions/resteasy-reactive/quarkus-resteasy-reactive/runtime/pom.xml
    	quarkus/extensions/hibernate-orm/runtime/pom.xml
    	quarkus/extensions/hibernate-envers/runtime/pom.xml
    	quarkus/extensions/jdbc/jdbc-h2/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			},
    			"", "",
    		},
    		{
    			"invalid vm config - invalid env name",
    			&extensions.WasmPlugin{
    				Url: "test.com/test",
    				VmConfig: &extensions.VmConfig{
    					Env: []*extensions.EnvVar{
    						{
    							Name:      "",
    							ValueFrom: extensions.EnvValueSource_HOST,
    						},
    					},
    				},
    			},
    			"spec.vmConfig.env invalid", "",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    		fieldPath = fmt.Sprintf("metadata.annotations['%s']", batch.JobCompletionIndexAnnotation)
    	} else {
    		fieldPath = fmt.Sprintf("metadata.labels['%s']", batch.JobCompletionIndexAnnotation)
    	}
    	want := []v1.EnvVar{
    		{
    			Name: "JOB_COMPLETION_INDEX",
    			ValueFrom: &v1.EnvVarSource{
    				FieldRef: &v1.ObjectFieldSelector{
    					FieldPath: fieldPath,
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top