Added Mealie to new cluster

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2024-04-06 15:00:53 +01:00
parent 807054af80
commit 14221c8d08
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
2 changed files with 54 additions and 25 deletions

View File

@ -26,3 +26,33 @@ spec:
kind: Deployment kind: Deployment
jqPathExpressions: jqPathExpressions:
- .spec.template.spec.containers[]?.image - .spec.template.spec.containers[]?.image
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: cluster-fun-mealie
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: cluster.fun
destination:
namespace: mealie
name: cluster-fun (v2)
source:
path: manifests/mealie
repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git"
targetRevision: HEAD
syncPolicy:
automated: {}
syncOptions:
- CreateNamespace=true
ignoreDifferences:
- kind: Secret
jsonPointers:
- /data
- group: apps
kind: Deployment
jqPathExpressions:
- .spec.template.spec.containers[]?.image
---

View File

@ -1,27 +1,27 @@
apiVersion: v1 # apiVersion: v1
kind: PersistentVolume # kind: PersistentVolume
metadata: # metadata:
annotations: # annotations:
pv.kubernetes.io/provisioned-by: csi.scaleway.com # pv.kubernetes.io/provisioned-by: csi.scaleway.com
finalizers: # finalizers:
- kubernetes.io/pv-protection # - kubernetes.io/pv-protection
- external-attacher/csi-scaleway-com # - external-attacher/csi-scaleway-com
name: pvc-afe7fbb6-1f5a-4169-bad1-c9d43752ee7a # name: pvc-afe7fbb6-1f5a-4169-bad1-c9d43752ee7a
spec: # spec:
accessModes: # accessModes:
- ReadWriteOnce # - ReadWriteOnce
capacity: # capacity:
storage: 2Gi # storage: 2Gi
csi: # csi:
driver: csi.scaleway.com # driver: csi.scaleway.com
fsType: ext4 # fsType: ext4
volumeAttributes: # volumeAttributes:
encrypted: "false" # encrypted: "false"
storage.kubernetes.io/csiProvisionerIdentity: 1646426415842-8081-csi.scaleway.com # storage.kubernetes.io/csiProvisionerIdentity: 1646426415842-8081-csi.scaleway.com
volumeHandle: fr-par-1/efbe7dc1-4660-4db8-a3b4-42114075a318 # volumeHandle: fr-par-1/efbe7dc1-4660-4db8-a3b4-42114075a318
persistentVolumeReclaimPolicy: Retain # persistentVolumeReclaimPolicy: Retain
storageClassName: scw-bssd # storageClassName: scw-bssd
volumeMode: Filesystem # volumeMode: Filesystem
--- ---
kind: PersistentVolumeClaim kind: PersistentVolumeClaim
@ -35,5 +35,4 @@ spec:
resources: resources:
requests: requests:
storage: 2Gi storage: 2Gi
volumeName: pvc-afe7fbb6-1f5a-4169-bad1-c9d43752ee7a
--- ---