mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Update CHANGELOG
This commit is contained in:
parent
0df664e8bc
commit
79ac42946b
2 changed files with 44 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
|
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
|
||||||
|
|
||||||
|
## [1.1.2](https://github.com/arangodb/kube-arangodb/tree/1.1.2) (2020-11-11)
|
||||||
- Fix Bootstrap phase and move it under Plan
|
- Fix Bootstrap phase and move it under Plan
|
||||||
|
|
||||||
## [1.1.1](https://github.com/arangodb/kube-arangodb/tree/1.1.1) (2020-11-04)
|
## [1.1.1](https://github.com/arangodb/kube-arangodb/tree/1.1.1) (2020-11-04)
|
||||||
|
|
42
pkg/apis/deployment/v1/zz_generated.deepcopy.go
generated
42
pkg/apis/deployment/v1/zz_generated.deepcopy.go
generated
|
@ -454,6 +454,11 @@ func (in *DeploymentSpec) DeepCopyInto(out *DeploymentSpec) {
|
||||||
(*in).DeepCopyInto(*out)
|
(*in).DeepCopyInto(*out)
|
||||||
}
|
}
|
||||||
in.Bootstrap.DeepCopyInto(&out.Bootstrap)
|
in.Bootstrap.DeepCopyInto(&out.Bootstrap)
|
||||||
|
if in.Timeouts != nil {
|
||||||
|
in, out := &in.Timeouts, &out.Timeouts
|
||||||
|
*out = new(Timeouts)
|
||||||
|
(*in).DeepCopyInto(*out)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1845,3 +1850,40 @@ func (in *TLSSpec) DeepCopy() *TLSSpec {
|
||||||
in.DeepCopyInto(out)
|
in.DeepCopyInto(out)
|
||||||
return out
|
return out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
|
func (in *Timeout) DeepCopyInto(out *Timeout) {
|
||||||
|
*out = *in
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Timeout.
|
||||||
|
func (in *Timeout) DeepCopy() *Timeout {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(Timeout)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
|
func (in *Timeouts) DeepCopyInto(out *Timeouts) {
|
||||||
|
*out = *in
|
||||||
|
if in.AddMember != nil {
|
||||||
|
in, out := &in.AddMember, &out.AddMember
|
||||||
|
*out = new(Timeout)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Timeouts.
|
||||||
|
func (in *Timeouts) DeepCopy() *Timeouts {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(Timeouts)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue