Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for SecretReference (0.41 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *SecretReference) Reset()      { *m = SecretReference{} }
    func (*SecretReference) ProtoMessage() {}
    func (*SecretReference) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{190}
    }
    func (m *SecretReference) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *SecretReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter_test.go

    			spec: func(fsType string, options []string) *volume.Spec {
    				pv := makeTestPV("pv5", 20, testDriver, "vol6")
    				pv.Spec.PersistentVolumeSource.CSI.NodePublishSecretRef = &corev1.SecretReference{
    					Name:      "foo",
    					Namespace: "default",
    				}
    				return volume.NewSpecFromPersistentVolume(pv, false)
    			},
    			exitError:        transientError,
    			createAttachment: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/api/core/v1.SecretReference"),
    						},
    					},
    				},
    				Required: []string{"driver", "volumeHandle"},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/core/v1.SecretReference"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top