Skip to content

Commit

Permalink
Run hack/update-codegen.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
munnerz committed Jun 8, 2018
1 parent ae37efa commit 0c05e15
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkg/apis/certmanager/v1alpha1/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,15 @@ func (in *IssuerConfig) DeepCopyInto(out *IssuerConfig) {
**out = **in
}
}
if in.SelfSigned != nil {
in, out := &in.SelfSigned, &out.SelfSigned
if *in == nil {
*out = nil
} else {
*out = new(SelfSignedIssuer)
**out = **in
}
}
return
}

Expand Down Expand Up @@ -882,6 +891,22 @@ func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
return out
}

// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SelfSignedIssuer) DeepCopyInto(out *SelfSignedIssuer) {
*out = *in
return
}

// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SelfSignedIssuer.
func (in *SelfSignedIssuer) DeepCopy() *SelfSignedIssuer {
if in == nil {
return nil
}
out := new(SelfSignedIssuer)
in.DeepCopyInto(out)
return out
}

// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
*out = *in
Expand Down

0 comments on commit 0c05e15

Please sign in to comment.