Skip to content

Commit

Permalink
fix: apply suggestions from the PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo-cavazzi committed Apr 14, 2020
1 parent bdbf359 commit c1b8fac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion helm-chart/renku-ui/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
value: {{ required "templateRepository.ref must be specified, e.g., master" .Values.templatesRepository.ref | quote }}
{{- if .Values.maintenance }}
- name: MAINTENANCE
value: {{ .Values.maintenance | default (printf "true") | quote }}
value: {{ .Values.maintenance | default (printf "false") | quote }}
{{- end }}
livenessProbe:
httpGet:
Expand Down
3 changes: 2 additions & 1 deletion helm-chart/renku-ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ templatesRepository:
url: https://github.com/SwissDataScienceCenter/renku-project-template
ref: 0.1.9

# any string here will enable the maintenance page and be added on it as an info
# Any string here, other than 'false', will enable the maintenance page and be added on it as an info.
# Setting 'true' will display a standard message embedded in maintenace page.
maintenance: false

sentry:
Expand Down
3 changes: 1 addition & 2 deletions run-telepresence.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ tee > ./public/config.json << EOF
"SENTRY_URL": "${SENTRY_URL}",
"SENTRY_NAMESPACE": "${SENTRY_NAMESPACE}",
"RENKU_TEMPLATES_URL": "https://github.com/SwissDataScienceCenter/renku-project-template",
"RENKU_TEMPLATES_REF": "master",
"MAINTENANCE": "true"
"RENKU_TEMPLATES_REF": "master"
}
EOF

Expand Down

0 comments on commit c1b8fac

Please sign in to comment.