-
Notifications
You must be signed in to change notification settings - Fork 1
/
values.yaml
45 lines (45 loc) · 998 Bytes
/
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
apisix:
controlPlane:
enabled: true
ingressController:
enabled: false
etcd:
enabled: true
persistence:
enabled: false
dataPlane:
service:
ports:
http: 8082
https: 8443
extraEnvVars: []
extraConfig:
deployment:
role_data_plane:
config_provider: yaml
extraVolumes:
- name: routes
configMap:
name: apisix-routes
extraVolumeMounts:
- name: routes
mountPath: /usr/local/apisix/conf/apisix.yaml
subPath: apisix.yaml
extraDeploy:
- apiVersion: v1
kind: ConfigMap
metadata:
name: apisix-routes
data:
apisix.yaml: |-
routes:
- uri: /*
upstream:
nodes:
"mockserver:1080": 1
type: roundrobin
plugins:
opa:
host: "http://it-opa:8181"
policy: policy/main
#END