forked from deliveryhero/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
154 lines (143 loc) · 4.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# nameOverride -- Override the name of resources
nameOverride: ""
# fullnameOverride -- Override the full name of resources
fullnameOverride: ""
# CronJobs -- A list CronJobs to create
CronJobs: []
# - name: example-cronjob
# extraLabels:
# app: my-app
# schedule: 00 19 * * *
# containers:
# - name: my-container
# image: ubuntu:bionic
# args:
# - "sh"
# - "-c"
# - "'echo yes'"
# ConfigMaps -- A list ConfigMap to create
ConfigMaps: []
# - name: example-cm
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# kv_data:
# key: value
# multiline_data:
# key: |
# line 1
# line 2
# CustomResources -- A list resources to create that are completely custom
CustomResources: []
# - name: example-custom
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# apiVersion: postgresql.org/v1
# kind: PostgresDatabase
# spec: {}
# Ingresses -- A list Ingress to create
Ingresses: []
# - name: example-ingress
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# defaultBackend: {}
# ingressClassName: ""
# rules:
# - host: chart-example.local
# http:
# paths:
# - path: /api
# pathType: Prefix
# backend:
# service:
# name: example-service
# port:
# name: http
# tls:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# Secrets -- A list Secret to create
Secrets: []
# - name: example-secret
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# tplB64Keys:
# key1: '{{ print "https://%s:%s@%s" .Values.my.user .Values.my.pass .Values.my.host }}'
# b64Keys:
# key2: value1
# keys:
# key3: dmFsdWUyCg==
# - name: container-registry
# type: kubernetes.io/dockerconfigjson
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# tplB64Keys:
# .dockerconfigjson: '{{ printf "{\"auths\": {\"%s\": {\"auth\": \"%s\"}}}" .registry (printf "%s:%s" .username .password | b64enc) }}'
# Services -- A list Service to create
Services: []
# - name: example-service
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# type: ClusterIP
# selector:
# key1: value1
# ports:
# - port: 80
# targetPort: 8080
# protocol: TCP
# loadBalancerSourceRanges:
# - 0.0.0.0/0
# ServiceAccounts -- A list ServiceAccount to create
ServiceAccounts: []
# - name: example-sa
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# HorizontalPodAutoscalers -- A list HorizontalPodAutoscaler to create
HorizontalPodAutoscalers: []
# - name: example-hpa
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# minReplicas: 1
# maxReplicas: 100
# targetCPUUtilizationPercentage: 80
# scaleTargetRef:
# apiVersion: apps/v1
# kind: Deployment
# name: my-deployment
# PriorityClasses -- A list PriorityClasses to create
PriorityClasses: []
# - name: "system-cluster-critical"
# value: 1000
# description: "Priority for system critical"
# globalDefault: false
# Namespaces -- A list Namespaces to create
Namespaces: []
# - name: "production"
# fullnameOverride: ""
# annotations: {}
# extraLabels: {}
# ScaledObjects -- A list ScaledObjects to create
ScaledObjects: []
# - name: querier-hpa
# fullnameOverride: eu01-infra02-loki-querier
# scaleTargetRef:
# name: eu01-infra02-loki-querier
# idleReplicaCount: 26
# maxReplicaCount: 100
# minReplicaCount: 26
# triggers:
# - metadata:
# metricName: querier_autoscaling_metric
# query: sum(max_over_time(cortex_query_scheduler_inflight_requests{dh_app="loki", dh_cluster="eu01-infra02", quantile="0.75"}[2m]))
# serverAddress: http://metrics-no-auth.syslogistics.io/prometheus
# cortexOrgID: logistics
# threshold: "4"
# type: prometheus