Skip to content

Commit 94f748a

Browse files
authored
Merge pull request #369 from Revolyssup/fixpanic
Use DeepCopy instead of passing by reference
2 parents 10f23ed + 9be1477 commit 94f748a

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

pkg/broker/broker.go

+9-4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"github.com/go-logr/logr"
88
mesheryv1alpha1 "github.com/layer5io/meshery-operator/api/v1alpha1"
99
mesherykube "github.com/layer5io/meshkit/utils/kubernetes"
10+
v1 "k8s.io/api/apps/v1"
1011
corev1 "k8s.io/api/core/v1"
1112
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1213
runtime "k8s.io/apimachinery/pkg/runtime"
@@ -35,27 +36,31 @@ func GetObjects(m *mesheryv1alpha1.Broker) map[string]Object {
3536
}
3637

3738
func getServerObject(namespace, name string, replicas int32) Object {
38-
obj := StatefulSet
39+
var obj = &v1.StatefulSet{}
40+
StatefulSet.DeepCopyInto(obj)
3941
obj.ObjectMeta.Namespace = namespace
4042
obj.ObjectMeta.Name = name
4143
obj.Spec.Replicas = &replicas
4244
return obj
4345
}
4446

4547
func getServiceObject(namespace, name string) Object {
46-
obj := Service
48+
var obj = &corev1.Service{}
49+
Service.DeepCopyInto(obj)
4750
obj.ObjectMeta.Name = name
4851
obj.ObjectMeta.Namespace = namespace
4952
return obj
5053
}
5154

5255
func getServerConfig() Object {
53-
obj := NatsConfigMap
56+
var obj = &corev1.ConfigMap{}
57+
NatsConfigMap.DeepCopyInto(obj)
5458
return obj
5559
}
5660

5761
func getAccountConfig() Object {
58-
obj := AccountsConfigMap
62+
var obj = &corev1.ConfigMap{}
63+
AccountsConfigMap.DeepCopyInto(obj)
5964
return obj
6065
}
6166

pkg/meshsync/meshsync.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package meshsync
22

33
import (
44
mesheryv1alpha1 "github.com/layer5io/meshery-operator/api/v1alpha1"
5+
v1 "k8s.io/api/apps/v1"
56
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
67
runtime "k8s.io/apimachinery/pkg/runtime"
78
)
@@ -22,7 +23,8 @@ func GetObjects(m *mesheryv1alpha1.MeshSync) map[string]Object {
2223
}
2324

2425
func getServerObject(namespace, name string, replicas int32, url string) Object {
25-
obj := Deployment
26+
var obj = &v1.Deployment{}
27+
Deployment.DeepCopyInto(obj)
2628
obj.ObjectMeta.Namespace = namespace
2729
obj.ObjectMeta.Name = name
2830
obj.Spec.Replicas = &replicas

0 commit comments

Comments
 (0)