From f8565482d32402ed6e1f99fdd1b155ccf4c61de5 Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Thu, 2 May 2024 12:00:35 +0200 Subject: [PATCH] traefik nfs --- infrastructure/03-traefik/base/deployment.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/infrastructure/03-traefik/base/deployment.yaml b/infrastructure/03-traefik/base/deployment.yaml index cd7adca..9c6f8c2 100644 --- a/infrastructure/03-traefik/base/deployment.yaml +++ b/infrastructure/03-traefik/base/deployment.yaml @@ -133,13 +133,13 @@ spec: readOnlyRootFilesystem: true volumeMounts: - mountPath: /certs - name: traefik-pvc + name: traefik subPath: certs - mountPath: /data - name: traefik-pvc + name: traefik subPath: data - mountPath: /tmp - name: traefik-pvc + name: traefik subPath: tmp securityContext: fsGroupChangePolicy: OnRootMismatch @@ -149,7 +149,12 @@ spec: serviceAccountName: traefik terminationGracePeriodSeconds: 60 volumes: - - name: traefik-pvc - persistentVolumeClaim: - claimName: traefik-pvc + #- name: traefik + # persistentVolumeClaim: + # claimName: traefik-pvc + - name: traefik + nfs: + server: 192.168.178.100 + path: /traefik + readOnly: false