update code generation

This commit is contained in:
Felix Kunde 2019-06-07 14:10:57 +02:00
parent df338cc03d
commit f1dae6e8ef
1 changed files with 5 additions and 0 deletions

View File

@ -71,6 +71,11 @@ func (in *KubernetesMetaConfiguration) DeepCopyInto(out *KubernetesMetaConfigura
*out = new(int64)
**out = **in
}
if in.EnablePodDisruptionBudget != nil {
in, out := &in.EnablePodDisruptionBudget, &out.EnablePodDisruptionBudget
*out = new(bool)
**out = **in
}
out.OAuthTokenSecretName = in.OAuthTokenSecretName
out.InfrastructureRolesSecretName = in.InfrastructureRolesSecretName
if in.ClusterLabels != nil {