diff --git a/pkg/apis/io/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/io/v1alpha1/zz_generated.deepcopy.go index 34d2456b5..a722ec29f 100644 --- a/pkg/apis/io/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/io/v1alpha1/zz_generated.deepcopy.go @@ -40,6 +40,13 @@ func (in *Jaeger) DeepCopyObject() runtime.Object { func (in *JaegerAgentSpec) DeepCopyInto(out *JaegerAgentSpec) { *out = *in in.Options.DeepCopyInto(&out.Options) + if in.Annotations != nil { + in, out := &in.Annotations, &out.Annotations + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } return } @@ -58,6 +65,13 @@ func (in *JaegerAllInOneSpec) DeepCopyInto(out *JaegerAllInOneSpec) { *out = *in in.Ingress.DeepCopyInto(&out.Ingress) in.Options.DeepCopyInto(&out.Options) + if in.Annotations != nil { + in, out := &in.Annotations, &out.Annotations + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } return } @@ -74,6 +88,11 @@ func (in *JaegerAllInOneSpec) DeepCopy() *JaegerAllInOneSpec { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *JaegerCassandraCreateSchemaSpec) DeepCopyInto(out *JaegerCassandraCreateSchemaSpec) { *out = *in + if in.Enabled != nil { + in, out := &in.Enabled, &out.Enabled + *out = new(bool) + **out = **in + } return } @@ -91,6 +110,13 @@ func (in *JaegerCassandraCreateSchemaSpec) DeepCopy() *JaegerCassandraCreateSche func (in *JaegerCollectorSpec) DeepCopyInto(out *JaegerCollectorSpec) { *out = *in in.Options.DeepCopyInto(&out.Options) + if in.Annotations != nil { + in, out := &in.Annotations, &out.Annotations + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } return } @@ -163,6 +189,13 @@ func (in *JaegerQuerySpec) DeepCopyInto(out *JaegerQuerySpec) { *out = *in in.Ingress.DeepCopyInto(&out.Ingress) in.Options.DeepCopyInto(&out.Options) + if in.Annotations != nil { + in, out := &in.Annotations, &out.Annotations + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } return } @@ -217,7 +250,7 @@ func (in *JaegerStatus) DeepCopy() *JaegerStatus { func (in *JaegerStorageSpec) DeepCopyInto(out *JaegerStorageSpec) { *out = *in in.Options.DeepCopyInto(&out.Options) - out.CassandraCreateSchema = in.CassandraCreateSchema + in.CassandraCreateSchema.DeepCopyInto(&out.CassandraCreateSchema) return }