-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.yaml
605 lines (544 loc) · 26.1 KB
/
vars.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
######################
# OpenShift defaults #
######################
# The path to kustomize resources for production deployment
OVERLAY_SITE_PATH: kustomize/overlays/prod
# The wildcard domain suffix where OpenShift Routes are available by default.
OPENSHIFT_APPS_DOMAIN: "{{ lookup('env', 'OPENSHIFT_APPS_DOMAIN') | default('apps-crc.testing', true) }}"
# Look up the default container namespace to see if using OpenShift AI.
USING_OPENSHIFT_AI: "{{ lookup('env', 'USING_OPENSHIFT_AI') | default(false, true) | bool }}"
# The name of the OpenShift AI Workbench.
OPENSHIFT_AI_WORKBENCH: "{{ lookup('env', 'OPENSHIFT_AI_WORKBENCH') | default('', true) }}"
# Whether this workbench is considered an admin workbench.
WORKBENCH_ADMIN: "{{ lookup('env', 'WORKBENCH_ADMIN') | bool }}"
#############
# Site vars #
#############
# The name of this application.
SITE_NAME: computate.org
# The source code directory for the project.
SITE_SRC: "{{ lookup('env', 'HOME') + ('/' if USING_OPENSHIFT_AI | bool else '/.local/src/') + SITE_NAME }}"
# The parent source directory.
PARENT_SRC: "{{ (SITE_SRC + '/..') | realpath }}"
# The vars.yaml filename to load when running in development.
VARS_FILENAME: vars.yaml
# The vars.yaml path to load when running in development.
VARS_PATH: "{{ SITE_SRC }}/{{ VARS_FILENAME }}"
# A shorter name for the application used for database names, collections, and artifact IDs.
SITE_SHORT_NAME: "{{ SITE_NAME | replace('-', '') | replace('_', '') | replace('.', '') | lower }}"
# The namespace in OpenShift where the site will run.
SITE_NAMESPACE: "{{ lookup('env', 'SITE_NAMESPACE') | default(SITE_SHORT_NAME, true) }}"
# A pretty version of the site name.
SITE_DISPLAY_NAME: Learn that computer
# A short description of the site.
SITE_DESCRIPTION: "Cloud native web development on your own computer"
# The main locale of this application.
SITE_LOCALE: en-US
# A computate specific identifier for the locale and language of the code.
SITE_LANG: "{{ SITE_LOCALE | replace('-', '') }}"
# The timezone of the site.
SITE_ZONE: "{{ lookup('env', 'SITE_ZONE') | default('America/Denver', true) }}"
# The domain name of the site.
DOMAIN_NAME: computate.org
# The GitHub organization for this project.
GITHUB_ORG: computate-org
# The main git repository for the project.
SITE_REPO: "[email protected]:{{ GITHUB_ORG }}/{{ SITE_NAME }}.git"
# The main git repository for the project via ssh.
SITE_REPO_HTTPS: "{{ SITE_REPO | replace('[email protected]:', 'https://github.com/') }}"
# The port of the site.
SITE_PORT: 10200
# The host name of the site.
SITE_HOST_NAME: "{{ lookup('env', 'SITE_HOST_NAME') | default('localhost', true) }}"
# The base URL of the site.
SITE_BASE_URL: "{{ lookup('env', 'SITE_BASE_URL') | default('http://' + SITE_HOST_NAME + ':' + (SITE_PORT | string), true) }}"
# The public facing URL for the site.
SITE_PUBLIC_URL: "https://www.{{ DOMAIN_NAME }}"
# The port of the Zookeeper cluster manager.
CLUSTER_PORT: "{{ (SITE_PORT | int) + 1 }}"
# Zookeeper root path to avoid conflicts with other apps using Zookeeper for clustering.
ZOOKEEPER_ROOT_PATH: "{{ lookup('env', 'ZOOKEEPER_ROOT_PATH') | default(SITE_NAME, true) }}"
# Verify SSL connections.
SSL_VERIFY: false
# The public search endpoint for searching public items in the site.
PUBLIC_SEARCH_URI: "/en-us/search"
# The user search endpoint for searching public and authorized items in the site.
USER_SEARCH_URI: "/en-us/user-search"
#########################
# Mailing list defaults #
#########################
# The URL to sign up for the mailing list.
MAILING_LIST_URL: https://computate.topicbox.com/groups/computate
# The email address of the mailing list.
MAILING_LIST_EMAIL: [email protected]
################
# API defaults #
################
# The API version of this site.
API_VERSION: 1.0.0
# The Site OpenAPI title.
API_TITLE: "{{ SITE_DISPLAY_NAME }}"
# The API contact email.
API_CONTACT_EMAIL: "{{ MAILING_LIST_EMAIL }}"
#################
# Java defaults #
#################
# The Maven group ID of the project.
SITE_POM_GROUP_ID: "{{ DOMAIN_NAME | split('.') | reverse | join('.') }}"
# The Maven artifact ID of the project.
SITE_POM_ARTIFACT_ID: "site"
# The current Maven version of the project.
SITE_POM_VERSION: "{{ API_VERSION }}"
# The base Java Package for the project based on Maven group ID and artifact ID.
SITE_JAVA_PACKAGE: "{{ SITE_POM_GROUP_ID }}.{{ SITE_POM_ARTIFACT_ID }}"
# The Java Package containing the project main verticle class.
SITE_MAIN_VERTICLE_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.verticle"
# The Java Package containing the project configuration keys class.
SITE_CONFIG_KEYS_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.config"
# The Java Package containing the project site request class.
SITE_REQUEST_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.request"
# The Java Package containing the project base model class.
SITE_BASE_MODEL_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.model"
# The Java Package containing the project base result class.
SITE_BASE_RESULT_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.result"
# The Java Package containing the project page layout class.
SITE_PAGE_LAYOUT_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.page"
# The Java Package containing the project site page reader class.
SITE_PAGE_READER_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.page.reader"
# The Java Package containing the project site user class.
SITE_USER_PACKAGE: "{{ SITE_JAVA_PACKAGE }}.user"
# The /src/main/java folder for the main Java source code.
SUFFIX_SRC_MAIN_JAVA: /src/main/java
# The /src/gen/java folder for the generated Java source code.
SUFFIX_SRC_GEN_JAVA: /src/gen/java
# The relative paths in the project to watch for changes.
RELATIVE_PATHS_TO_WATCH: "src/main/java/{{ SITE_JAVA_PACKAGE | replace('.', '/') }}"
# The default source code directory for the computate application which helps generate and translate most the code.
COMPUTATE_SRC: "{{ (PARENT_SRC + '/computate') | realpath }}"
# The default source code directory for the computate-search application.
COMPUTATE_SEARCH_SRC: "{{ (PARENT_SRC + '/computate-search') | realpath }}"
# The default source code directory for the computate-vertx application.
COMPUTATE_VERTX_SRC: "{{ (PARENT_SRC + '/computate-vertx') | realpath }}"
# The unique ID for solr records in the search engine
SOLR_ID: "solrId"
# The paths to the internationalization for this project.
I18N_PATHS: ["{{ COMPUTATE_VERTX_SRC }}/src/main/resources/org/computate/i18n/i18n_{{ SITE_LANG }}.yaml"]
# The Java main class of the site.
JAVA_MAIN_CLASS: "{{ SITE_MAIN_VERTICLE_PACKAGE }}.MainVerticle"
# Enables Vert.x reactive APIs.
ENABLE_VERTX: true
# Enables a Quarkus application to also be created in addition to the Vert.x main verticle.
ENABLE_QUARKUS: false
# Enables the worker verticle.
ENABLE_WORKER_VERTICLE: true
###################
# Vert.x defaults #
###################
# The number of Vert.x instances to run per pod.
SITE_INSTANCES: 1
# The number of Vert.x worker instances to run per pod.
WORKER_POOL_SIZE: 2
# The max event loop execute time in seconds.
VERTX_MAX_EVENT_LOOP_EXECUTE_TIME: 30
# The max worker execute time in seconds.
VERTX_MAX_WORKER_EXECUTE_TIME: 6000
# The time before showing a warning of blocking threads in seconds.
VERTX_WARNING_EXCEPTION_SECONDS: 60
# The number of background worker executors that may run.
NUMBER_EXECUTORS: 2
####################
# License defaults #
####################
# The name of the open source license for the software.
SITE_LICENSE_NAME: GNU GENERAL PUBLIC LICENSE, Version 3
# The URL of the open source license for the software.
SITE_LICENSE_URL: https://www.gnu.org/licenses/gpl-3.0.en.html
######################
# Container defaults #
######################
# The container registry where the container will be pushed.
CONTAINER_REGISTRY: quay.io
# The organization within quay.io where the container will be pushed.
CONTAINER_ORG: computateorg
# The container name where the container will be pushed.
CONTAINER_NAME: "{{ SITE_NAME }}"
# The container version where the container will be pushed.
CONTAINER_VERSION: "latest"
# The container URI where the container will be pushed.
CONTAINER_URI: "{{ CONTAINER_REGISTRY }}/{{ CONTAINER_ORG }}/{{ CONTAINER_NAME }}:{{ CONTAINER_VERSION }}"
###########################
# Static content defaults #
###########################
# An optional FontAwesome Pro Kit for additional FontAwesome icons.
FONTAWESOME_KIT: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name='font-awesome', namespace=SITE_NAMESPACE)[0].data['FONTAWESOME_KIT'] | b64decode }}"
# A default FontAwesome style.
FONTAWESOME_STYLE: "fa-duotone fa-regular "
# Switch between Shoelace "sl-" and Web Awesome "wa-" element prefixes.
WEB_COMPONENTS_PREFIX: "wa-"
# An optional link element to either a Shoelace web components stylesheet or a Web Awesome Backer web components stylesheet.
WEB_COMPONENTS_CSS: |-
{{ '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/themes/light.css" />' if WEB_COMPONENTS_PREFIX == 'sl-' else (query('kubernetes.core.k8s', kind='Secret', resource_name='font-awesome', namespace=SITE_NAMESPACE)[0].data['WEB_COMPONENTS_CSS'] | b64decode | default('<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/themes/light.css" />')) }}
# An optional link element to either a Shoelace web components JavaScript or a Web Awesome Backer web components JavaScript.
WEB_COMPONENTS_JS: |-
{{ '<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/shoelace-autoloader.js"></script>' if WEB_COMPONENTS_PREFIX == 'sl-' else (query('kubernetes.core.k8s', kind='Secret', resource_name='font-awesome', namespace=SITE_NAMESPACE)[0].data['WEB_COMPONENTS_JS'] | b64decode | default('<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/cdn/shoelace-autoloader.js"></script>')) }}
# Site default theme, light or dark.
SITE_THEME: dark
# The site logo relative URI
SITE_LOGO_URI: "/svg/logo-{{ SITE_THEME }}.svg"
# The name of the repository containing the web static content.
SITE_STATIC_NAME: "{{ SITE_NAME }}-static"
# The static files git repository for the project.
SITE_STATIC_REPO: "[email protected]:{{ GITHUB_ORG }}/{{ SITE_STATIC_NAME }}.git"
# The base URL to the static files.
STATIC_BASE_URL: "{{ SITE_BASE_URL }}/static"
# The path to the static files.
STATIC_PATH: "{{ (SITE_SRC + '/../' + SITE_STATIC_NAME + '/' + ('webawesome' if WEB_COMPONENTS_PREFIX == 'wa-' else 'shoelace')) | realpath }}"
# The path to the template files.
TEMPLATE_PATH: "{{ STATIC_PATH }}/templates"
# The path to the site page templates.
DYNAMIC_PAGE_PATHS:
- "en-us/article"
######################
# Developer defaults #
######################
# The software developer name.
DEVELOPER_NAME: Christopher Tate
# The software organization name.
DEVELOPER_ORG_NAME: computate.org
# The software organization URL.
DEVELOPER_ORG_URL: https://www.computate.org/
####################
# Service defaults #
####################
# Enable systemd.
ENABLE_SYSTEMD: "{{ not USING_OPENSHIFT_AI | bool }}"
# The systemd service name for project that generates and translates most of the code.
SITE_SERVICE: "watch-{{ SITE_NAME }}"
# The systemd service file for project that generates and translates most of the code.
SITE_SYSTEMD: "{{ '/usr/lib/systemd/system' if ansible_distribution_file_variety == 'RedHat' and (ansible_distribution_major_version | int) <= 7 else (lookup('env', 'HOME') + '/.config/systemd/user') }}/{{ SITE_SERVICE }}.service"
#######################
# Powered by defaults #
#######################
# The name of the cloud provider where the public site is deployed.
SITE_POWERED_BY_NAME: Google Kubernetes Engine
# The URL of the cloud provider where the public site is deployed.
SITE_POWERED_BY_URL: https://cloud.google.com/kubernetes-engine
# The static path to the logo of the cloud provider where the public site is deployed.
SITE_POWERED_BY_IMAGE: '<img class="footer-img" alt="Google Kubernetes Engine" src="{{ STATIC_BASE_URL }}/svg/google-gke.svg"/>'
######################
# Zookeeper defaults #
######################
# The namespace in OpenShift where Zookeeper will run.
ZOOKEEPER_NAMESPACE: "{{ lookup('env', 'ZOOKEEPER_NAMESPACE') | default('zookeeper', true) }}"
# The default hostname for the Zookeeper cluster manager.
ZOOKEEPER_HOST_NAME: "{{ lookup('env', 'ZOOKEEPER_HOST_NAME') | default('zookeeper.' + OPENSHIFT_APPS_DOMAIN, true) }}"
# The default port that Zookeeper runs to manage the cluster.
ZOOKEEPER_PORT: "{{ lookup('env', 'ZOOKEEPER_PORT') | default('30081', true) }}"
ZOOKEEPER_MAX_RETRIES: 0
ZOOKEEPER_BASE_SLEEP_TIME_MILLIS: 5000
ZOOKEEPER_MAX_SLEEP_MILLIS: 5000
ZOOKEEPER_CONNECTION_TIMEOUT_MILLIS: 3000
ZOOKEEPER_SESSION_TIMEOUT_MILLIS: 5000
#################
# Solr defaults #
#################
# The namespace in OpenShift where Solr will run.
SOLR_NAMESPACE: "{{ lookup('env', 'SOLR_NAMESPACE') | default('solr', true) }}"
# Whether to use SSL when connecting to Solr.
SOLR_SSL: "{{ (lookup('env', 'SOLR_SSL') | lower) != 'false' }}"
# The host name to connect to Solr in OpenShift.
SOLR_HOST_NAME: "{{ lookup('env', 'SOLR_HOST_NAME') | default('solr.' + OPENSHIFT_APPS_DOMAIN, true) }}"
# The default port that Solr runs.
SOLR_PORT: "{{ lookup('env', 'SOLR_PORT') | default('443', true) }}"
# The solr collection to use for the site.
SOLR_COLLECTION: "{{ lookup('env', 'SOLR_COLLECTION_' + SITE_SHORT_NAME) | default(SITE_SHORT_NAME, true) }}"
# The URL to the Solr collection.
SOLR_URL: "{{ ('https://' if SOLR_SSL | bool == True else 'http://') + SOLR_HOST_NAME + ('' if SOLR_PORT | int == 443 else (':' + SOLR_PORT)) }}/solr/{{ SOLR_COLLECTION }}"
# The solr pod name to connect and create Solr configsets and collections.
SOLR_POD_NAME: "solr-0"
# The time before committing Solr data in milliseconds.
SOLR_WORKER_COMMIT_WITHIN_MILLIS: 10000
# The solr configset to use for the site.
SOLR_CONFIGSET: "computate"
# The Solr admin username
SOLR_USERNAME: admin
# The Solr admin password
SOLR_PASSWORD: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name='solr', namespace=SOLR_NAMESPACE)[0].data['solr-password'] | b64decode }}"
# Whether to use SSL when connecting to Solr.
SOLR_SSL_COMPUTATE: "{{ lookup('env', 'SOLR_SSL_COMPUTATE') | default(SOLR_SSL, true) | bool }}"
# The host name to connect to Solr in OpenShift.
SOLR_HOST_NAME_COMPUTATE: "{{ lookup('env', 'SOLR_HOST_NAME_COMPUTATE') | default(SOLR_HOST_NAME, true) }}"
# The default port that Solr runs.
SOLR_PORT_COMPUTATE: "{{ lookup('env', 'SOLR_PORT_COMPUTATE') | default(SOLR_PORT, true) }}"
# The solr collection to use for the site.
SOLR_COLLECTION_COMPUTATE: "{{ lookup('env', 'SOLR_COLLECTION_COMPUTATE') | default('computate', true) }}"
# The URL to the Solr collection.
SOLR_URL_COMPUTATE: "{{ ('https://' if SOLR_SSL_COMPUTATE | bool == True else 'http://') + SOLR_HOST_NAME_COMPUTATE + ('' if SOLR_PORT_COMPUTATE | int == 443 else (':' + SOLR_PORT_COMPUTATE)) }}/solr/{{ SOLR_COLLECTION_COMPUTATE }}"
#####################
# Database defaults #
#####################
# Enable the connections to the database.
ENABLE_DATABASE: true
# The namespace of the database in OpenShift.
DATABASE_NAMESPACE: postgres
# The PostgreSQL database user name of the site.
DATABASE_USERNAME: "{{ lookup('env', 'DATABASE_USERNAME_' + SITE_SHORT_NAME) | default(SITE_SHORT_NAME, true) }}"
# The database secret containing the user password to connect to the database.
DATABASE_SECRET: "postgres-pguser-{{ DATABASE_USERNAME }}"
# The PostgreSQL database host name.
DATABASE_HOST_NAME: "{{ lookup('env', 'DATABASE_HOST_NAME') | default('postgres.' + OPENSHIFT_APPS_DOMAIN, true) }}"
# The PostgreSQL database port.
DATABASE_PORT: "{{ lookup('env', 'DATABASE_PORT') | default('30432', true) }}"
# The PostgreSQL database password of the site.
DATABASE_PASSWORD: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name=(DATABASE_SECRET), namespace=SITE_NAMESPACE)[0].data.password | b64decode }}"
# The PostgreSQL database name of the site.
DATABASE_DATABASE: "{{ lookup('env', 'DATABASE_DATABASE_' + SITE_SHORT_NAME) | default(SITE_SHORT_NAME, true) }}"
# The PostgreSQL database max pool size.
DATABASE_MAX_POOL_SIZE: 10
# The PostgreSQL database max wait queue size.
DATABASE_MAX_WAIT_QUEUE_SIZE: 1000
# The PostgreSQL database max idle time in seconds.
DATABASE_MAX_IDLE_TIME: 10
# The PostgreSQL database connect timeout in milliseconds.
DATABASE_CONNECT_TIMEOUT: 3000
#####################################
# Authentication/authorization vars #
#####################################
# The namespace in OpenShift where Keycloak will run.
AUTH_NAMESPACE: "{{ lookup('env', 'AUTH_NAMESPACE_' + SITE_SHORT_NAME) | default('keycloak', true) }}"
# The Auth host name.
AUTH_HOST_NAME: "{{ lookup('env', 'AUTH_HOST_NAME_' + SITE_SHORT_NAME) | default('keycloak.' + OPENSHIFT_APPS_DOMAIN, true) }}"
# The Auth port.
AUTH_PORT: 443
# Whether the Auth server uses SSL.
AUTH_SSL: true
# Whether the Auth server requires SSL.
AUTH_SSL_REQUIRED: all
# The Auth realm.
AUTH_REALM: "{{ lookup('env', 'AUTH_REALM_' + SITE_SHORT_NAME) | default(SITE_NAME | upper, true) }}"
# The Auth client.
AUTH_CLIENT: "{{ lookup('env', 'AUTH_CLIENT_' + SITE_SHORT_NAME) | default(SITE_NAME, true) }}"
# The Auth openshift secret with the client secret credentials.
AUTH_OPENSHIFT_SECRET: "{{ lookup('env', 'AUTH_OPENSHIFT_SECRET_' + SITE_SHORT_NAME) | default('keycloak-client-' + AUTH_CLIENT, true) }}"
# The Auth secret.
AUTH_SECRET: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name=AUTH_OPENSHIFT_SECRET, namespace=SITE_NAMESPACE)[0].data.clientSecret | b64decode }}"
# The Auth openshift secret with the admin credentials.
AUTH_ADMIN_OPENSHIFT_SECRET: "{{ lookup('env', 'AUTH_ADMIN_OPENSHIFT_SECRET_' + SITE_SHORT_NAME) | default('keycloak-initial-admin', true) }}"
# The Auth admin username.
AUTH_ADMIN_USERNAME: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name=AUTH_ADMIN_OPENSHIFT_SECRET, namespace=AUTH_NAMESPACE)[0].data['username'] | b64decode }}"
# The Auth admin password.
AUTH_ADMIN_PASSWORD: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name=AUTH_ADMIN_OPENSHIFT_SECRET, namespace=AUTH_NAMESPACE)[0].data['password'] | b64decode }}"
# The Auth URL.
AUTH_URL: "https://{{ AUTH_HOST_NAME }}"
# The Auth URL to retrieve tokens.
AUTH_TOKEN_URI: "/realms/{{ AUTH_REALM }}/protocol/openid-connect/token"
# The OpenAPI ID for the openId spec.
AUTH_OPEN_API_ID: openIdConnect
# The auth callback URI.
AUTH_CALLBACK_URI: /callback
# The auth logout URI.
AUTH_LOGOUT_URI: /logout
# The Auth scope required to be an admin in the site.
AUTH_SCOPE_ADMIN: Admin
# The Auth scope required to be a super-admin in the site.
AUTH_SCOPE_SUPER_ADMIN: SuperAdmin
# Enables authorization fine-grained resource permissions.
AUTH_FINE_GRAINED_POLICY_PERMISSIONS: true
###############
# FIWARE vars #
###############
# Enable FIWARE Smart Data Model integrations.
ENABLE_FIWARE: true
# FIWARE Smart Data Model source code directory.
SMART_DATA_MODELS_SRC: "{{ (PARENT_SRC + '/smart-data-models') | realpath }}"
# Map default latitude,longitude.
DEFAULT_MAP_LOCATION: "40.82609656742042,14.186226986785329"
# Map default zoom level.
DEFAULT_MAP_ZOOM: "17"
# Whether to use SSL when connecting to Solr.
SOLR_SSL_FIWARE: "{{ lookup('env', 'SOLR_SSL_FIWARE') | default(SOLR_SSL, true) | bool }}"
# The host name to connect to Solr in OpenShift.
SOLR_HOST_NAME_FIWARE: "{{ lookup('env', 'SOLR_HOST_NAME_FIWARE') | default(SOLR_HOST_NAME, true) }}"
# The default port that Solr runs.
SOLR_PORT_FIWARE: "{{ lookup('env', 'SOLR_PORT_FIWARE') | default(SOLR_PORT, true) }}"
# The solr collection to use for the site.
SOLR_COLLECTION_FIWARE: "{{ lookup('env', 'SOLR_COLLECTION_FIWARE') | default(SOLR_COLLECTION_COMPUTATE, true) }}"
# The URL to the Solr collection.
SOLR_URL_FIWARE: "{{ ('https://' if SOLR_SSL_FIWARE | bool == True else 'http://') + SOLR_HOST_NAME_FIWARE + ('' if SOLR_PORT_FIWARE | int == 443 else (':' + SOLR_PORT_FIWARE)) }}/solr/{{ SOLR_COLLECTION_FIWARE }}"
##################
# Context Broker #
##################
# Enable context broker integration in the Fiware enabled Smart Data Model APIs.
ENABLE_CONTEXT_BROKER: true
# The Context Broker namespace.
CONTEXT_BROKER_NAMESPACE: "scorpiobroker"
# Whether to use SSL when connecting to the Context Broker.
CONTEXT_BROKER_SSL: "{{ (lookup('env', 'CONTEXT_BROKER_SSL') | lower) != 'false' }}"
# The host name to connect to the Context Broker in OpenShift.
CONTEXT_BROKER_HOST_NAME: "{{ lookup('env', 'CONTEXT_BROKER_HOST_NAME') | default('scorpiobroker.' + OPENSHIFT_APPS_DOMAIN, true) }}"
# The default port that the Context Broker runs.
CONTEXT_BROKER_PORT: "{{ lookup('env', 'CONTEXT_BROKER_PORT') | default('443', true) }}"
# The delay between messages and requerying entity @context.
CONTEXT_BROKER_DELAY_MILLIS: 0
# The Context Broker namespace.
CONTEXT_BROKER_CONTEXT: "{{ STATIC_BASE_URL }}/fiware/context.jsonld"
# The default NGSI-LD tenant environment variable
NGSILD_TENANT_ENV: "{{ lookup('env', 'NGSILD_TENANT_ENV') | default('NGSILD_TENANT', true) }}"
# The default NGSI-LD path
NGSILD_PATH_ENV: "{{ lookup('env', 'NGSILD_PATH_ENV') | default('NGSILD_PATH', true) }}"
# The default NGSI-LD tenant
NGSILD_TENANT: "{{ lookup('env', NGSILD_TENANT_ENV) | default('', true) }}"
# The default NGSI-LD path
NGSILD_PATH: "{{ lookup('env', NGSILD_PATH_ENV) | default('', true) }}"
#################
# iotagent-json #
#################
# The IoT Agent JSON namespace.
IOTAGENT_NAMESPACE: "iotagent"
# Whether to use SSL when connecting to the IoT Agent JSON.
IOTAGENT_SSL: true
# The host name to connect to the IoT Agent JSON in OpenShift.
IOTAGENT_HOST_NAME: "iotagent-json.apps-crc.testing"
# The HTTP port that the IoT Agent JSON runs.
IOTAGENT_HTTP_PORT: 7896
# The North port that the IoT Agent JSON runs.
IOTAGENT_NORTH_PORT: 443
# The message broker transport type (MQTT or AMQP).
IOTAGENT_TRANSPORT: AMQP
##############
# Kafka vars #
##############
# Enable Kafka message integration.
ENABLE_KAFKA: false
# The namespace in OpenShift where Kafka will run.
KAFKA_NAMESPACE: kafka
# The Kafka SSL KeyStore secret name.
KAFKA_SSL_KEYSTORE_SECRET: "{{ SITE_SHORT_NAME }}-kafka"
# The Kafka SSL TrustStore secret name.
KAFKA_SSL_TRUSTSTORE_SECRET: default-cluster-ca-cert
# The Kafka port.
KAFKA_PORT: 9093
#############
# MQTT vars #
#############
# Enable MQTT message integration.
ENABLE_MQTT: false
# The namespace in OpenShift where the AMQP message broker will run.
MQTT_NAMESPACE: rabbitmq
# The MQTT port.
MQTT_PORT: 5672
# The MQTT host name.
MQTT_HOST_NAME: "rabbitmq.{{ MQTT_NAMESPACE }}.svc"
# The MQTT user.
MQTT_USERNAME: "user"
# The MQTT password.
#MQTT_PASSWORD: ""
#############
# AMQP vars #
#############
# Enable AMQP message integration.
ENABLE_AMQP: false
# The namespace in OpenShift where the AMQP message broker will run.
AMQP_NAMESPACE: rabbitmq
# The AMQP port.
AMQP_PORT: 5672
# The AMQP host name.
AMQP_HOST_NAME: "rabbitmq.{{ AMQP_NAMESPACE }}.svc"
# The AMQP user.
AMQP_USERNAME: "user"
# The AMQP password.
AMQP_PASSWORD: ""
#AMQP_HOST_NAME_PASSWORD: ""
# The AMQP virtual host.
AMQP_VIRTUAL_HOST: "%2F"
#################
# RabbitMQ vars #
#################
# Enable RabbitMQ message integration.
ENABLE_RABBITMQ: false
# The namespace in OpenShift where the AMQP message broker will run.
RABBITMQ_NAMESPACE: rabbitmq
# The AMQP port.
RABBITMQ_PORT: 30072
# The AMQP host name.
RABBITMQ_HOST_NAME: "rabbitmq.apps-crc.testing"
# The AMQP user.
RABBITMQ_USERNAME: "user"
# The AMQP password.
RABBITMQ_PASSWORD: ""
# The AMQP virtual host.
RABBITMQ_VIRTUAL_HOST: "/"
################################
# OpenShift Deployment Details #
################################
# The amount of memory requested when the pod is first created in OpenShift.
SITE_REQUESTS_MEMORY: "1500Mi"
# The amount of total memory that can be used by the pod in OpenShift.
SITE_LIMITS_MEMORY: "1500Mi"
# The amount of cpus requested when the pod is first created in OpenShift.
SITE_REQUESTS_CPU: "700m"
# The amount of total cpus that can be used by the pod in OpenShift.
SITE_LIMITS_CPU: "1"
# The number of pod replicas to run the site in OpenShift.
SITE_REPLICAS: 1
########################
# Enabled feature vars #
########################
# Enable data import in the site.
ENABLE_IMPORT_DATA: true
# Enable the Zookeeper cluster manager.
ENABLE_ZOOKEEPER_CLUSTER: false
# Enable support for Open Telemetry in the application.
ENABLE_OPEN_TELEMETRY: false
# Enable a login link and Keycloak integration in the application.
ENABLE_LOGIN: true
# Enable the code generation service for the project
ENABLE_CODE_GENERATION_SERVICE: true
# Set the userKey of the user creating an object in the database.
ENABLE_USER_KEY: true
# Set the sessionId of the user session creating an object in the database.
ENABLE_SESSION_ID: true
# Enable an object in the database to be archived.
ENABLE_ARCHIVED: true
# Enable an admin role.
ENABLE_ROLE_ADMIN: true
# Enable a super admin role.
ENABLE_ROLE_SUPER_ADMIN: true
# Enable an OpenID Connect Authentication.
ENABLE_OPENID_CONNECT: true
# Write API code into the project.
WRITE_API: true
# Write code comments into generated code.
WRITE_COMMENTS: true
#IMPORT_DATA_START_TIME_CompanyProduct: 12:12 America/Denver
#IMPORT_DATA_PERIOD_CompanyProduct: 20 Seconds
SITE_REDIRECTS:
- src: /hackathons
dest: /en-us/view/article/hackathons
- src: /websites
dest: /en-us/view/article/websites
#########
# Email #
#########
ENABLE_EMAIL: true
EMAIL_HOST: smtp.fastmail.com
EMAIL_PORT: 465
EMAIL_SSL: true
EMAIL_AUTH_METHOD: PLAIN
EMAIL_USERNAME: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name='email-smtp', namespace=SITE_NAMESPACE)[0].data['EMAIL_USERNAME'] | b64decode }}"
EMAIL_PASSWORD: "{{ query('kubernetes.core.k8s', kind='Secret', resource_name='email-smtp', namespace=SITE_NAMESPACE)[0].data['EMAIL_PASSWORD'] | b64decode }}"
EMAIL_FROM: [email protected]
EMAIL_ADMIN: [email protected]
#############
# Downloads #
#############
DOWNLOAD_PATH: "{{ lookup('env', 'HOME') }}/.local/src/{{ SITE_NAME }}-downloads"
############
# use case #
############
USE_CASE_SRC: "{{ PARENT_SRC }}/courses/computate-smart-website-builder/use-cases/online-business-use-case"
USE_CASE_SUMMARY_PATH: "{{ USE_CASE_SRC }}/02-models-summary.ipynb"
##########
# Square #
##########
SQUARE_ACCESS_TOKEN: UNKNOWN