Skip to content

Commit

Permalink
Merge pull request #2584 from NCEAS/feature-2562-helm-1.0.0-release
Browse files Browse the repository at this point in the history
helm 1.0.2 release
  • Loading branch information
robyngit authored Dec 11, 2024
2 parents 7906ae2 + e359316 commit c7c7a1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.1
version: 1.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions helm/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ MetacatUI.AppConfig = {
{{- $ignoreList := list "enabled" "theme" "root" "baseUrl" "metacatContext" "d1CNBaseUrl" -}}
{{- range $key, $value := .Values.appConfig }}
{{- if not (has $key $ignoreList) }}
{{- if regexFind "new\\s+[A-Za-z]+\\s*\\(" (printf "%v" $value) }}
{{- if regexFind "new\\s+[A-Za-z]+\\s*\\(" (printf "%v" $value) -}}
{{/* don't put quotes around JS object declarations -- e.g.: new Date(... */}}
{{- $key | nindent 4 }}: {{ $value }}
{{- $key | nindent 4 }}: {{ $value }},
{{- else if eq (typeOf $value) "string" }}
{{- $key | nindent 4 }}: {{ $value | quote }},
{{- else }}
Expand Down

0 comments on commit c7c7a1f

Please sign in to comment.