mirror of
https://github.com/jlengrand/engine.git
synced 2026-03-10 08:11:21 +00:00
fix(ENG-1068): normalize db service (#572)
* fix(ENG-1068): normalize db service * fix(ENG-1068): fix aws name sanitizer * fix(ENG-1068): optimize db tests * fix(ENG-1068): fix linter * fix(ENG-1068): add notes to helm freeze * fix(ENG-1068): refacto environment handling * fix(ENG-1068): fix ci * fix(ENG_1068): edit charts * fix(ENG_1068): fix name sanitizer for managed db * fix(ENG_1068): improve tests * fix(ENG_1068): fix test Co-authored-by: Romain GERARD <erebe@erebe.eu> Co-authored-by: Erèbe - Romain Gerard <github@erebe.eu>
This commit is contained in:
@@ -135,7 +135,7 @@ clusterDomain: cluster.local
|
||||
## Kubernetes service type
|
||||
service:
|
||||
## Specify an explicit service name.
|
||||
# name: svc-mongo
|
||||
name: {{ service_name }}
|
||||
## Provide any additional annotations which may be required.
|
||||
## The value is evaluated as a template, so, for example, the value can depend on .Release or .Chart
|
||||
{% if publicly_accessible -%}
|
||||
|
||||
@@ -501,6 +501,7 @@ service:
|
||||
## MySQL Service type
|
||||
##
|
||||
type: {% if publicly_accessible -%} LoadBalancer {% else -%} ClusterIP {% endif %}
|
||||
name: {{ service_name }}
|
||||
|
||||
## MySQL Service port
|
||||
##
|
||||
|
||||
@@ -249,6 +249,7 @@ ldap:
|
||||
service:
|
||||
## PosgresSQL service type
|
||||
type: {% if publicly_accessible -%} LoadBalancer {% else -%} ClusterIP {% endif %}
|
||||
name: {{ service_name }}
|
||||
# clusterIP: None
|
||||
port: 5432
|
||||
|
||||
|
||||
@@ -369,6 +369,7 @@ master:
|
||||
service:
|
||||
## Redis Master Service type
|
||||
type: {% if publicly_accessible -%} LoadBalancer {% else -%} ClusterIP {% endif %}
|
||||
name: {{ service_name }}
|
||||
port: 6379
|
||||
|
||||
## Specify the nodePort value for the LoadBalancer and NodePort service types.
|
||||
|
||||
Reference in New Issue
Block a user