Bläddra i källkod

Update test values for plex/nextcloud/minio/ipfs charts

Waqar Ahmed 4 år sedan
förälder
incheckning
654aa908ca

+ 7 - 3
test/ipfs/1.0.1/test_values.yaml

@@ -18,6 +18,10 @@ service:
 environment:
 
 emptyDirVolumes: true
-
-ipfsDataHostPathEnabled: false
-ipfsStagingHostPathEnabled: false
+appVolumeMounts:
+  staging:
+    emptyDir: true
+    mountPath: "/export"
+  data:
+    emptyDir: true
+    mountPath: "/data/ipfs"

+ 8 - 2
test/ipfs/1.0.1/values.yaml

@@ -17,5 +17,11 @@ service:
 
 environment:
 
-ipfsDataHostPathEnabled: false
-ipfsStagingHostPathEnabled: false
+appVolumeMounts:
+  staging:
+    emptyDir: true
+    mountPath: "/export"
+  data:
+    emptyDir: true
+    mountPath: "/data/ipfs"
+

+ 4 - 0
test/minio/1.0.1/test_values.yaml

@@ -17,3 +17,7 @@ environment:
   ## Please refer for comprehensive list https://docs.minio.io/docs/minio-server-configuration-guide.html
 
 emptyDirVolumes: true
+appVolumeMounts:
+  export:
+    emptyDir: true
+    mountPath: "/export"

+ 5 - 0
test/minio/1.0.1/values.yaml

@@ -15,3 +15,8 @@ service:
 
 environment:
   ## Please refer for comprehensive list https://docs.minio.io/docs/minio-server-configuration-guide.html
+
+appVolumeMounts:
+  export:
+    emptyDir: true
+    mountPath: "/export"

+ 15 - 1
test/nextcloud/1.1.0/test_values.yaml

@@ -11,7 +11,8 @@ nextcloud:
   username: admin
   password: changeme
   datadir: /var/www/html/data
-  strategy: "Recreate"
+
+updateStrategy: "Recreate"
 
 postgresql:
   backupVolume:
@@ -26,3 +27,16 @@ service:
 
 emptyDirVolumes: true
 ixChartContext: {}
+
+appVolumeMounts:
+  nextcloud-data:
+    emptyDir: true
+    mountPath: "/var/www"
+
+postgresAppVolumeMounts:
+  postgres-data:
+    emptyDir: true
+    mountPath: "/var/lib/postgresql/data"
+  postgres-backup:
+    emptyDir: true
+    mountPath: "/postgres_backups"

+ 13 - 0
test/nextcloud/1.1.0/values.yaml

@@ -15,3 +15,16 @@ nextcloud:
 
 service:
   nodePort: 9001
+
+appVolumeMounts:
+  nextcloud-data:
+    emptyDir: true
+    mountPath: "/var/www"
+
+postgresAppVolumeMounts:
+  postgres-data:
+    emptyDir: true
+    mountPath: "/var/lib/postgresql/data"
+  postgres-backup:
+    emptyDir: true
+    mountPath: "/postgres_backups"

+ 18 - 1
test/plex/1.0.1/test_values.yaml

@@ -50,7 +50,7 @@ timezone: "Etc/UTC"
 #   TMPDIR: /transcode
 
 # upgrade strategy type (e.g. Recreate or RollingUpdate)
-strategyType: Recreate
+updateStrategy: "Recreate"
 
 plexServiceTCP:
   port: 32400
@@ -63,3 +63,20 @@ configHostPathEnabled: false
 
 gpuConfiguration: {}
 emptyDirVolumes: true
+
+appVolumeMounts:
+  transcode:
+    emptyDir: true
+    mountPath: "/transcode"
+  data:
+    emptyDir: true
+    mountPath: "/data"
+  config:
+    emptyDir: true
+    mountPath: "/config"
+  shared:
+    emptyDir: true
+    mountPath: "shared"
+  shared-logs:
+    emptyDir: true
+    mountPath: "/config/Library/Application Support/Plex Media Server/Logs"

+ 18 - 5
test/plex/1.0.1/values.yaml

@@ -50,17 +50,13 @@ timezone: "Etc/UTC"
 #   TMPDIR: /transcode
 
 # upgrade strategy type (e.g. Recreate or RollingUpdate)
-strategyType: Recreate
+updateStrategy: Recreate
 
 plexServiceTCP:
   port: 32400
 
 hostNetwork: false
 
-transcodeHostPathEnabled: false
-dataHostPathEnabled: false
-configHostPathEnabled: false
-
 proxy:
   # This allows to set a proxy environment variable, which PMS uses to fetch the token and assets like movie cover
   enabled: false
@@ -69,3 +65,20 @@ proxy:
   # noproxy: "localhost,127.0.0.1,10.96.0.0/12,10.244.0.0/12"
 
 gpuConfiguration: {}
+
+appVolumeMounts:
+  transcode:
+    emptyDir: true
+    mountPath: "/transcode"
+  data:
+    emptyDir: true
+    mountPath: "/data"
+  config:
+    emptyDir: true
+    mountPath: "/config"
+  shared:
+    emptyDir: true
+    mountPath: "shared"
+  shared-logs:
+    emptyDir: true
+    mountPath: "/config/Library/Application Support/Plex Media Server/Logs"