forked from longhorn/upgrade-responder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.yaml
71 lines (59 loc) · 1.48 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Specify the name of the application that is using this Upgrade Responder server
# This will be used to create a database named <application-name>_upgrade_responder
# in the InfluxDB to store all data for this Upgrade Responder
# The name must be in snake case format
applicationName: awesome_app
secret:
name: upgrade-responder-secrets
# Set this to true if you want to manage these secrets with helm
managed: false
influxDBUrl: ""
influxDBUser: ""
influxDBPassword: ""
# This configmap contains information about the latest release
# of the application that is using this Upgrade Responder
# Replace the information with the latest version of your application
configMap:
responseConfig: |-
{
"Versions": [{
"Name": "v1.0.0",
"ReleaseDate": "2020-05-18T12:30:00Z",
"Tags": ["latest"]
}]
}
replicaCount: 3
image:
repository: ghcr.io/rancher-sandbox/rancher-desktop-upgrade-responder
tag: thismustbeset
pullPolicy: IfNotPresent
nameOverride: ""
fullnameOverride: ""
service:
type: ClusterIP
port: 8314
flags:
cacheSyncInterval: 1
cacheSize: 100
ingress:
enabled: false
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt-prod
path: /
hosts:
- example.com
tls:
- secretName: example-com-tls
hosts:
- example.com
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}