Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
The ups broker should log to stderr instead of to files only (#1953)
Browse files Browse the repository at this point in the history
  • Loading branch information
luksa authored and n3wscott committed Apr 18, 2018
1 parent 9e85ee0 commit ad6e38d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/ups-broker/templates/broker-deployment.yaml
Expand Up @@ -27,6 +27,9 @@ spec:
args:
- --port
- "8080"
{{- if .Values.alsoLogToStdErr}}
- --alsologtostderr
{{- end}}
{{- if .Values.tls.cert}}
- --tlsCert
- "{{ .Values.tls.cert }}"
Expand Down
2 changes: 2 additions & 0 deletions charts/ups-broker/values.yaml
Expand Up @@ -3,6 +3,8 @@
image: quay.io/kubernetes-service-catalog/user-broker:v0.1.14
# ImagePullPolicy; valid values are "IfNotPresent", "Never", and "Always"
imagePullPolicy: Always
# Whether the broker should also log to stderr instead of to files only
alsoLogToStdErr: true
# Certificate details to use for TLS. Leave blank to not use TLS
tls:
# base-64 encoded PEM data for the TLS certificate
Expand Down

0 comments on commit ad6e38d

Please sign in to comment.