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:
MacLikorne
2022-02-02 09:55:08 +01:00
committed by GitHub
parent 14d3e7955d
commit dbe6e87189
47 changed files with 572 additions and 2660 deletions

View File

@@ -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 -%}

View File

@@ -501,6 +501,7 @@ service:
## MySQL Service type
##
type: {% if publicly_accessible -%} LoadBalancer {% else -%} ClusterIP {% endif %}
name: {{ service_name }}
## MySQL Service port
##

View File

@@ -249,6 +249,7 @@ ldap:
service:
## PosgresSQL service type
type: {% if publicly_accessible -%} LoadBalancer {% else -%} ClusterIP {% endif %}
name: {{ service_name }}
# clusterIP: None
port: 5432

View File

@@ -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.