Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for ConfigMapRef (0.5 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

              divisor: "0"
              resource: resourceValue
            secretKeyRef:
              key: keyValue
              name: nameValue
              optional: true
        envFrom:
        - configMapRef:
            name: nameValue
            optional: true
          prefix: prefixValue
          secretRef:
            name: nameValue
            optional: true
        image: imageValue
        imagePullPolicy: imagePullPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1beta1.CronJob.yaml

                      resource: resourceValue
                    secretKeyRef:
                      key: keyValue
                      name: nameValue
                      optional: true
                envFrom:
                - configMapRef:
                    name: nameValue
                    optional: true
                  prefix: prefixValue
                  secretRef:
                    name: nameValue
                    optional: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml

                  divisor: "0"
                  resource: resourceValue
                secretKeyRef:
                  key: keyValue
                  name: nameValue
                  optional: true
            envFrom:
            - configMapRef:
                name: nameValue
                optional: true
              prefix: prefixValue
              secretRef:
                name: nameValue
                optional: true
            image: imageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

              divisor: "0"
              resource: resourceValue
            secretKeyRef:
              key: keyValue
              name: nameValue
              optional: true
        envFrom:
        - configMapRef:
            name: nameValue
            optional: true
          prefix: prefixValue
          secretRef:
            name: nameValue
            optional: true
        image: imageValue
        imagePullPolicy: imagePullPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

                      resource: resourceValue
                    secretKeyRef:
                      key: keyValue
                      name: nameValue
                      optional: true
                envFrom:
                - configMapRef:
                    name: nameValue
                    optional: true
                  prefix: prefixValue
                  secretRef:
                    name: nameValue
                    optional: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

                      resource: resourceValue
                    secretKeyRef:
                      key: keyValue
                      name: nameValue
                      optional: true
                envFrom:
                - configMapRef:
                    name: nameValue
                    optional: true
                  prefix: prefixValue
                  secretRef:
                    name: nameValue
                    optional: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

                  divisor: "0"
                  resource: resourceValue
                secretKeyRef:
                  key: keyValue
                  name: nameValue
                  optional: true
            envFrom:
            - configMapRef:
                name: nameValue
                optional: true
              prefix: prefixValue
              secretRef:
                name: nameValue
                optional: true
            image: imageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

                  divisor: "0"
                  resource: resourceValue
                secretKeyRef:
                  key: keyValue
                  name: nameValue
                  optional: true
            envFrom:
            - configMapRef:
                name: nameValue
                optional: true
              prefix: prefixValue
              secretRef:
                name: nameValue
                optional: true
            image: imageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  9. pkg/api/pod/util.go

    			}
    		}
    	}
    	return true
    }
    
    func visitContainerConfigmapNames(container *api.Container, visitor Visitor) bool {
    	for _, env := range container.EnvFrom {
    		if env.ConfigMapRef != nil {
    			if !visitor(env.ConfigMapRef.Name) {
    				return false
    			}
    		}
    	}
    	for _, envVar := range container.Env {
    		if envVar.ValueFrom != nil && envVar.ValueFrom.ConfigMapKeyRef != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  10. pkg/apis/core/fuzzer/fuzzer.go

    				ev.ValueFrom.FieldRef.FieldPath = c.RandString()
    			}
    		},
    		func(ev *core.EnvFromSource, c fuzz.Continue) {
    			if c.RandBool() {
    				ev.Prefix = "p_"
    			}
    			if c.RandBool() {
    				c.Fuzz(&ev.ConfigMapRef)
    			} else {
    				c.Fuzz(&ev.SecretRef)
    			}
    		},
    		func(cm *core.ConfigMapEnvSource, c fuzz.Continue) {
    			c.FuzzNoCustom(cm) // fuzz self without calling this function again
    			if c.RandBool() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top