Files
kubernetes_monitoring/templates/Ingress-Multi.yaml
Jon 65534660dd feat(alert_manager): added config for ingress
!5 nofusscomputing/infrastructure/configuration-management/inventory-production!3
2023-11-19 18:00:22 +09:30

15 lines
437 B
YAML

{{ 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 }}