File tree 6 files changed +50
-5
lines changed
6 files changed +50
-5
lines changed Original file line number Diff line number Diff line change @@ -72,21 +72,21 @@ jobs:
72
72
73
73
# test the helm chart with postgresql subchart enabled
74
74
- name : PostgreSQL Enabled
75
- helm_args : ' --helm-extra-set-args "--set=postgresql.enabled=true --set= postgresql.global.postgresql.auth.password=testing123456 --set=internalDatabase.enabled=false --set=externalDatabase.enabled=True --set=externalDatabase.type=postgresql --set=externalDatabase.password=testing12345 "'
75
+ helm_args : ' --helm-extra-set-args "--values charts/nextcloud/test-values/ postgresql.yaml "'
76
76
77
77
# test the helm chart with nginx container enabled
78
78
- name : Nginx Enabled
79
- helm_args : ' --helm-extra-set-args "--set=image.flavor=fpm --set= nginx.enabled=true "'
79
+ helm_args : ' --helm-extra-set-args "--values charts/nextcloud/test-values/ nginx.yaml "'
80
80
81
81
# test the helm chart with horizontal pod autoscaling enabled
82
82
- name : Horizontal Pod Autoscaling Enabled
83
- helm_args : ' --helm-extra-set-args "--set=hpa.enabled=true --set= hpa.minPods=2 --set=hpa.maxPods=3 --set=hpa.targetCPUUtilizationPercentage=75 "'
83
+ helm_args : ' --helm-extra-set-args "--values charts/nextcloud/test-values/ hpa.yaml "'
84
84
85
85
# test the helm chart with s3 as the primary storage
86
86
- name : S3 Enabled as Primary Storage
87
87
# we need to skip the clean up so we can test adding a file
88
88
helm_args : |
89
- --namespace nextcloud --skip-clean-up --helm-extra-set-args "--set=fullnameOverride=nextcloud --set=nextcloud.objectStore.s3.enabled=true --set=nextcloud.objectStore.s3.accessKey=nextcloud --set= nextcloud.objectStore.s3.secretKey=rootpass123 --set=nextcloud.objectStore.s3.host=minio.nextcloud.svc.cluster.local --set=nextcloud.objectStore.s3.port=9000 --set=nextcloud.objectStore.s3.ssl=false --set=nextcloud.objectStore.s3.bucket=nextcloud --set=nextcloud.objectStore.s3.usePathStyle=true --set=image.flavor=fpm --set=nginx.enabled=true --set=nextcloud.host=nextcloud --set=nextcloud.trustedDomains[0]='*' "
89
+ --namespace nextcloud --skip-clean-up --helm-extra-set-args "--timeout 10m --values charts/ nextcloud/test-values/s3-as-primary-storage.yaml "
90
90
91
91
steps :
92
92
- name : Checkout
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : nextcloud
3
- version : 6.2.1
3
+ version : 6.2.2
4
4
appVersion : 30.0.1
5
5
description : A file sharing server that puts the control and security of your own data back into your hands.
6
6
keywords :
Original file line number Diff line number Diff line change
1
+ hpa :
2
+ enabled : true
3
+ minPods : 2
4
+ maxPods : 3
5
+ targetCPUUtilizationPercentage : 75
Original file line number Diff line number Diff line change
1
+ image :
2
+ flavor : fpm
3
+
4
+ nginx :
5
+ enabled : true
Original file line number Diff line number Diff line change
1
+ postgresql :
2
+ enabled : true
3
+ global :
4
+ postgresql :
5
+ auth :
6
+ password : " testing123456"
7
+
8
+ internalDatabase :
9
+ enabled : false
10
+
11
+ externalDatabase :
12
+ enabled : true
13
+ type : postgresql
14
+ password : " testing123456"
Original file line number Diff line number Diff line change
1
+ fullnameOverride : nextcloud
2
+
3
+ image :
4
+ flavor : fpm
5
+
6
+ nextcloud :
7
+ host : nextcloud
8
+ trustedDomains : [ "*" ]
9
+ objectStore :
10
+ s3 :
11
+ enabled : true
12
+ host : minio.nextcloud.svc.cluster.local
13
+ port : 9000
14
+ ssl : false
15
+ accessKey : nextcloud
16
+ secretKey : rootpass123
17
+ bucket : nextcloud
18
+ usePathStyle : true
19
+
20
+ nginx :
21
+ enabled : true
You can’t perform that action at this time.
0 commit comments