Public Information

This commit is contained in:
2026-03-10 07:33:55 +01:00
commit 4c9519166e
499 changed files with 125937 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{{- include "nplus.init" $ -}}
{{- if and (eq .this.ingress.provider "gateway") (.this.ingress).domain }}
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: {{ .component.fullName }}
{{- if .this.utils.includeNamespace }}
namespace: {{ .Release.Namespace }}
{{- end }}
labels:
{{- include "nplus.instanceLabels" . | nindent 4 }}
annotations:
{{- include "nplus.argoWave" . | nindent 4 }}
{{- include "nplus.annotations" . | nindent 4 }}
{{- include "nplus.securityAnnotations" . | nindent 4 }}
spec:
gatewayClassName: {{ (.this.ingress).class }}
listeners:
- name: https
protocol: HTTPS
port: 443
hostname: {{ (.this.ingress).domain }}
tls:
mode: Terminate
certificateRefs:
- kind: Secret
name: {{ (.this.ingress).secret }}
allowedRoutes:
namespaces:
from: Same
{{- end }}