Housekeeping
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2023-05-13 18:09:23 +02:00
parent a20ae22090
commit dd0e278094
3 changed files with 8 additions and 9 deletions

View File

@ -6,10 +6,10 @@ 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: v0.4.0
version: v0.5.0
# 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.4.0"
appVersion: "v0.5.0"

View File

@ -1,9 +1,9 @@
{{- if not .Values.jsonserver.data.existingConfigMap }}
{{- if not .Values.seedData.existingConfigMap }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-configmap
data:
db.json: |
{{ include "common.tplvalues.render" ( dict "value" .Values.jsonserver.data.configInline "context" $) | indent 4 }}
{{ include "common.tplvalues.render" ( dict "value" .Values.seedData.configInline "context" $) | indent 4 }}
{{- end -}}

View File

@ -1,10 +1,9 @@
# Default values for json-server.
jsonserver:
data:
# Not implemented yet
# existingConfigMap: ""
configInline: {}
seedData:
# Not implemented yet
# existingConfigMap: ""
configInline: {}
replicaCount: 1