-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
85 lines (84 loc) · 1.9 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
# Default values for express-gateway.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
tag: latest
pullPolicy: IfNotPresent
service:
type: NodePort
gateway:
name: gateway
port: 80
nodePort: 31313
admin:
name: admin
port: 9876
nodePort: 31314
ingress:
enabled: false
# Used to create an Ingress record.
hosts:
- express-gateway.local
annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
tls:
# Secrets must be manually created in the namespace.
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
config:
# YAML configuration for the gateway
gateway:
# http:
# host: '*'
# port: 8080
# admin:
# host: '0.0.0.0'
# port: 9876
# apiEndpoints:
# api:
# host: '*'
# paths: '/ip'
# serviceEndpoints:
# httpbin:
# url: 'https://httpbin.org'
# policies:
# - jwt
# - oauth2
# - proxy
# pipelines:
# - name: default
# apiEndpoints:
# - api
# policies:
# # - jwt:
# # - action:
# # checkCredentialExistence: false
# # secretOrPublicKeyFile: '/app/key.pem'
# - proxy:
# - action:
# serviceEndpoint: httpbin
# changeOrigin: true
# YAML configuration for the system
system:
# db:
# redis:
# emulate: true
# namespace: EG-
# crypto:
# cipherKey: sensitiveKey
# algorithm: aes256
# saltRounds: 10
# session:
# secret: keyboard cat
# resave: false
# saveUninitialized: false
# accessTokens:
# timeToExpiry: 7200000
# refreshTokens:
# timeToExpiry: 7200000
# authorizationCodes:
# timeToExpiry: 7200000