Skip to content

Commit

Permalink
Fix configmap to put in correct place on pod (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps authored Sep 19, 2022
1 parent 2b01b2b commit caf7cea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/flipt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: flipt
home: https://flipt.io
description: Flipt is an open source, self-hosted feature flag solution.
type: application
version: 0.8.0
version: 0.9.0
appVersion: "v1.11.0"
maintainers:
- name: Flipt
Expand Down
2 changes: 1 addition & 1 deletion charts/flipt/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
{{- include "flipt.labels" . | nindent 4 }}
data:
config.yml: |
default.yml: |
log:
level: WARN
Expand Down
3 changes: 2 additions & 1 deletion charts/flipt/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ spec:
protocol: TCP
volumeMounts:
- name: flipt-config
mountPath: /etc/flipt/config.yml
mountPath: /etc/flipt/config/default.yml
readOnly: true
subPath: default.yml
- name: flipt-data
mountPath: /var/opt/flipt
{{- if .Values.persistence.subPath }}
Expand Down

0 comments on commit caf7cea

Please sign in to comment.