From 60968fd0ea2c0b35c64fd049c25fe3122f1c935e Mon Sep 17 00:00:00 2001 From: Matt Reeves Date: Sat, 6 Jul 2024 10:02:59 -0400 Subject: [PATCH] rm staging --- .../staging/local-mafyuh-com.yaml | 15 ------------- .../issuers/letsencrypt-staging.yaml | 21 ------------------- storage/volumes/nas-pv.yaml | 13 ------------ storage/volumes/nas-pvc.yaml | 11 ---------- 4 files changed, 60 deletions(-) delete mode 100644 cluster/apps/production/cert-manager/certificates/staging/local-mafyuh-com.yaml delete mode 100644 cluster/apps/production/cert-manager/issuers/letsencrypt-staging.yaml delete mode 100644 storage/volumes/nas-pv.yaml delete mode 100644 storage/volumes/nas-pvc.yaml diff --git a/cluster/apps/production/cert-manager/certificates/staging/local-mafyuh-com.yaml b/cluster/apps/production/cert-manager/certificates/staging/local-mafyuh-com.yaml deleted file mode 100644 index bbf13c8..0000000 --- a/cluster/apps/production/cert-manager/certificates/staging/local-mafyuh-com.yaml +++ /dev/null @@ -1,15 +0,0 @@ ---- -apiVersion: cert-manager.io/v1 -kind: Certificate -metadata: - name: local-mafyuh-com - namespace: default -spec: - secretName: local-mafyuh-com-staging-tls - issuerRef: - name: letsencrypt-staging - kind: ClusterIssuer - commonName: "*.local.mafyuh.com" - dnsNames: - - "local.mafyuh.com" - - "*.local.mafyuh.com" \ No newline at end of file diff --git a/cluster/apps/production/cert-manager/issuers/letsencrypt-staging.yaml b/cluster/apps/production/cert-manager/issuers/letsencrypt-staging.yaml deleted file mode 100644 index ebf82e0..0000000 --- a/cluster/apps/production/cert-manager/issuers/letsencrypt-staging.yaml +++ /dev/null @@ -1,21 +0,0 @@ ---- -apiVersion: cert-manager.io/v1 -kind: ClusterIssuer -metadata: - name: letsencrypt-staging -spec: - acme: - server: https://acme-staging-v02.api.letsencrypt.org/directory - email: matt@mafyuh.dev - privateKeySecretRef: - name: letsencrypt-staging - solvers: - - dns01: - cloudflare: - email: matt@mafyuh.dev - apiTokenSecretRef: - name: cloudflare-token-secret - key: cloudflare-token - selector: - dnsZones: - - "mafyuh.com" \ No newline at end of file diff --git a/storage/volumes/nas-pv.yaml b/storage/volumes/nas-pv.yaml deleted file mode 100644 index 9de2668..0000000 --- a/storage/volumes/nas-pv.yaml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: v1 -kind: PersistentVolume -metadata: - name: nas-pv -spec: - capacity: - storage: 12Ti - accessModes: - - ReadWriteMany - nfs: - path: /mnt/thePool/thePoolShare - server: 10.0.0.10 - persistentVolumeReclaimPolicy: Retain diff --git a/storage/volumes/nas-pvc.yaml b/storage/volumes/nas-pvc.yaml deleted file mode 100644 index 1946a68..0000000 --- a/storage/volumes/nas-pvc.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: nas-pvc -spec: - accessModes: - - ReadWriteMany - resources: - requests: - storage: 30Gi - volumeName: nas-pv