We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f498e commit 25935eeCopy full SHA for 25935ee
.changelog/109.txt
@@ -0,0 +1,3 @@
1
+```release-note:bug
2
+`kimup-controller` - Now the application restart if the kubernetes watch connection is lost.
3
+```
cmd/kimup/main.go
@@ -135,6 +135,10 @@ func main() {
135
136
case "DELETED":
137
cleanTriggers(&event.Value)
138
+ case "ERROR":
139
+ log.Error("Error watching events from kubernetes")
140
+ // exit the program
141
+ c <- syscall.SIGINT
142
}
143
144
0 commit comments