Skip to content

Commit 6aa2e97

Browse files
Fix image version in monitor ds containers
1 parent dca28d8 commit 6aa2e97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/monitor/ds.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func CreateDaemonSet(cr *appv1alpha1.KubeSerial, monitorVersion string) *appsv1.
7979
},
8080
{
8181
Name: "device-monitor",
82-
Image: "janekbaraniewski/kubeserial-device-monitor:latest",
82+
Image: fmt.Sprintf("janekbaraniewski/kubeserial-device-monitor:%s", monitorVersion),
8383
Command: []string{"/bin/sh"},
8484
Args: []string{
8585
"-c",
@@ -111,7 +111,7 @@ func CreateDaemonSet(cr *appv1alpha1.KubeSerial, monitorVersion string) *appsv1.
111111
},
112112
},
113113
},
114-
ServiceAccountName: "kubeserial", // TODO: add separate ServiceAccount for monitor
114+
ServiceAccountName: "kubeserial",
115115
},
116116
},
117117
},

0 commit comments

Comments
 (0)