diff --git a/example/kubernetes-with-auto-discovery/gatus.yaml b/example/kubernetes-with-auto-discovery/gatus.yaml index d2bfdfb2..df0d0ce5 100644 --- a/example/kubernetes-with-auto-discovery/gatus.yaml +++ b/example/kubernetes-with-auto-discovery/gatus.yaml @@ -81,11 +81,11 @@ spec: protocol: TCP resources: limits: - cpu: 200m - memory: 50M + cpu: 250m + memory: 100M requests: cpu: 50m - memory: 20M + memory: 30M volumeMounts: - mountPath: /config name: gatus-config diff --git a/example/kubernetes/gatus.yaml b/example/kubernetes/gatus.yaml index 1511e113..489e0dba 100644 --- a/example/kubernetes/gatus.yaml +++ b/example/kubernetes/gatus.yaml @@ -59,11 +59,11 @@ spec: protocol: TCP resources: limits: - cpu: 200m - memory: 50M + cpu: 250m + memory: 100M requests: cpu: 50m - memory: 20M + memory: 30M volumeMounts: - mountPath: /config name: gatus-config diff --git a/main.go b/main.go index 4ffaec8d..b9d87758 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ func main() { signal.Notify(sig, os.Interrupt, syscall.SIGTERM) go func() { <-sig - log.Println("Received interruption signal, attempting to gracefully shut down") + log.Println("Received termination signal, attempting to gracefully shut down") controller.Shutdown() err := storage.Get().Save() if err != nil {