diff --git a/customers/overlays/vr/test/kustomization.yaml b/customers/overlays/vr/test/kustomization.yaml index 970167b..992c5ae 100644 --- a/customers/overlays/vr/test/kustomization.yaml +++ b/customers/overlays/vr/test/kustomization.yaml @@ -6,6 +6,5 @@ patchesStrategicMerge: - nextcloud-deployment.yml - nextcloud-ingress.yml - nextcloud-namespace.yml - - nextcloud-pvc.yml - nextcloud-service.yml - s3-service.yml diff --git a/customers/overlays/vr/test/nextcloud-deployment.yml b/customers/overlays/vr/test/nextcloud-deployment.yml index b05214f..94652aa 100644 --- a/customers/overlays/vr/test/nextcloud-deployment.yml +++ b/customers/overlays/vr/test/nextcloud-deployment.yml @@ -1,34 +1,11 @@ --- kind: Deployment apiVersion: apps/v1 -metadata: - name: vr-node - namespace: vr - labels: - app: vr-node spec: - replicas: 1 - selector: - matchLabels: - app: vr-node template: - metadata: - creationTimestamp: - labels: - app: vr-node spec: - volumes: - - name: server-storage - persistentVolumeClaim: - claimName: vr-shared-storage-claim containers: - - name: vr - image: docker.sunet.se/drive/nextcloud-custom:25.0.3.3-4 - volumeMounts: - - name: server-storage - mountPath: /var/www/html - subPath: server-data - env: + - env: - name: GSS_MASTER_URL value: "https://drive.test.sunet.se" - name: LOOKUP_SERVER diff --git a/customers/overlays/vr/test/nextcloud-pvc.yml b/customers/overlays/vr/test/nextcloud-pvc.yml deleted file mode 100644 index e6251e9..0000000 --- a/customers/overlays/vr/test/nextcloud-pvc.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: vr-shared-storage-claim - namespace: vr - annotations: - volume.beta.kubernetes.io/storage-class: openebs-jiva-3repl -spec: - storageClassName: openebs-jiva-3repl - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 5G