Skip to content

Commit

Permalink
add log flags
Browse files Browse the repository at this point in the history
  • Loading branch information
knightXun committed Mar 2, 2020
1 parent cdbc2ef commit 59b580f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kubernetes/helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
containerPort: {{ .Values.port.graphd.httpPort }}
- name: http2
containerPort: {{ .Values.port.graphd.http2Port }}
command: ["/usr/local/nebula/bin/nebula-graphd", "--flagfile=/usr/local/nebula/etc/nebula-graphd.conf"]
command: ["/usr/local/nebula/bin/nebula-graphd", "--flagfile=/usr/local/nebula/etc/nebula-graphd.conf", "--v=0", "--minloglevel=2"]
{{- if .Values.livenessProbe.graphd.Enable }}
livenessProbe:
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/helm/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
command:
- "/bin/bash"
- "-ecx"
- "exec /usr/local/nebula/bin/nebula-metad --flagfile=/usr/local/nebula/etc/nebula-metad.conf --local_ip=$(hostname -i)"
- "exec /usr/local/nebula/bin/nebula-metad --flagfile=/usr/local/nebula/etc/nebula-metad.conf --local_ip=$(hostname -i) --v=0 --minloglevel=2"
{{- if .Values.livenessProbe.graphd.Enable }}
livenessProbe:
httpGet:
Expand Down Expand Up @@ -139,7 +139,7 @@ spec:
command:
- "/bin/bash"
- "-ecx"
- "exec /usr/local/nebula/bin/nebula-storaged --flagfile=/usr/local/nebula/etc/nebula-storaged.conf --local_ip=$(hostname -i)"
- "exec /usr/local/nebula/bin/nebula-storaged --flagfile=/usr/local/nebula/etc/nebula-storaged.conf --local_ip=$(hostname -i) --v=0 --minloglevel=2"
{{- if .Values.livenessProbe.graphd.Enable }}
livenessProbe:
httpGet:
Expand Down

0 comments on commit 59b580f

Please sign in to comment.