From 46278e864acea2cdb5f1ce7e738f230f551dad3a Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Sat, 20 Dec 2025 16:39:38 +0100 Subject: [PATCH] chore(argocd): Disable Piraeus --- k8s-peterg/argocd/applications-wheatley.yaml | 38 +++++------ k8s-wheatley/busybox.yaml | 67 -------------------- 2 files changed, 19 insertions(+), 86 deletions(-) delete mode 100644 k8s-wheatley/busybox.yaml diff --git a/k8s-peterg/argocd/applications-wheatley.yaml b/k8s-peterg/argocd/applications-wheatley.yaml index 9accf98..326970c 100644 --- a/k8s-peterg/argocd/applications-wheatley.yaml +++ b/k8s-peterg/argocd/applications-wheatley.yaml @@ -38,25 +38,25 @@ spec: selfHeal: true syncOptions: - ServerSideApply=true ---- -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: piraeus-datastore - namespace: argocd -spec: - project: default - source: - repoURL: https://code.peterg.nl/wheatley/kubernetes.git - path: k8s-wheatley/datastore - targetRevision: HEAD - destination: - server: https://10.13.37.10:6443 - namespace: piraeus-datastore - syncPolicy: - automated: - prune: true - selfHeal: true +# --- +# apiVersion: argoproj.io/v1alpha1 +# kind: Application +# metadata: +# name: piraeus-datastore +# namespace: argocd +# spec: +# project: default +# source: +# repoURL: https://code.peterg.nl/wheatley/kubernetes.git +# path: k8s-wheatley/datastore +# targetRevision: HEAD +# destination: +# server: https://10.13.37.10:6443 +# namespace: piraeus-datastore +# syncPolicy: +# automated: +# prune: true +# selfHeal: true --- apiVersion: argoproj.io/v1alpha1 kind: Application diff --git a/k8s-wheatley/busybox.yaml b/k8s-wheatley/busybox.yaml deleted file mode 100644 index f5fc753..0000000 --- a/k8s-wheatley/busybox.yaml +++ /dev/null @@ -1,67 +0,0 @@ ---- -apiVersion: v1 -kind: Pod -metadata: - name: busybox - namespace: default -spec: - containers: - - name: busybox - image: busybox - imagePullPolicy: IfNotPresent - command: - - sleep - - "3600" - securityContext: - allowPrivilegeEscalation: false - capabilities: - drop: - - "ALL" - volumeMounts: - - mountPath: /shared/media - name: media - volumes: - - name: media - persistentVolumeClaim: - claimName: media - securityContext: - runAsGroup: 1000 - runAsUser: 1000 - runAsNonRoot: true - seccompProfile: - type: RuntimeDefault ---- -apiVersion: v1 -kind: PersistentVolume -metadata: - name: media-nfs - namespace: default -spec: - capacity: - storage: 40Ti - accessModes: - - ReadWriteMany - nfs: - server: 10.0.69.10 - path: /tank/media - mountOptions: - - vers=4.1 - - rsize=1048576 - - wsize=1048576 - - hard - - timeo=600 - - noatime - persistentVolumeReclaimPolicy: Retain ---- -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: media - namespace: default -spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: 40Ti - volumeName: media-nfs