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
f412d168
authored
2023-02-10 18:05:36 -0600
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add a secret that contains the default OS username/password.
1 parent
e67c2bc8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
charts/moqui/templates/moqui.yaml
charts/moqui/templates/secret.yaml
charts/moqui/values.yaml
charts/moqui/templates/moqui.yaml
View file @
f412d16
...
...
@@ -60,6 +60,8 @@ spec:
envFrom
:
-
configMapRef
:
name
:
{{
include "moqui.fullname" .
}}
-
secretRef
:
name
:
{{
include "moqui.fullname" .
}}
-opensearch
env
:
-
name
:
entity_ds_db_conf
value
:
'
postgres'
...
...
charts/moqui/templates/secret.yaml
View file @
f412d16
...
...
@@ -10,3 +10,12 @@ stringData:
entity_ds_password
:
{{
.Values.configMap.entity_ds_password
}}
{{
- end
}}
apiVersion
:
v1
kind
:
Secret
metadata
:
name
:
{{
include "moqui.fullname" .
}}
-opensearch
labels
:
{{
- include "moqui.labels" . | nindent 4
}}
stringData
:
elasticsearch_password
:
admin
...
...
charts/moqui/values.yaml
View file @
f412d16
...
...
@@ -13,6 +13,7 @@ configMap:
entity_ds_port
:
"
5432"
entity_ds_user
:
"
moqui"
entity_ds_password
:
"
iuqom"
elasticsearch_user
:
"
admin"
checkDsConnection
:
enabled
:
true
...
...
Please
register
or
sign in
to post a comment