-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
124 lines (109 loc) · 2.57 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
# Default values for konga.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: pantsel/konga
tag: latest
pullPolicy: IfNotPresent
nameOverride: ""
fullnameOverride: ""
service:
type: ClusterIP
port: 80
seed:
userData: |
module.exports = [
{
"username": "myadmin",
"email": "[email protected]",
"firstName": "Peter",
"lastName": "Administrator",
"node_id": "http://kong:8001",
"admin": true,
"active" : true,
"password": "somepassword"
},
{
"username": "otheruser",
"email": "[email protected]",
"firstName": "Joe",
"lastName": "Blogs",
"node_id": "http://kong:8001",
"admin": false,
"active" : true,
"password": "anotherpassword"
}
]
nodeData: |
module.exports = [
{
"name": "Kong Test Seed",
"type": "key_auth",
"kong_admin_url": "http://kong:8001",
"kong_api_key": "DonKeyKong",
"health_checks": false,
}
]
# Konga default configuration
config: {}
# port: 1337
# node_env: development
# ssl_key_path:
# ssl_crt_path:
# konga_hook_timeout: 60000
# db_adapter: postgres
# db_uri:
# db_host: localhost
# db_port: 5432
# db_user:
# db_password:
# db_database: konga_database
# db_pg_schema: public
# log_level: debug
# token_secret:
# LDAP configuration for Konga
ldap: {}
# ldap:
# auth_provider:
# host:
# bind_dn:
# bind_pass:
# user_search_base:
# user_search_filter:
# user_attrs:
# group_search_base:
# group_search_filter:
# group_attrs:
# group_reg:
# attr_username:
# attr_firstname:
# attr_lastname:
# attr_email:
# Ingress Configuration for Konga
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths: []
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
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
nodeSelector: {}
tolerations: []
affinity: {}