Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for kenv (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.13.md

    - Added a new container based image for running e2e tests ([#69368](https://github.com/kubernetes/kubernetes/pull/69368), [@dims](https://github.com/dims))
    - The `LC_ALL` and `LC_MESSAGES` env vars can now be used to set desired locale for `kubectl` while keeping `LANG` unchanged. ([#69500](https://github.com/kubernetes/kubernetes/pull/69500), [@m1kola](https://github.com/m1kola))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.23.md

    - Adding support for multiple `--from-env-file flags`. ([#104232](https://github.com/kubernetes/kubernetes/pull/104232), [@lauchokyip](https://github.com/lauchokyip))
    - Adding support for multiple `--from-env-file` flags. ([#101646](https://github.com/kubernetes/kubernetes/pull/101646), [@lauchokyip](https://github.com/lauchokyip))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="application/vnd.wolfram.wl">
        <_comment>Wolfram Language</_comment>
        <glob pattern="*.wl"/>
        <magic priority="50">
          <match value="#!/usr/bin/env wolframscript" type="string" offset="0"/>
        </magic>
        <sub-class-of type="application/mathematica"/>
      </mime-type>
    
      <mime-type type="application/mathml+xml">
        <glob pattern="*.mathml"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	volDevices := GetVolumeDeviceMap(ctr.VolumeDevices)
    	allErrs = append(allErrs, validateContainerPorts(ctr.Ports, path.Child("ports"))...)
    	allErrs = append(allErrs, ValidateEnv(ctr.Env, path.Child("env"), opts)...)
    	allErrs = append(allErrs, ValidateEnvFrom(ctr.EnvFrom, path.Child("envFrom"), opts)...)
    	allErrs = append(allErrs, ValidateVolumeMounts(ctr.VolumeMounts, volDevices, volumes, ctr, path.Child("volumeMounts"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.24.md

    - Enabled beta feature HonorPVReclaimPolicy by default. ([#109035](https://github.com/kubernetes/kubernetes/pull/109035), [@deepakkinni](https://github.com/deepakkinni))
    - Env var for additional cli flags used in the csi-proxy binary when a Windows nodepool is created with `kube-up.sh` ([#107806](https://github.com/kubernetes/kubernetes/pull/107806), [@mauriciopoppe](https://github.com/mauriciopoppe))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.20.md

    - Kubectl: Previously users cannot provide arguments to a external diff tool via KUBECTL_EXTERNAL_DIFF env. This release now allow users to specify args to KUBECTL_EXTERNAL_DIFF env. ([#95292](https://github.com/kubernetes/kubernetes/pull/95292), [@dougsland](https://github.com/dougsland)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top