Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ConfigMapRef (0.28 sec)

  1. prow/config/calico.yaml

              image: gcr.io/istio-testing/calico/cni:v3.27.0
              imagePullPolicy: IfNotPresent
              command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
              envFrom:
              - configMapRef:
                  # Allow KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT to be overridden for eBPF mode.
                  name: kubernetes-services-endpoint
                  optional: true
              env:
    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. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Prefix string `json:"prefix,omitempty" protobuf:"bytes,1,opt,name=prefix"`
    	// The ConfigMap to select from
    	// +optional
    	ConfigMapRef *ConfigMapEnvSource `json:"configMapRef,omitempty" protobuf:"bytes,2,opt,name=configMapRef"`
    	// The Secret to select from
    	// +optional
    	SecretRef *SecretEnvSource `json:"secretRef,omitempty" protobuf:"bytes,3,opt,name=secretRef"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    					allErrs = append(allErrs, field.Invalid(idxPath.Child("prefix"), ev.Prefix, msg))
    				}
    			}
    		}
    
    		numSources := 0
    		if ev.ConfigMapRef != nil {
    			numSources++
    			allErrs = append(allErrs, validateConfigMapEnvSource(ev.ConfigMapRef, idxPath.Child("configMapRef"))...)
    		}
    		if ev.SecretRef != nil {
    			numSources++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_EnvFromSource_To_core_EnvFromSource(in *v1.EnvFromSource, out *core.EnvFromSource, s conversion.Scope) error {
    	out.Prefix = in.Prefix
    	out.ConfigMapRef = (*core.ConfigMapEnvSource)(unsafe.Pointer(in.ConfigMapRef))
    	out.SecretRef = (*core.SecretEnvSource)(unsafe.Pointer(in.SecretRef))
    	return nil
    }
    
    // Convert_v1_EnvFromSource_To_core_EnvFromSource 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)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string prefix = 1;
    
      // The ConfigMap to select from
      // +optional
      optional ConfigMapEnvSource configMapRef = 2;
    
      // The Secret to select from
      // +optional
      optional SecretEnvSource secretRef = 3;
    }
    
    // EnvVar represents an environment variable present in a Container.
    message EnvVar {
    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

    type EnvFromSource struct {
    	// An optional identifier to prepend to each key in the ConfigMap.
    	// +optional
    	Prefix string
    	// The ConfigMap to select from.
    	// +optional
    	ConfigMapRef *ConfigMapEnvSource
    	// The Secret to select from.
    	// +optional
    	SecretRef *SecretEnvSource
    }
    
    // ConfigMapEnvSource selects a ConfigMap to populate the environment
    // variables with.
    //
    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

    var map_EnvFromSource = map[string]string{
    	"":             "EnvFromSource represents the source of a set of ConfigMaps",
    	"prefix":       "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
    	"configMapRef": "The ConfigMap to select from",
    	"secretRef":    "The Secret to select from",
    }
    
    func (EnvFromSource) SwaggerDoc() map[string]string {
    	return map_EnvFromSource
    }
    
    var map_EnvVar = 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

      // +optional
      optional string prefix = 1;
    
      // The ConfigMap to select from
      // +optional
      optional ConfigMapEnvSource configMapRef = 2;
    
      // The Secret to select from
      // +optional
      optional SecretEnvSource secretRef = 3;
    }
    
    // EnvVar represents an environment variable present in a Container.
    message EnvVar {
    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": "object"
          },
          "io.k8s.api.core.v1.EnvFromSource": {
            "description": "EnvFromSource represents the source of a set of ConfigMaps",
            "properties": {
              "configMapRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapEnvSource"
                  }
                ],
    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