Skip to content

Commit

Permalink
fix: add value files for chart-testing
Browse files Browse the repository at this point in the history
Signed-off-by: WrenIX <dev.github@wrenix.eu>
Signed-off-by: WrenIX <dev@wrenix.eu>
  • Loading branch information
wrenix authored and WrenIX committed Feb 3, 2024
1 parent e1cea34 commit 2fc9d68
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/nextcloud/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: nextcloud
version: 4.5.15
version: 4.5.16
appVersion: 28.0.2
description: A file sharing server that puts the control and security of your own data back into your hands.
keywords:
Expand Down
19 changes: 19 additions & 0 deletions charts/nextcloud/ci/ct-all-enabled-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
metrics:
enabled: true
serviceMonitor:
enabled: true

nextcloud:
configs:
my.config.php: |-
<?php
nginx:
enabled: true
config:
custom: |-
server {
listen 80;
server_name tmp-server;
root /tmp;
}
Empty file.
49 changes: 49 additions & 0 deletions charts/nextcloud/ci/ct-specials-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
metrics:
enabled: true
image:
pullSecrets:
- "registry-pull"
podAnnotations:
fakeVersion: unreleased
podLabels:
team: cool
resources:
requests:
memory: 100Mi
service:
type: LoadBalancer
loadBalancerIP: 100.64.0.1
annotations:
fakeVersion: unreleased
labels:
team: cool
serviceMonitor:
enabled: true
namespace: "somewhere-else"
labels:
prometheus: default
namespaceSelector:
matchNames:
- "blub"
interval: "20s"
scrapeTimeout: "15s"

nextcloud:
configs:
my.config.php: |-
<?php
phpConfigs:
redis.ini: |-
session.save_handler = redis
session.save_path = "tcp://host1:6379?weight=1, tcp://host2:6379?weight=2&timeout=2.5"
nginx:
enabled: true
config:
default: false
custom: |-
server {
listen 80;
root /tmp;
}

0 comments on commit 2fc9d68

Please sign in to comment.