-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.yaml
78 lines (62 loc) · 1.44 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
72
73
74
75
76
77
78
global:
#Inject config maps
inject_maps: []
routing:
type:
# Name of the instance, default {{ .Release.Name }}-{{ .Values.name | default .Chart.Name }}
name:
# Application image
image:
# Docker registry
registry: "harbor.1000kit.org"
# Docker repository (application name)
repository: "change-me"
# Docker image tag (application version)
tag: "master"
# Image pull secrets
imagePullSecrets:
# health
livenessProbe:
url: /api/health
readinessProbe:
url: /api/ready
# pod
pod:
port: 3000
# service
service:
port: 8080
# Routing
routing:
# Enable or disable routing
enabled: false
# Default URL
default_url: "change.com"
# traefik | ingress
type: none
# path
path:
# stripprefix for treafik
stripprefix: false
# ingress
ingress:
annotations:
ingress.kubernetes.io/ssl-redirect: "false"
# host configuration
host:
# prio1 if the name is define generate domain <override>.<default_url>
override:
# prio2 if the name is define generate domain <name>-<release_namespace>.<default_url>
name:
# else <release_name>-<name of chart_name>-<release_namespace>.<default_url>
# custom service name and port for the routing
service:
name:
port:
# Replicas
replicas: 1
# Service account suffix
# serviceAccountName = {{ .Release.Name }}-{{ .Values.name | default .Chart.Name }}-serviceAccountSuffix
serviceAccountSuffix:
# Inject config maps
inject_maps: []