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
e5badcb1
authored
2023-02-10 14:41:00 -0600
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix port quoting(int vs string).
1 parent
97dc3fc4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
charts/moqui/templates/stateful-set.yaml
charts/moqui/values.yaml
charts/moqui/templates/stateful-set.yaml
View file @
e5badcb
...
...
@@ -39,7 +39,7 @@ spec:
-
name
:
POSTGRES_USER
value
:
{{
include "moqui.entity_ds_user" .
}}
-
name
:
POSTGRES_PORT
value
:
{{
include "moqui.entity_ds_port" .
}}
value
:
{{
include "moqui.entity_ds_port" .
| quote
}}
command
:
-
bash
-
-cx
...
...
@@ -66,7 +66,7 @@ spec:
-
name
:
entity_ds_host
value
:
{{
include "moqui.entity_ds_host" .
}}
-
name
:
entity_ds_port
value
:
{{
include "moqui.entity_ds_port" .
}}
value
:
{{
include "moqui.entity_ds_port" .
| quote
}}
-
name
:
entity_ds_user
value
:
{{
include "moqui.entity_ds_user" .
}}
-
name
:
entity_ds_password
...
...
charts/moqui/values.yaml
View file @
e5badcb
...
...
@@ -8,7 +8,7 @@ configMap:
entity_ds_db_conf
:
"
postgres"
entity_ds_database
:
"
moqui"
entity_ds_host
:
external-postgres
entity_ds_port
:
5432
entity_ds_port
:
"
5432"
entity_ds_user
:
"
moqui"
entity_ds_password
:
"
iuqom"
...
...
Please
register
or
sign in
to post a comment