|
|
@@ -567,6 +567,11 @@ func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
|
|
|
*out = new(VaultKubernetesAuth)
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
}
|
|
|
+ if in.Ldap != nil {
|
|
|
+ in, out := &in.Ldap, &out.Ldap
|
|
|
+ *out = new(VaultLdapAuth)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
|
|
|
@@ -605,6 +610,26 @@ func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
|
|
|
}
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
+func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
|
|
|
+ *out = *in
|
|
|
+ if in.SecretRef != nil {
|
|
|
+ in, out := &in.SecretRef, &out.SecretRef
|
|
|
+ *out = new(metav1.SecretKeySelector)
|
|
|
+ (*in).DeepCopyInto(*out)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
|
|
|
+func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
|
|
|
+ if in == nil {
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ out := new(VaultLdapAuth)
|
|
|
+ in.DeepCopyInto(out)
|
|
|
+ return out
|
|
|
+}
|
|
|
+
|
|
|
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
|
|
|
*out = *in
|
|
|
in.Auth.DeepCopyInto(&out.Auth)
|