Skip to content

Commit 69d310c

Browse files
committed
fix(ci): add value files for chart-testing
Signed-off-by: WrenIX <[email protected]>
1 parent 9e51e9c commit 69d310c

File tree

4 files changed

+66
-1
lines changed

4 files changed

+66
-1
lines changed

charts/nextcloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: nextcloud
3-
version: 4.5.17
3+
version: 4.5.18
44
appVersion: 28.0.2
55
description: A file sharing server that puts the control and security of your own data back into your hands.
66
keywords:
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
metrics:
2+
enabled: true
3+
serviceMonitor:
4+
enabled: true
5+
6+
nextcloud:
7+
configs:
8+
my.config.php: |-
9+
<?php
10+
11+
nginx:
12+
enabled: true
13+
config:
14+
custom: |-
15+
server {
16+
listen 80;
17+
server_name tmp-server;
18+
root /tmp;
19+
}

charts/nextcloud/ci/ct-empty-values.yaml

Whitespace-only changes.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
metrics:
2+
enabled: true
3+
image:
4+
pullSecrets:
5+
- "registry-pull"
6+
podAnnotations:
7+
fakeVersion: unreleased
8+
podLabels:
9+
team: cool
10+
resources:
11+
requests:
12+
memory: 100Mi
13+
service:
14+
type: LoadBalancer
15+
loadBalancerIP: 100.64.0.1
16+
annotations:
17+
fakeVersion: unreleased
18+
labels:
19+
team: cool
20+
serviceMonitor:
21+
enabled: true
22+
namespace: "somewhere-else"
23+
labels:
24+
prometheus: default
25+
interval: "20s"
26+
scrapeTimeout: "15s"
27+
28+
nextcloud:
29+
configs:
30+
my.config.php: |-
31+
<?php
32+
33+
phpConfigs:
34+
redis.ini: |-
35+
session.save_handler = redis
36+
session.save_path = "tcp://host1:6379?weight=1, tcp://host2:6379?weight=2&timeout=2.5"
37+
38+
nginx:
39+
enabled: true
40+
config:
41+
default: false
42+
custom: |-
43+
server {
44+
listen 80;
45+
root /tmp;
46+
}

0 commit comments

Comments
 (0)