Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ValueFrom (0.23 sec)

  1. prow/config/calico.yaml

                  optional: true
              env:
                - name: KUBERNETES_NODE_NAME
                  valueFrom:
                    fieldRef:
                      fieldPath: spec.nodeName
                - name: CALICO_NETWORKING_BACKEND
                  valueFrom:
                    configMapKeyRef:
                      name: calico-config
                      key: calico_backend
              volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if ev.ValueFrom == nil {
    		return allErrs
    	}
    
    	numSources := 0
    
    	if ev.ValueFrom.FieldRef != nil {
    		numSources++
    		allErrs = append(allErrs, validateObjectFieldSelector(ev.ValueFrom.FieldRef, &validEnvDownwardAPIFieldPathExpressions, fldPath.Child("fieldRef"))...)
    		allErrs = append(allErrs, validateDownwardAPIHostIPs(ev.ValueFrom.FieldRef, fldPath.Child("fieldRef"), opts)...)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_EnvVar_To_core_EnvVar(in *v1.EnvVar, out *core.EnvVar, s conversion.Scope) error {
    	out.Name = in.Name
    	out.Value = in.Value
    	out.ValueFrom = (*core.EnvVarSource)(unsafe.Pointer(in.ValueFrom))
    	return nil
    }
    
    // Convert_v1_EnvVar_To_core_EnvVar is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	Value string `json:"value,omitempty" protobuf:"bytes,2,opt,name=value"`
    	// Source for the environment variable's value. Cannot be used if value is not empty.
    	// +optional
    	ValueFrom *EnvVarSource `json:"valueFrom,omitempty" protobuf:"bytes,3,opt,name=valueFrom"`
    }
    
    // EnvVarSource represents a source for the value of an EnvVar.
    type EnvVarSource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // Defaults to "".
      // +optional
      optional string value = 2;
    
      // Source for the environment variable's value. Cannot be used if value is not empty.
      // +optional
      optional EnvVarSource valueFrom = 3;
    }
    
    // EnvVarSource represents a source for the value of an EnvVar.
    message EnvVarSource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// regardless of whether the variable exists or not.
    	// +optional
    	Value string
    	// Optional: Specifies a source the value of this var should come from.
    	// +optional
    	ValueFrom *EnvVarSource
    }
    
    // EnvVarSource represents a source for the value of an EnvVar.
    // Only one of its fields may be set.
    type EnvVarSource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"valueFrom": "Source for the environment variable's value. Cannot be used if value is not empty.",
    }
    
    func (EnvVar) SwaggerDoc() map[string]string {
    	return map_EnvVar
    }
    
    var map_EnvVarSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Defaults to "".
      // +optional
      optional string value = 2;
    
      // Source for the environment variable's value. Cannot be used if value is not empty.
      // +optional
      optional EnvVarSource valueFrom = 3;
    }
    
    // EnvVarSource represents a source for the value of an EnvVar.
    message EnvVarSource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "valueFrom": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVarSource"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top