Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for configMapKeyRef (0.2 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/envvarsource.go

    	FieldRef         *ObjectFieldSelectorApplyConfiguration   `json:"fieldRef,omitempty"`
    	ResourceFieldRef *ResourceFieldSelectorApplyConfiguration `json:"resourceFieldRef,omitempty"`
    	ConfigMapKeyRef  *ConfigMapKeySelectorApplyConfiguration  `json:"configMapKeyRef,omitempty"`
    	SecretKeyRef     *SecretKeySelectorApplyConfiguration     `json:"secretKeyRef,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/artifacts/kustomization/deployment.yaml

            ports:
            - containerPort: 8080
            env:
            - name: ALT_GREETING
              valueFrom:
                configMapKeyRef:
                  name: the-map
                  key: altGreeting
            - name: ENABLE_RISKY
              valueFrom:
                configMapKeyRef:
                  name: the-map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 697 bytes
    - Viewed (0)
  3. hack/testdata/kustomize/deployment.yaml

            ports:
            - containerPort: 8080
            env:
            - name: ALT_GREETING
              valueFrom:
                configMapKeyRef:
                  name: the-map
                  key: altGreeting
            - name: ENABLE_RISKY
              valueFrom:
                configMapKeyRef:
                  name: the-map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:31:03 UTC 2019
    - 782 bytes
    - Viewed (0)
  4. hack/testdata/pod-with-api-env.yaml

          env:
            - name: TEST_CMD_1
              valueFrom:
                secretKeyRef:
                  name: test-secret
                  key: key-1
            - name: TEST_CMD_2
              valueFrom:
                configMapKeyRef:
                  name: test-configmap
                  key: key-2
            - name: TEST_CMD_3
              valueFrom:
                fieldRef:
                  fieldPath: metadata.name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 593 bytes
    - Viewed (0)
  5. pkg/api/v1/pod/util_test.go

    		"Spec.Containers[*].Env[*].ValueFrom.ConfigMapKeyRef",
    		"Spec.EphemeralContainers[*].EphemeralContainerCommon.EnvFrom[*].ConfigMapRef",
    		"Spec.EphemeralContainers[*].EphemeralContainerCommon.Env[*].ValueFrom.ConfigMapKeyRef",
    		"Spec.InitContainers[*].EnvFrom[*].ConfigMapRef",
    		"Spec.InitContainers[*].Env[*].ValueFrom.ConfigMapKeyRef",
    		"Spec.Volumes[*].VolumeSource.Projected.Sources[*].ConfigMap",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

                        "containerName": "containerNameValue",
                        "resource": "resourceValue",
                        "divisor": "0"
                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

                        "containerName": "containerNameValue",
                        "resource": "resourceValue",
                        "divisor": "0"
                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

          containers:
          - args:
            - argsValue
            command:
            - commandValue
            env:
            - name: nameValue
              value: valueValue
              valueFrom:
                configMapKeyRef:
                  key: keyValue
                  name: nameValue
                  optional: true
                fieldRef:
                  apiVersion: apiVersionValue
                  fieldPath: fieldPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodTemplate.yaml

        containers:
        - args:
          - argsValue
          command:
          - commandValue
          env:
          - name: nameValue
            value: valueValue
            valueFrom:
              configMapKeyRef:
                key: keyValue
                name: nameValue
                optional: true
              fieldRef:
                apiVersion: apiVersionValue
                fieldPath: fieldPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.ReplicaSet.yaml

          containers:
          - args:
            - argsValue
            command:
            - commandValue
            env:
            - name: nameValue
              value: valueValue
              valueFrom:
                configMapKeyRef:
                  key: keyValue
                  name: nameValue
                  optional: true
                fieldRef:
                  apiVersion: apiVersionValue
                  fieldPath: fieldPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
Back to top