We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcff533 commit eeb0d42Copy full SHA for eeb0d42
1 file changed
kubewatch/main.go
@@ -17,6 +17,7 @@
17
package main
18
19
import (
20
+ "github.com/devtron-labs/common-lib/securestore"
21
"log"
22
"os"
23
"os/signal"
@@ -25,6 +26,10 @@ import (
25
26
)
27
28
func main() {
29
+ err := securestore.SetEncryptionKey()
30
+ if err != nil {
31
+ log.Println("error in setting encryption key", "err", err)
32
+ }
33
app, err := InitializeApp()
34
if err != nil {
35
log.Panic(err)
0 commit comments