From 7c3b5246a2f9aaa91ba76a5a8d9e633db22c9b1b Mon Sep 17 00:00:00 2001 From: auricom Date: Thu, 1 Apr 2021 11:40:43 +0200 Subject: [PATCH] remove archivebox --- cluster/data/archivebox.yaml | 104 ----------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 cluster/data/archivebox.yaml diff --git a/cluster/data/archivebox.yaml b/cluster/data/archivebox.yaml deleted file mode 100644 index 8ff818524..000000000 --- a/cluster/data/archivebox.yaml +++ /dev/null @@ -1,104 +0,0 @@ ---- -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - name: archivebox-config - namespace: data - annotations: - fluxcd.io/ignore: "true" -spec: - storageClassName: longhorn-backups - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 2Gi ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: archivebox - namespace: data - annotations: - fluxcd.io/ignore: "true" -spec: - selector: - matchLabels: - app: archivebox - replicas: 1 - strategy: - type: Recreate - template: - metadata: - labels: - app: archivebox - spec: - initContainers: - - name: init-archivebox - image: archivebox/archivebox:0.5 - args: ["init"] - volumeMounts: - - mountPath: /data - name: archivebox - containers: - - name: archivebox - args: ["server"] - image: archivebox/archivebox - ports: - - containerPort: 8000 - protocol: TCP - name: http - resources: - requests: - cpu: 50m - memory: 32Mi - volumeMounts: - - mountPath: /data - name: archivebox - restartPolicy: Always - volumes: - - name: archivebox - persistentVolumeClaim: - claimName: archivebox-config ---- -apiVersion: v1 -kind: Service -metadata: - name: archivebox - namespace: data - annotations: - fluxcd.io/ignore: "true" -spec: - ports: - - name: http - port: 8000 - selector: - app: archivebox - type: ClusterIP ---- -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - annotations: - kubernetes.io/ingress.class: "nginx" - fluxcd.io/ignore: "true" - labels: - app.kubernetes.io/instance: archivebox - app.kubernetes.io/name: archivebox - name: archivebox - namespace: data -spec: - tls: - - hosts: - - archivebox.domain - rules: - - host: archivebox.domain - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: archivebox - port: - number: 8000