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,30 @@
{{- include "nplus.init" $ -}}
{{- if ( include "nplus.ingressEnabled" . ) }}
{{- $provider := (.this.ingress).provider -}}
{{- if eq $provider "ingress" }}
{{- include "nplus.ingress" (list . .component.fullName) | nindent 0 }}
- path: {{ .this.ingress.contextPath }}
pathType: Prefix
backend:
service:
name: {{ .component.fullName }}
port:
name: {{ include "nplus.backendProtocol" . }}
{{- else if eq $provider "gateway" }}
{{- include "nplus.gatewayRoute" (list . .component.fullName) | nindent 0 }}
- matches:
- path:
type: PathPrefix
value: {{ .this.ingress.contextPath }}
backendRefs:
- name: {{ .component.fullName }}
port: {{ include "nplus.backendPort" . }}
{{- else }}{{/* if provider */}}
{{- fail (printf "unsupported ingress provider: %s" $provider) -}}
{{- end }}{{/* if provider */}}
{{- else }}{{/* if ( include "nplus.ingressEnabled" . ) */}}
# kind: ingress
# Not Generating any Ingress for {{ .component.fullName }} as
# Ingress = {{ .this.ingress }}
# Service = {{ .this.service }}
{{- end }}{{/* if ( include "nplus.ingressEnabled" . ) else */}}

View File

@@ -0,0 +1,39 @@
{{- include "nplus.init" $ -}}
{{- if ((.this.security).cni).createNetworkPolicy }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: {{ .component.fullName }}
{{- if .this.utils.includeNamespace }}
namespace: {{ .Release.Namespace }}
{{- end }}
spec:
podSelector:
matchLabels:
{{- include "nplus.selectorLabels" . | nindent 6 }}
ingress:
{{- if ( include "nplus.ingressEnabled" . ) }}
{{- include "nplus.networkpolicy.allowFromIngress" . | nindent 2 }}
{{- end }}
- from:
- ipBlock:
cidr: {{ ((.this.security).cni).adminIpRange | quote }}
{{- if ((.this.security).cni).excludeUnusedPorts }}
ports:
{{- include "nplus.defaultPolicyPorts" . | nindent 4 }}
{{- end }}
policyTypes:
- Egress
- Ingress
egress:
# -- Access DNS
- ports:
- protocol: TCP
port: 53
- protocol: UDP
port: 53
{{- end }}{{/* if ((.this.security).cni).createNetworkPolicy */}}

View File

@@ -0,0 +1,2 @@
{{- include "nplus.init" $ -}}
{{- include "nplus.podDisruptionBudget" . -}}

View File

@@ -0,0 +1,32 @@
{{- include "nplus.init" $ -}}
apiVersion: v1
kind: Service
metadata:
{{- if .this.utils.includeNamespace }}
namespace: {{ .Release.Namespace }}
{{- end }}
name: {{ .component.fullName }}
labels:
{{- include "nplus.instanceLabels" . | nindent 4 }}
annotations:
{{- include "nplus.annotations" . | nindent 4 }}
{{- include "nplus.securityAnnotations" . | nindent 4 }}
spec:
# this is a "headless service", no cluster IP is defined
# as none of the internal components need to access this service,
# access is purely through an ingress if desired.
type: ClusterIP
clusterIP: None
ports:
{{- include "nplus.defaultServicePorts" . | nindent 4 }}
selector:
{{- if eq .this.service.selector "component" }}
{{- include "nplus.selectorLabels" . | nindent 4 }}
{{- else if eq .this.service.selector "type" }}{{/* if eq .this.service.selector "component" else if eq .this.service.selector "type" */}}
{{- include "nplus.selectorLabelsNc" . | nindent 4 }}
{{- else }}{{/* if eq .this.service.selector "component" */}}
{{- fail (printf "Unknown Service Selector Type: %s - must be component or type" .this.service.selector) }}
{{- end }}{{/* if eq .this.service.selector "component" else */}}

View File

@@ -0,0 +1,94 @@
{{- include "nplus.init" $ -}}
{{- if not ((.this.storage).conf).name -}}
{{ fail "conf name must be set" }}
{{- end -}}
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: {{ .component.fullName }}
{{- if .this.utils.includeNamespace }}
namespace: {{ .Release.Namespace }}
{{- end }}
labels:
{{- include "nplus.instanceLabels" . | nindent 4 }}
annotations:
{{- include "nplus.annotations" . | nindent 4 }}
{{- include "nplus.securityAnnotations" . | nindent 4 }}
spec:
serviceName: {{ .component.fullName }}
selector:
matchLabels:
{{- include "nplus.selectorLabels" . | nindent 6 }}
replicas: 1
podManagementPolicy: OrderedReady
updateStrategy:
type: RollingUpdate
minReadySeconds: 30
template:
metadata:
labels:
{{- include "nplus.templateLabels" . | nindent 8 }}
annotations:
{{- include "nplus.templateAnnotations" . | nindent 8 }}
{{- include "nplus.securityAnnotations" . | nindent 8 }}
spec:
{{- include "nplus.imagePullSecrets" . | nindent 6 }}
{{- include "nplus.podSecurityContext" . | nindent 6 }}
{{- include "nplus.securityIllumioReadinessGates" . | nindent 6 }}
{{- include "nplus.terminationGracePeriodSeconds" . | nindent 6 }}
containers:
- name: dav
image: {{ include "nplus.image" (dict "global" .Values.global "image" .Values.image) }}
imagePullPolicy: {{ include "nplus.imagePullPolicy" .Values.image }}
{{- include "nplus.containerSecurityContext" . | nindent 8 }}
command: [ "/nplus/davserver" ]
volumeMounts:
- name: conf
mountPath: /webdav/conf
- name: ptemp
mountPath: /webdav/ptemp
{{- include "nplus.resources" . | nindent 8 }}
env:
# -- DAV Connection Credentials
{{- include "nplus.envCredentials" (list
"DAV_USER" $.this.account
"DAV_PASSWORD" $.this.password
$.this.secret
) | nindent 10 }}
- name: DAV_ROOT
value: "/dav"
ports:
{{- include "nplus.defaultContainerPorts" . | nindent 8 }}
{{- if .Values.probes }}
# -- custom probes as defined in values
{{- toYaml .Values.probes | nindent 8 }}
{{- else }}{{/* if .Values.probes */}}
# -- default nplus probes, can be overridden by probes key in values
readinessProbe:
tcpSocket:
port: {{ include "nplus.backendPort" . }}
initialDelaySeconds: 15
periodSeconds: 10
livenessProbe:
tcpSocket:
port: {{ include "nplus.backendPort" . }}
initialDelaySeconds: 15
periodSeconds: 10
{{- end }}{{/* .Values.probes else */}}
volumes:
- name: conf
persistentVolumeClaim:
claimName: conf
- name: ptemp
persistentVolumeClaim:
claimName: ptemp