Skip to content

Commit 16ff55e

Browse files
wrenixWrenIX
authored andcommitted
fix: add value files for chart-testing
Signed-off-by: WrenIX <dev.github@wrenix.eu>
1 parent e00863d commit 16ff55e

4 files changed

Lines changed: 69 additions & 1 deletion

File tree

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.16
3+
version: 4.5.17
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: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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+
namespaceSelector:
26+
matchNames:
27+
- "blub"
28+
interval: "20s"
29+
scrapeTimeout: "15s"
30+
31+
nextcloud:
32+
configs:
33+
my.config.php: |-
34+
<?php
35+
36+
phpConfigs:
37+
redis.ini: |-
38+
session.save_handler = redis
39+
session.save_path = "tcp://host1:6379?weight=1, tcp://host2:6379?weight=2&timeout=2.5"
40+
41+
nginx:
42+
enabled: true
43+
config:
44+
default: false
45+
custom: |-
46+
server {
47+
listen 80;
48+
root /tmp;
49+
}

0 commit comments

Comments
 (0)