Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
moqui
/
k8s-moqui
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
270d7ac6
authored
2023-03-06 17:24:16 -0600
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add extraConfigMaps/extraSecrets options.
1 parent
332c7a5f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
charts/moqui/templates/config-map.yaml
charts/moqui/templates/secret.yaml
charts/moqui/values.yaml
charts/moqui/templates/config-map.yaml
View file @
270d7ac
...
...
@@ -6,3 +6,7 @@ metadata:
{{
- include "moqui.labels" . | nindent 4
}}
data
:
{{
.Values.configMap | toYaml | nindent 2
}}
{{
- range .Values.extraConfigMaps
}}
---
{{
. | toYaml
}}
{{
- end
}}
...
...
charts/moqui/templates/secret.yaml
View file @
270d7ac
...
...
@@ -19,4 +19,8 @@ metadata:
{{
- include "moqui.labels" . | nindent 4
}}
stringData
:
elasticsearch_password
:
admin
{{
- range .Values.extraSecrets
}}
---
{{
. | toYaml
}}
{{
- end
}}
...
...
charts/moqui/values.yaml
View file @
270d7ac
...
...
@@ -17,6 +17,9 @@ configMap:
extraEnvs
:
[]
extraConfigMaps
:
[]
extraSecrets
:
[]
persistence
:
db
:
enabled
:
true
...
...
Please
register
or
sign in
to post a comment