1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-15 17:51:03 +00:00

Update generated

This commit is contained in:
Ewout Prangsma 2018-03-12 10:41:04 +01:00
parent 9e257bc4a4
commit 4156b34578
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -155,7 +155,7 @@ func (in *DeploymentSpec) DeepCopyInto(out *DeploymentSpec) {
out.RocksDB = in.RocksDB
out.Authentication = in.Authentication
in.TLS.DeepCopyInto(&out.TLS)
out.Sync = in.Sync
in.Sync.DeepCopyInto(&out.Sync)
in.Single.DeepCopyInto(&out.Single)
in.Agents.DeepCopyInto(&out.Agents)
in.DBServers.DeepCopyInto(&out.DBServers)
@ -362,6 +362,7 @@ func (in *ServerGroupSpec) DeepCopy() *ServerGroupSpec {
func (in *SyncSpec) DeepCopyInto(out *SyncSpec) {
*out = *in
out.Authentication = in.Authentication
in.TLS.DeepCopyInto(&out.TLS)
out.Monitoring = in.Monitoring
return
}