-
Notifications
You must be signed in to change notification settings - Fork 286
/
values.yaml
131 lines (110 loc) · 3.13 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
toxiproxyConfig: ''
replicaCount: 1
image:
# https://github.com/shopify/toxiproxy/pkgs/container/toxiproxy
repository: ghcr.io/shopify/toxiproxy
tag: 2.7.0
pullPolicy: IfNotPresent
init:
image:
# init.image.repository -- the docker repository and image to be used for the init container.
repository: busybox
# init.image.tag -- the docker image tag for the init container image
tag: latest
frontend:
# Whether we want to deploy the charts for the frontend or not
enabled: false
repository: buckle/toxiproxy-frontend
resources:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# Frontend host address to access it
ingress:
annotations: {}
className: ''
hosts:
- host: chart-example-ui.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
imagePullSecrets: []
nameOverride: ''
fullnameOverride: ''
serviceAccount:
# Specifies whether a service account should be created
create: true
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name:
# pdb.enabled -- Whether to create a PodDisruptionBudget
pdb:
enabled: false
podSecurityContext:
{}
# fsGroup: 2000
securityContext:
{}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: ClusterIP
# Linked pair of internal and external ports in which the ToxiProxy API will be listening in.
port: 80
listeningPort: 8474
# This can be used to limit API access to certain IPs/Localhost/Everywhere.
listeningAddress: 0.0.0.0
# Config file to create proxy rules on container startup. By default anything under ./consumers/<app>/* gets copied to this path.
configJsonPath: /home/toxiproxy/proxies/config.json
# Container ports that will be used for incoming routing rules.
proxies:
ports:
# - 8080
# - 8081
# Minimal consumer configuration. A 'consumer' is an instance of the application with its own settings and files.
consumer:
name: example
ingress:
enabled: true
className: ''
annotations:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# Extra arguments that can be passed to the Docker image.
args:
environment: []
resources:
{}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
deploymentAnnotations: {}
podAnnotations: {}
extraLabels: {}
nodeSelector:
kubernetes.io/arch: amd64
kubernetes.io/os: linux
tolerations: []
affinity: {}