From 126ba367c89cc04a9ee230efdd2762666d4dff67 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Date: Mon, 7 Dec 2020 22:51:19 +0500 Subject: [PATCH] Add test values yaml file --- test/nextcloud/2.3.2/test_values.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/nextcloud/2.3.2/test_values.yaml diff --git a/test/nextcloud/2.3.2/test_values.yaml b/test/nextcloud/2.3.2/test_values.yaml new file mode 100644 index 0000000000..8a8958bc51 --- /dev/null +++ b/test/nextcloud/2.3.2/test_values.yaml @@ -0,0 +1,25 @@ +## Official nextcloud image version +## ref: https://hub.docker.com/r/library/nextcloud/tags/ +## +image: + repository: nextcloud + tag: 19.0.3-apache + pullPolicy: IfNotPresent + +nextcloud: + host: nextcloud.kube.home + username: admin + password: changeme + datadir: /var/www/html/data + strategy: "Recreate" + +postgresql: + backupVolume: + mountPath: "/postgres_backups" + datasetName: "ix-postgres_backups" + dataVolume: + mountPath: "/var/lib/postgresql/data" + datasetName: "ix-postgres_data" + +service: + nodePort: 9000