Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Commit

Permalink
Run hack/update-client-gen.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
James Munnelly committed Feb 2, 2018
1 parent dbbb809 commit fcc58f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
4 changes: 2 additions & 2 deletions pkg/apis/navigator/v1alpha1/zz_generated.conversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ func autoConvert_v1alpha1_ElasticsearchClusterNodePool_To_navigator_Elasticsearc
out.Replicas = in.Replicas
out.Roles = *(*[]navigator.ElasticsearchClusterRole)(unsafe.Pointer(&in.Roles))
out.NodeSelector = *(*map[string]string)(unsafe.Pointer(&in.NodeSelector))
out.Resources = (*v1.ResourceRequirements)(unsafe.Pointer(in.Resources))
out.Resources = in.Resources
if err := Convert_v1alpha1_ElasticsearchClusterPersistenceConfig_To_navigator_ElasticsearchClusterPersistenceConfig(&in.Persistence, &out.Persistence, s); err != nil {
return err
}
Expand All @@ -331,7 +331,7 @@ func autoConvert_navigator_ElasticsearchClusterNodePool_To_v1alpha1_Elasticsearc
out.Replicas = in.Replicas
out.Roles = *(*[]ElasticsearchClusterRole)(unsafe.Pointer(&in.Roles))
out.NodeSelector = *(*map[string]string)(unsafe.Pointer(&in.NodeSelector))
out.Resources = (*v1.ResourceRequirements)(unsafe.Pointer(in.Resources))
out.Resources = in.Resources
if err := Convert_navigator_ElasticsearchClusterPersistenceConfig_To_v1alpha1_ElasticsearchClusterPersistenceConfig(&in.Persistence, &out.Persistence, s); err != nil {
return err
}
Expand Down
11 changes: 1 addition & 10 deletions pkg/apis/navigator/v1alpha1/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ limitations under the License.
package v1alpha1

import (
v1 "k8s.io/api/core/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
)

Expand Down Expand Up @@ -244,15 +243,7 @@ func (in *ElasticsearchClusterNodePool) DeepCopyInto(out *ElasticsearchClusterNo
(*out)[key] = val
}
}
if in.Resources != nil {
in, out := &in.Resources, &out.Resources
if *in == nil {
*out = nil
} else {
*out = new(v1.ResourceRequirements)
(*in).DeepCopyInto(*out)
}
}
in.Resources.DeepCopyInto(&out.Resources)
in.Persistence.DeepCopyInto(&out.Persistence)
return
}
Expand Down
11 changes: 1 addition & 10 deletions pkg/apis/navigator/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ limitations under the License.
package navigator

import (
v1 "k8s.io/api/core/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
)

Expand Down Expand Up @@ -244,15 +243,7 @@ func (in *ElasticsearchClusterNodePool) DeepCopyInto(out *ElasticsearchClusterNo
(*out)[key] = val
}
}
if in.Resources != nil {
in, out := &in.Resources, &out.Resources
if *in == nil {
*out = nil
} else {
*out = new(v1.ResourceRequirements)
(*in).DeepCopyInto(*out)
}
}
in.Resources.DeepCopyInto(&out.Resources)
in.Persistence.DeepCopyInto(&out.Persistence)
return
}
Expand Down

0 comments on commit fcc58f6

Please sign in to comment.