ci: quieter near

This commit is contained in:
Evan Gray 2022-10-27 01:47:49 +00:00 committed by Evan Gray
parent 5470ede7f7
commit 2dc4faa084
1 changed files with 6 additions and 2 deletions

View File

@ -32,10 +32,15 @@ spec:
containers:
- name: near-node
image: near-node
env:
# this still results in DEBUG logs from "stats", but `warn,stats=warn` didn't work
- name: RUST_LOG
value: warn
command:
- /bin/sh
- -c
- /tmp/start_node.sh
# because the above still left logs, redirecting stderr
- "/tmp/start_node.sh 2> /dev/null"
ports:
- containerPort: 3030
name: node
@ -57,6 +62,5 @@ spec:
port: 3030
periodSeconds: 1
initialDelaySeconds: 15
periodSeconds: 5
restartPolicy: Always