diff --git a/manifests/_apps/barcode-buddy.yaml b/manifests/_apps/barcode-buddy.yaml deleted file mode 100644 index b5bf0ca..0000000 --- a/manifests/_apps/barcode-buddy.yaml +++ /dev/null @@ -1,22 +0,0 @@ -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: barcode-buddy - namespace: argocd - finalizers: - - resources-finalizer.argocd.argoproj.io -spec: - project: cluster.fun - destination: - namespace: grocy - name: cluster-fun (scaleway) - source: - path: manifests/barcode-buddy - repoURL: "https://git.cluster.fun/AverageMarcus/cluster.fun.git" - targetRevision: HEAD - syncPolicy: - automated: {} - ignoreDifferences: - - kind: Secret - jsonPointers: - - /data diff --git a/manifests/_apps/grocy.yaml b/manifests/_apps/grocy.yaml deleted file mode 100644 index 92e082a..0000000 --- a/manifests/_apps/grocy.yaml +++ /dev/null @@ -1,55 +0,0 @@ -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: grocy - namespace: argocd - finalizers: - - resources-finalizer.argocd.argoproj.io -spec: - project: default - destination: - namespace: grocy - name: cluster-fun (scaleway) - source: - repoURL: https://k8s-at-home.com/charts/ - targetRevision: 6.3.1 - chart: grocy - helm: - values: | - image: - repository: "linuxserver/grocy" - tag: version-v3.0.1 - env: - TZ: Europe/London - ingress: - enabled: true - annotations: - cert-manager.io/cluster-issuer: letsencrypt - traefik.ingress.kubernetes.io/frontend-entry-points: http,https - traefik.ingress.kubernetes.io/redirect-entry-point: https - traefik.ingress.kubernetes.io/redirect-permanent: "true" - hosts: - - host: grocy.cluster.fun - paths: - - path: / - pathType: Prefix - tls: - - hosts: - - grocy.cluster.fun - secretName: grocy - persistence: - config: - enabled: true - probes: - startup: - spec: - initialDelaySeconds: 120 - - syncPolicy: - automated: {} - syncOptions: - - CreateNamespace=true - ignoreDifferences: - - kind: Secret - jsonPointers: - - /data diff --git a/manifests/barcode-buddy/barcode-buddy.yaml b/manifests/barcode-buddy/barcode-buddy.yaml deleted file mode 100644 index 5103f57..0000000 --- a/manifests/barcode-buddy/barcode-buddy.yaml +++ /dev/null @@ -1,83 +0,0 @@ -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: barcode-buddy - namespace: grocy -spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 1Gi ---- -apiVersion: v1 -kind: Service -metadata: - name: barcode-buddy - namespace: grocy -spec: - type: ClusterIP - ports: - - port: 80 - targetPort: web - name: web - selector: - app: barcode-buddy ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: barcode-buddy - namespace: grocy -spec: - replicas: 1 - selector: - matchLabels: - app: barcode-buddy - template: - metadata: - labels: - app: barcode-buddy - spec: - containers: - - name: web - image: f0rc3/barcodebuddy-docker:latest - imagePullPolicy: IfNotPresent - ports: - - containerPort: 80 - name: web - env: - - name: BBUDDY_EXTERNAL_GROCY_URL - value: barcode-buddy.cluster.fun - volumeMounts: - - mountPath: /config - name: storage - volumes: - - name: storage - persistentVolumeClaim: - claimName: barcode-buddy ---- -apiVersion: extensions/v1beta1 -kind: Ingress -metadata: - name: barcode-buddy - namespace: grocy - annotations: - cert-manager.io/cluster-issuer: letsencrypt - traefik.ingress.kubernetes.io/frontend-entry-points: http,https - traefik.ingress.kubernetes.io/redirect-entry-point: https - traefik.ingress.kubernetes.io/redirect-permanent: "true" -spec: - tls: - - hosts: - - barcode-buddy.cluster.fun - secretName: barcode-buddy-ingress - rules: - - host: barcode-buddy.cluster.fun - http: - paths: - - path: / - backend: - serviceName: barcode-buddy - servicePort: 80 -