Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 109 for secretKeyRef (0.44 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.ConfigMapKeyRef != nil {
    		in, out := &in.ConfigMapKeyRef, &out.ConfigMapKeyRef
    		*out = new(ConfigMapKeySelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.SecretKeyRef != nil {
    		in, out := &in.SecretKeyRef, &out.SecretKeyRef
    		*out = new(SecretKeySelector)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/kubelet_pods_test.go

    			ns:                 "test",
    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{
    						Name: "POD_NAME",
    						ValueFrom: &v1.EnvVarSource{
    							SecretKeyRef: &v1.SecretKeySelector{
    								LocalObjectReference: v1.LocalObjectReference{Name: "missing-secret"},
    								Key:                  "key",
    								Optional:             &trueVal,
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.SecretKeyRef == nil {
    				m.SecretKeyRef = &SecretKeySelector{}
    			}
    			if err := m.SecretKeyRef.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "secretKeyRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector",
              "description": "Selects a key of a secret in the pod's namespace"
            }
          },
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top