Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for secretKeyRef (0.37 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    	if ev.ValueFrom.SecretKeyRef != nil {
    		numSources++
    		allErrs = append(allErrs, validateSecretKeySelector(ev.ValueFrom.SecretKeyRef, fldPath.Child("secretKeyRef"))...)
    	}
    
    	if numSources == 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath, "", "must specify one of: `fieldRef`, `resourceFieldRef`, `configMapKeyRef` or `secretKeyRef`"))
    	} else if len(ev.Value) != 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)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ResourceFieldRef = (*core.ResourceFieldSelector)(unsafe.Pointer(in.ResourceFieldRef))
    	out.ConfigMapKeyRef = (*core.ConfigMapKeySelector)(unsafe.Pointer(in.ConfigMapKeyRef))
    	out.SecretKeyRef = (*core.SecretKeySelector)(unsafe.Pointer(in.SecretKeyRef))
    	return nil
    }
    
    // Convert_v1_EnvVarSource_To_core_EnvVarSource is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                      This field can only be set on the default BGPConfiguration instance
                      and requires that NodeMesh is enabled
                    properties:
                      secretKeyRef:
                        description: Selects a key of a secret in the node pod's namespace.
                        properties:
                          key:
    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

    	// Selects a key of a secret in the pod's namespace
    	// +optional
    	SecretKeyRef *SecretKeySelector `json:"secretKeyRef,omitempty" protobuf:"bytes,4,opt,name=secretKeyRef"`
    }
    
    // ObjectFieldSelector selects an APIVersioned field of an object.
    // +structType=atomic
    type ObjectFieldSelector struct {
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // Selects a key of a ConfigMap.
      // +optional
      optional ConfigMapKeySelector configMapKeyRef = 3;
    
      // Selects a key of a secret in the pod's namespace
      // +optional
      optional SecretKeySelector secretKeyRef = 4;
    }
    
    // An EphemeralContainer is a temporary container that you may add to an existing Pod for
    // user-initiated activities such as debugging. Ephemeral containers have no resource or
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	ResourceFieldRef *ResourceFieldSelector
    	// Selects a key of a ConfigMap.
    	// +optional
    	ConfigMapKeyRef *ConfigMapKeySelector
    	// Selects a key of a secret in the pod's namespace.
    	// +optional
    	SecretKeyRef *SecretKeySelector
    }
    
    // ObjectFieldSelector selects an APIVersioned field of an object.
    type ObjectFieldSelector struct {
    	// Required: Version of the schema the FieldPath is written in terms of.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"configMapKeyRef":  "Selects a key of a ConfigMap.",
    	"secretKeyRef":     "Selects a key of a secret in the pod's namespace",
    }
    
    func (EnvVarSource) SwaggerDoc() map[string]string {
    	return map_EnvVarSource
    }
    
    var map_EphemeralContainer = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Selects a key of a ConfigMap.
      // +optional
      optional ConfigMapKeySelector configMapKeyRef = 3;
    
      // Selects a key of a secret in the pod's namespace
      // +optional
      optional SecretKeySelector secretKeyRef = 4;
    }
    
    // An EphemeralContainer is a temporary container that you may add to an existing Pod for
    // user-initiated activities such as debugging. Ephemeral containers have no resource or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "secretKeyRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretKeySelector"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top