Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for envMap (0.29 sec)

  1. 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)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // +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 {
      // Name of the environment variable. Must be a C_IDENTIFIER.
      optional string name = 1;
    
      // Variable references $(VAR_NAME) are expanded
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	Name string
    	// devicePath is the path inside of the container that the device will be mapped to.
    	DevicePath string
    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	// Required: Name of the environment variable.
    	// When the RelaxedEnvironmentVariableValidation feature gate is disabled, this must consist of alphabetic characters,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +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 {
      // Name of the environment variable. Must be a C_IDENTIFIER.
      optional string name = 1;
    
      // Variable references $(VAR_NAME) are expanded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// devicePath is the path inside of the container that the device will be mapped to.
    	DevicePath string `json:"devicePath" protobuf:"bytes,2,opt,name=devicePath"`
    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	// Name of the environment variable. Must be a C_IDENTIFIER.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. 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{
    	"":                 "EnvVarSource represents a source for the value of an EnvVar.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.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": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		}
    	}
    	return allErrs
    }
    
    // ValidateEnv validates env vars
    func ValidateEnv(vars []core.EnvVar, fldPath *field.Path, opts PodValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	for i, ev := range vars {
    		idxPath := fldPath.Index(i)
    		if len(ev.Name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top