Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions kubernetes/envs/commons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ releases:

# EXTRA-OPERATOR
strimzi: 0.33.2
mongodb: 0.9.0

# TOOLS
nexus-pg: 16.1.2
Expand Down Expand Up @@ -54,6 +55,7 @@ releases:

# EXTRA-OPERATOR
strimzi: true
mongodb: true

# TOOLS
nexus-pg: true
Expand Down
9 changes: 8 additions & 1 deletion kubernetes/helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,13 @@ repositories:
- name: jetstack
url: https://charts.jetstack.io

- name: mongodb
url: https://mongodb.github.io/helm-charts

- name: sonatype
url: https://sonatype.github.io/helm3-charts/


releases:
# Storage
- name: storage-snapshot-controller
Expand Down Expand Up @@ -146,7 +150,10 @@ releases:
chart: strimzi/strimzi-kafka-operator
<<: *default

# Tools
- name: mongodb
namespace: extra-operator
chart: mongodb/community-operator

- name: nexus-pg
namespace: mbcaas-tools
chart: bitnami/postgresql
Expand Down
17 changes: 10 additions & 7 deletions kubernetes/modules/error-pages.gotmpl
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
---
image:
tag: {{ .Values.apps.version.errorPages}}
tag: {{ .Values.apps.version.errorPages }}

env:
TEMPLATE_NAME: connection
SHOW_DETAILS: "false"
ingress:
main:
enabled: true
primary: true
annotations:
{{ toYaml .Values.helper.ingress.annotations.common | nindent 6 }}
hosts:
- host:
- host: {{ .Values.dns.errorPages }}
paths:
- path: "/"
- path: /
pathType: Prefix
tls:
- hosts:
- {{ .Values.dns.errorPages}}
secretName: mbcaas.com-cert
tls:
- secretName: mbcaas.com-cert
hosts:
- {{ .Values.dns.errorPages }}

resources:
{{ toYaml .Values.quotas.errorpages | nindent 2}}
2 changes: 1 addition & 1 deletion kubernetes/modules/keycloak.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ingress:
enabled: true
hostname: {{ .Values.dns.keycloak }}
annotations:
{{ toYaml .Values.helper.ingress.annotations.common | nindent 6 }}
{{ toYaml .Values.helper.ingress.annotations.common | nindent }}


postgresql:
Expand Down
2 changes: 2 additions & 0 deletions kubernetes/modules/mongodb.gotmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
operator:
watchNamespace: "*"
Loading