Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for kenv (0.07 sec)

  1. CHANGELOG/CHANGELOG-1.8.md

    * `kubectl run --env` no longer supports CSV parsing. To provide multiple env vars, use the `--env` flag multiple times instead of having env vars separated by commas. E.g. `--env ONE=1 --env TWO=2` instead of `--env ONE=1,TWO=2`. ([#47460](https://github.com/kubernetes/kubernetes/pull/47460), [@mengqiy](https://github.com/mengqiy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Environment variables passed to the Pilot container.
    	//
    	// Examples:
    	// env:
    	//
    	//	ENV_VAR_1: value1
    	//	ENV_VAR_2: value2
    	Env *structpb.Struct `protobuf:"bytes,21,opt,name=env,proto3" json:"env,omitempty"`
    	// K8s affinity to set on the Pilot Pods.
    	Affinity *v1.Affinity `protobuf:"bytes,22,opt,name=affinity,proto3" json:"affinity,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                      is a pcap filter expression and the key is an interface name with
                      'all' denoting all interfaces, 'weps' all workload endpoints and
                      'heps' all host endpoints. \n When specified as an env var, it accepts
                      a comma-separated list of key=values. [Default: unset - means all
                      debug logs are emitted]"
                    type: object
                  bpfLogLevel:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Cannot be updated.
    	// +optional
    	// +patchMergeKey=name
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=name
    	Env []EnvVar `json:"env,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,7,rep,name=env"`
    	// Compute Resources required by this container.
    	// Cannot be updated.
    	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
    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. pkg/apis/core/v1/zz_generated.conversion.go

    	out.WorkingDir = in.WorkingDir
    	out.Ports = *(*[]core.ContainerPort)(unsafe.Pointer(&in.Ports))
    	out.EnvFrom = *(*[]core.EnvFromSource)(unsafe.Pointer(&in.EnvFrom))
    	out.Env = *(*[]core.EnvVar)(unsafe.Pointer(&in.Env))
    	if err := Convert_v1_ResourceRequirements_To_core_ResourceRequirements(&in.Resources, &out.Resources, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    https://evilmartians.com/chronicles/postcss-8-plugin-migration`),h.env.LANG&&h.env.LANG.startsWith("cn")&&console.warn(e+`: \u91CC\u9762 postcss.plugin \u88AB\u5F03\u7528. \u8FC1\u79FB\u6307\u5357:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // Values defined by an Env with a duplicate key will take precedence.
      // Cannot be updated.
      // +optional
      repeated EnvFromSource envFrom = 19;
    
      // List of environment variables to set in the container.
      // Cannot be updated.
      // +optional
      // +patchMergeKey=name
      // +patchStrategy=merge
      repeated EnvVar env = 7;
    
      // Compute Resources required by this container.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// sources, the value associated with the last source will take precedence.
    	// Values defined by an Env with a duplicate key will take precedence.
    	// Cannot be updated.
    	// +optional
    	EnvFrom []EnvFromSource
    	// +optional
    	Env []EnvVar
    	// Compute resource requirements.
    	// +optional
    	Resources ResourceRequirements
    	// Resources resize policy for the container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"env":                      "List of environment variables to set in the container. Cannot be updated.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // will be reported as an event when the container is starting. When a key exists in multiple
      // sources, the value associated with the last source will take precedence.
      // Values defined by an Env with a duplicate key will take precedence.
      // Cannot be updated.
      // +optional
      // +listType=atomic
      repeated EnvFromSource envFrom = 19;
    
      // List of environment variables to set in the container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top