feat(alert_manager): added config for ingress

!5 nofusscomputing/infrastructure/configuration-management/inventory-production!3
This commit is contained in:
2023-11-19 18:00:22 +09:30
parent 593d73e4c6
commit 65534660dd
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{{ if .Values.nfc_monitoring.alert_manager.ingress.enabled | default "false" | bool -}}
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: alert_manager
namespace: "{{ .Values.nfc_monitoring.alert_manager.namespace }}"
annotations:
{{ toYaml $.Values.nfc_monitoring.alert_manager.ingress.annotations | nindent 4 }}
spec:
{{ toYaml $.Values.nfc_monitoring.alert_manager.ingress.spec | nindent 2 }}
{{ end }}