Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for SecretReference (0.36 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.SecretReference)(nil), (*core.SecretReference)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_SecretReference_To_core_SecretReference(a.(*v1.SecretReference), b.(*core.SecretReference), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter.go

    		volAttribs         map[string]string
    		nodePublishSecrets map[string]string
    		publishContext     map[string]string
    		mountOptions       []string
    		deviceMountPath    string
    		secretRef          *api.SecretReference
    	)
    
    	switch {
    	case volSrc != nil:
    		if c.volumeLifecycleMode != storage.VolumeLifecycleEphemeral {
    			return fmt.Errorf("unexpected volume mode: %s", c.volumeLifecycleMode)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    func (in *SecretReference) DeepCopyInto(out *SecretReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretReference.
    func (in *SecretReference) DeepCopy() *SecretReference {
    	if in == nil {
    		return nil
    	}
    	out := new(SecretReference)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *SecretReference) DeepCopyInto(out *SecretReference) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretReference.
    func (in *SecretReference) DeepCopy() *SecretReference {
    	if in == nil {
    		return nil
    	}
    	out := new(SecretReference)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    	longSecretName := "key-name.example.com"
    	longSecretRef := &core.SecretReference{
    		Name:      longSecretName,
    		Namespace: "default",
    	}
    
    	// invalidSecrets missing name, namespace and both
    	inValidSecretRef := &core.SecretReference{
    		Name:      "",
    		Namespace: "",
    	}
    	invalidSecretRefmissingName := &core.SecretReference{
    		Name:      "",
    		Namespace: "default",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	for i := 0; i < opts.uniquePVCsPerPod; i++ {
    		pv := &corev1.PersistentVolume{}
    		pv.Name = fmt.Sprintf("pv%d-%s-%s", i, pod.Name, pod.Namespace)
    		pv.Spec.FlexVolume = &corev1.FlexPersistentVolumeSource{SecretRef: &corev1.SecretReference{Name: fmt.Sprintf("secret-%s", pv.Name)}}
    		pv.Spec.ClaimRef = &corev1.ObjectReference{Name: fmt.Sprintf("pvc%d-%s", i, pod.Name), Namespace: pod.Namespace}
    		pvs = append(pvs, pv)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // optional field specify whether the Secret or its key must be defined
      // +optional
      optional bool optional = 4;
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    type SecretReference struct {
    	// Name is unique within a namespace to reference a secret resource.
    	// +optional
    	Name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // optional field specify whether the Secret or its key must be defined
      // +optional
      optional bool optional = 4;
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,6,opt,name=readOnly"`
    }
    
    // SecretReference represents a Secret Reference. It has enough information to retrieve secret
    // in any namespace
    // +structType=atomic
    type SecretReference struct {
    	// name is unique within a namespace to reference a secret resource.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top