-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathvalues.yaml
144 lines (128 loc) · 3.41 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
# Default values for netmaker.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
baseDomain: "nm.example.com" # required value
# -- override the name for netmaker objects
nameOverride: ""
# -- override the full name for netmaker objects
fullnameOverride: ""
serviceAccount:
# -- Specifies whether a service account should be created
create: true
# -- Annotations to add to the service account
annotations: {}
# -- Name of SA to use. If not set and create is true, a name is generated using the fullname template
name: ""
# -- pod annotations to add
podAnnotations: {}
# -- pod security contect to add
podSecurityContext: {}
# fsGroup: 2000
ui:
# -- how many UI replicas to create
replicas: 2
image:
# -- The image repo to pull Netmaker image from
repository: gravitl/netmaker-ui
# -- Pull Policy for images
pullPolicy: Always
# -- Override the image tag to pull
tag: "v0.21.2"
mq:
# -- how many MQTT replicas to create
replicas: 2
username: netmaker
password: 3yyerWGdds43yegGR
server:
# -- number of netmaker server replicas to create
replicas: 2
image:
# -- The image repo to pull Netmaker image from
repository: gravitl/netmaker
# -- Pull Policy for images
pullPolicy: Always
# -- Override the image tag to pull
tag: "v0.21.2"
RWX:
storageClassName: ""
storageSize: 128Mi
masterKey: "netmaker"
ee:
licensekey: ""
tenantId: ""
# Duration of JWT token validity in seconds
jwtDuration: 43200
# Auto disable a user's connecteds clients bassed on JWT token expiration
racAutoDisable: "true"
# "<azure-ad|github|google|oidc>"
authProvider: ""
# "<client id of your oauth provider>"
oAuthclientID: ""
# "<client secret of your oauth provider>"
oAuthClientSecret: ""
# "https://dashboard.<netmaker base domain>"
frontendURL: ""
# "<only for azure, you may optionally specify the tenant for the OAuth>"
azureTenant: ""
# https://oidc.yourprovider.com - URL of oidc provider
oidcIssuer: ""
turn:
enabled: false
turnHost: ""
turnApiHost: ""
turnUsername: ""
turnPassword: ""
dns:
# -- whether or not to deploy coredns
enabled: false
storageSize: 128Mi
RWX:
storageClassName: ""
setIpForwarding:
enabled: true
service:
# -- type for netmaker server services
type: ClusterIP
# -- port for API service
restPort: 8081
# -- port for MQTT service
mqPort: 443
# -- port for UI service
uiPort: 80
ingress:
# -- attempts to configure ingress if true
enabled: true
tls: true
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt-prod
hostPrefix:
ui: "dashboard"
broker: "broker"
rest: "api"
db:
type: "postgres"
host: ""
port: 5432
username: postgres
# -- postgres pass to generate
password: password123 # set your own secure password
# -- postgress db to generate
database: netmaker
postgresql-ha:
enabled: true
postgresql:
# -- postgres user to generate
username: postgres
# -- postgres pass to generate
password: password123 # set your own secure password
# -- postgress db to generate
database: netmaker
# -- postgress number of replicas to deploy
replicaCount: 2
repmgrUsername: postgres
repmgrPassword: password123 # set your own secure password
repmgrDatabase: repmgr
persistence:
# -- size of postgres DB
size: 1Gi