-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvalues.yaml
243 lines (216 loc) · 4.95 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
image:
tag: '' # Deprecated, please use global.imageTag or service specific image tag.
global:
imageRegistry: ''
imageTag: 'latest'
imageRepository: 'nxprivatecloud'
namespace: default
naming:
nameOverride: ''
fullNameOverride: ''
mode: private-enterprise
nxCloudAppURL: ''
verboseLogging: false
verboseMongoLogging: false
enableMessageQueue: true
frontend:
serviceAccountName: ''
image:
registry: ''
imageName: nx-cloud-frontend
repository: ''
tag: ''
digest: ''
pullPolicy: Always
deployment:
replicas: 1
port: 4202
env: []
service:
name: nx-cloud-frontend-service
type: ClusterIP
port: 8080
annotations: {}
resources:
limits: {}
requests:
memory: '0.5Gi'
cpu: '0.5'
nxApi:
serviceAccountName: ''
image:
registry: ''
imageName: nx-cloud-nx-api
repository: ''
tag: ''
digest: ''
pullPolicy: Always
deployment:
replicas: 1
port: 4203
env: []
readinessProbe: {}
service:
name: nx-cloud-nx-api-service
type: ClusterIP
port: 4203
annotations: {}
resources:
limits: {}
requests:
memory: '1Gi'
cpu: '1.0'
fileServer:
serviceAccountName: ''
image:
registry: ''
imageName: nx-cloud-file-server
repository: ''
tag: ''
digest: ''
pullPolicy: Always
deployment:
port: 5000
env: []
service:
name: nx-cloud-file-server-service
type: ClusterIP
port: 5000
annotations: {}
resources:
limits: {}
requests:
memory: '0.5Gi'
cpu: '0.5'
securityContext:
enabled: true
runAsUser: 10000
runAsGroup: 10000
fsGroup: 10000
fsGroupChangePolicy: "OnRootMismatch"
aggregator:
serviceAccountName: ''
schedule: '*/10 * * * *'
image:
registry: ''
imageName: nx-cloud-aggregator
repository: ''
tag: ''
digest: ''
pullPolicy: Always
env: []
resources:
limits: {}
requests:
memory: '1200M'
cpu: '0.5'
messagequeue:
serviceAccountName: ''
image:
registry: ''
imageName: nx-cloud-messagequeue
repository: ''
tag: ''
digest: ''
pullPolicy: Always
deployment:
port: 61616
env: []
volumes: {}
volumeMounts: {}
service:
name: nx-cloud-messagequeue
type: ClusterIP
port: 61616
annotations: {}
resources:
limits: {}
requests: {}
nxCloudWorkflows:
enabled: false
port: 9000
name: 'nx-cloud-workflow-controller-service'
workflowsNamespace: 'nx-cloud-workflows'
# If externalName is left unset, the applications will look for ane existing service with the name defined
# by `nxCloudWorkflows.name` in the namespace `nxCloudWorkflows.workflowsNamespace`. Use this option if you are
# also running the nx-agents chart in the same cluster as this nx-cloud chart
#
# If externalName is set, an additional service will be created with the name `nxCloudWorkflows.name`
# in the global namespace of this chart, and applications will use that service to connect to the workflow controller.
# Use this option if your nx-agents are running in a different cluster than this nx-cloud chart
externalName: ''
# If you find that an externalName service is not working as expected, you can set this to true to create a headless service
# which will create an endpoint group as an alternative. Please continue to set `externalName` to the IP address
# you wish to direct traffic to as we will use it to populate the endpoint slice.
headless: false
# Deprecated, use nxApi.deployment.replicas and frontend.deployment.replicas
replicas:
frontend: 1
nxApi: 1
ingress:
skip: false
# deprecated, use ingress.annotations
globalStaticIpName: ''
managedCertificates: ''
albScheme: ''
albListenPorts: ''
albCertificateArn: ''
class: ''
annotations:
nx.app/installed-by: 'helm'
fileStorage:
storageClassName: ''
size: '30Gi'
resourcePolicy: ''
awsS3:
enabled: false
bucket: ''
accelerated: false
endpoint: ''
enablePathStyleAccess: false
azure:
enabled: false
container: ''
useCosmosDb: false
gitlab:
apiUrl: ''
projectId: ''
auth:
enabled: false
mr:
enabled: false
github:
auth:
enabled: false
pr:
defaultWorkspaceId: ''
enabled: false
mode: 'webhook'
apiUrl: ''
bitbucket:
auth:
enabled: false
saml:
auth:
enabled: false
# If you plan to deploy using your own self-signed certs, add them to a config map and provide the name here
# We will mount the configmap to the pods and import the certs contained within at `self-signed-cert.crt`
selfSignedCertConfigMap: ''
vcsHttpsProxy: ''
secret:
name: ''
nxCloudMongoServerEndpoint: ''
adminPassword: ''
awsS3AccessKeyId: ''
awsS3SecretAccessKey: ''
azureConnectionString: ''
githubAuthClientId: ''
githubAuthClientSecret: ''
githubWebhookSecret: ''
githubAuthToken: ''
githubAppId: ''
githubPrivateKey: ''
githubAppClientId: ''
githubAppClientSecret: ''
gitlabAccessToken: ''
extraManifests: {}