Skip to content

Commit c094c06

Browse files
committed
Minor update
1 parent f961bf9 commit c094c06

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

example/kubernetes-with-auto-discovery/gatus.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ spec:
8181
protocol: TCP
8282
resources:
8383
limits:
84-
cpu: 200m
85-
memory: 50M
84+
cpu: 250m
85+
memory: 100M
8686
requests:
8787
cpu: 50m
88-
memory: 20M
88+
memory: 30M
8989
volumeMounts:
9090
- mountPath: /config
9191
name: gatus-config

example/kubernetes/gatus.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ spec:
5959
protocol: TCP
6060
resources:
6161
limits:
62-
cpu: 200m
63-
memory: 50M
62+
cpu: 250m
63+
memory: 100M
6464
requests:
6565
cpu: 50m
66-
memory: 20M
66+
memory: 30M
6767
volumeMounts:
6868
- mountPath: /config
6969
name: gatus-config

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func main() {
2222
signal.Notify(sig, os.Interrupt, syscall.SIGTERM)
2323
go func() {
2424
<-sig
25-
log.Println("Received interruption signal, attempting to gracefully shut down")
25+
log.Println("Received termination signal, attempting to gracefully shut down")
2626
controller.Shutdown()
2727
err := storage.Get().Save()
2828
if err != nil {

0 commit comments

Comments
 (0)