Skip to content

Commit

Permalink
Fix parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
enolfc committed Aug 21, 2024
1 parent 258ccf6 commit cc0c16a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions notebooks-accounting/templates/accounting-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ data:
{{- else }}
# site=EGI-NOTEBOOKS
{{- end }}
{{- if ((.Values.accounting).cloudType }}
{{- if ((.Values.accounting).cloudType) }}
cloud_type={{ .Values.accounting.cloudType }}
{{- else }}
# cloud_type=EGI Notebooks
{{- end }}
{{- if ((.Values.accounting).service }}
{{- if ((.Values.accounting).service) }}
cloud_compute_service={{ .Values.accounting.service }}
{{- else }}
# cloud_compute_service=
{{- end }}
{{- if (.Values.debug) }}
verbose=1
{{- end }}
{{- if ((.Values.storage).apelSpool }}
{{- if ((.Values.storage).apelSpool) }}
apel_spool={{ .Values.storage.apelSpool }}
{{- else }}
# apel_spool=
{{- end }}
{{- if ((.Values.storage).notebooksDb }}
{{- if ((.Values.storage).notebooksDb) }}
notebooks_db={{ .Values.storage.notebooksDb }}
{{- else }}
# notebooks_db=
Expand Down Expand Up @@ -79,3 +79,4 @@ data:
{{- range $key, $val := .Values.eosc.flavorMetrics }}
{{ $key }}={{ $val }}
{{- end }}
{{- end }}

0 comments on commit cc0c16a

Please sign in to comment.