-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathSynapseDefaults.cs
More file actions
1168 lines (956 loc) · 44 KB
/
SynapseDefaults.cs
File metadata and controls
1168 lines (956 loc) · 44 KB
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright © 2024-Present The Synapse Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"),
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
using Neuroglia.Data.Infrastructure.ResourceOriented;
using Synapse.Resources;
using System.Diagnostics;
using System.Reflection;
namespace Synapse;
/// <summary>
/// Exposes defaults about Synapse
/// </summary>
public static class SynapseDefaults
{
/// <summary>
/// Gets the default group for Synapse resources
/// </summary>
public const string ResourceGroup = "synapse.io";
/// <summary>
/// Exposes Synapse audiences
/// </summary>
public static class Audiences
{
/// <summary>
/// Gets the Synapse API audience
/// </summary>
public const string Api = "synapse-api";
}
/// <summary>
/// Exposes constants about cloud events produced by Synapse
/// </summary>
public static class CloudEvents
{
/// <summary>
/// Gets the type prefix for all cloud events produced by Synapse
/// </summary>
public const string TypePrefix = "io.synapse-wfms.";
/// <summary>
/// Exposes constants about the Synapse cloud event bus
/// </summary>
public static class Bus
{
/// <summary>
/// Gets the name of the stream used to observe cloud events published to the Synapse cloud event bus
/// </summary>
public const string StreamName = "cloud-events";
/// <summary>
/// Gets the name of the field used to store the serialized cloud event
/// </summary>
public const string EventFieldName = "event";
/// <summary>
/// Gets the key of the list used to store all existing consumer groups
/// </summary>
public const string ConsumerGroupListKey = "cloud-events-consumer-groups";
/// <summary>
/// Gets the LUA script used to distribute cloud event bus messages amongst consumer groups
/// </summary>
public static string MessageDistributionScript = @"
local message = redis.call('RPOP', KEYS[1]);
if message then
local consumerGroups = redis.call('SMEMBERS', KEYS[2]);
for _, group in ipairs(consumerGroups) do
redis.call('LPUSH', group, message);
end;
end;
return message;
";
}
/// <summary>
/// Exposes constants about workflow-related cloud events
/// </summary>
public static class Workflow
{
/// <summary>
/// Gets the type prefix for all workflow-related cloud events produced by Synapse
/// </summary>
public const string TypePrefix = CloudEvents.TypePrefix + "workflow.";
/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow started
/// </summary>
public static class Started
{
const string TypeName = "started";
/// <summary>
/// Gets the type of the workflow started cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow has been suspended
/// </summary>
public static class Suspended
{
const string TypeName = "suspended";
/// <summary>
/// Gets the type of the workflow suspended cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow has been resumed
/// </summary>
public static class Resumed
{
const string TypeName = "resumed";
/// <summary>
/// Gets the type of the workflow resumed cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow has started correlating events
/// </summary>
public static class CorrelationStarted
{
const string TypeName = "correlation-started";
/// <summary>
/// Gets the type of the workflow correlation started cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow has finished correlating events
/// </summary>
public static class CorrelationCompleted
{
const string TypeName = "correlation-completed";
/// <summary>
/// Gets the type of the workflow correlation completed cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow has faulted
/// </summary>
public static class Faulted
{
const string TypeName = "faulted";
/// <summary>
/// Gets the type of the workflow faulted cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow ran to completion
/// </summary>
public static class Completed
{
const string TypeName = "completed";
/// <summary>
/// Gets the type of the workflow completed cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that the execution of a workflow has been cancelled
/// </summary>
public static class Cancelled
{
const string TypeName = "cancelled";
/// <summary>
/// Gets the type of the workflow cancelled cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that the execution of a workflow has ended
/// </summary>
public static class Ended
{
const string TypeName = "ended";
/// <summary>
/// Gets the type of the workflow ended cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
}
/// <summary>
/// Exposes constants about task-related cloud events
/// </summary>
public static class Task
{
/// <summary>
/// Gets the type prefix for all task-related cloud events produced by Synapse
/// </summary>
public const string TypePrefix = CloudEvents.TypePrefix + "task.";
/// <summary>
/// Exposes constants about the cloud event used to notify that a task has been created
/// </summary>
public static class Created
{
const string TypeName = "created";
/// <summary>
/// Gets the type of the task created cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a task started
/// </summary>
public static class Started
{
const string TypeName = "started";
/// <summary>
/// Gets the type of the task started cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a task has been suspended
/// </summary>
public static class Suspended
{
const string TypeName = "suspended";
/// <summary>
/// Gets the type of the task suspended cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a task has been resumed
/// </summary>
public static class Resumed
{
const string TypeName = "resumed";
/// <summary>
/// Gets the type of the task resumed cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a task is being retried
/// </summary>
public static class Retrying
{
const string TypeName = "retrying";
/// <summary>
/// Gets the type of the retrying task cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a task has been skipped
/// </summary>
public static class Skipped
{
const string TypeName = "skipped";
/// <summary>
/// Gets the type of the task skipped cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a task has faulted
/// </summary>
public static class Faulted
{
const string TypeName = "faulted";
/// <summary>
/// Gets the type of the task faulted cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that a task ran to completion
/// </summary>
public static class Completed
{
const string TypeName = "completed";
/// <summary>
/// Gets the type of the task completed cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that the execution of a task has been cancelled
/// </summary>
public static class Cancelled
{
const string TypeName = "cancelled";
/// <summary>
/// Gets the type of the task cancelled cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
/// <summary>
/// Exposes constants about the cloud event used to notify that the execution of a task has ended
/// </summary>
public static class Ended
{
const string TypeName = "ended";
/// <summary>
/// Gets the type of the task ended cloud event version 1
/// </summary>
public const string v1 = TypePrefix + TypeName + ".v1";
}
}
}
/// <summary>
/// Exposes Synapse environment variables
/// </summary>
public static class EnvironmentVariables
{
/// <summary>
/// Gets the prefix for all Synapse environment variables
/// </summary>
public const string Prefix = "SYNAPSE_";
/// <summary>
/// Gets the environment variable used to configure Synapse to skip certificate validation by default, for example when performing HTTP requests
/// </summary>
public const string SkipCertificateValidation = Prefix + "SKIP_CERTIFICATE_VALIDATION";
/// <summary>
/// Exposes constants about API-related environment variables
/// </summary>
public static class Api
{
/// <summary>
/// Gets the prefix for all API related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "API_";
/// <summary>
/// Gets the environment variable used to configure the base uri of the Synapse API to use
/// </summary>
public const string Uri = Prefix + "URI";
/// <summary>
/// Gets the token to use to connect to the Synapse API
/// </summary>
public const string Token = Prefix + "TOKEN";
/// <summary>
/// Exposes constants about environment variables related to API authentication
/// </summary>
public static class Authentication
{
/// <summary>
/// Gets the prefix for all API related environment variables
/// </summary>
public const string Prefix = Api.Prefix + "AUTH_";
/// <summary>
/// Gets the name of the environment variables used to specify the YAML file that defines the users to generate a static token for
/// </summary>
public const string File = Prefix + "TOKEN_FILE";
/// <summary>
/// Exposes constants about environment variables related to the API's JWT Bearer authentication scheme, if any
/// </summary>
public static class Jwt
{
/// <summary>
/// Gets the prefix for all JWT related environment variables
/// </summary>
public const string Prefix = Authentication.Prefix + "JWT_";
/// <summary>
/// Gets the name of the environment variables used to specify the JWT authority to use
/// </summary>
public const string Authority = Prefix + "AUTHORITY";
/// <summary>
/// Gets the name of the environment variables used to specify the JWT audience
/// </summary>
public const string Audience = Prefix + "AUDIENCE";
/// <summary>
/// Gets the name of the environment variables used to configure the key used to verify the signature of JWT tokens
/// </summary>
public const string SigningKey = Prefix + "SIGNING_KEY";
/// <summary>
/// Gets the name of the environment variables used to configure the expected issuer of JWT tokens
/// </summary>
public const string Issuer = Prefix + "ISSUER";
/// <summary>
/// Gets the name of the environment variables used to configure whether or not to validate the issuer of JWT tokens
/// </summary>
public const string ValidateIssuer = Prefix + "VALIDATE_ISSUER";
}
/// <summary>
/// Exposes constants about environment variables related to the API's OIDC authentication scheme, if any
/// </summary>
public static class Oidc
{
/// <summary>
/// Gets the prefix for all OIDC related environment variables
/// </summary>
public const string Prefix = Authentication.Prefix + "OIDC_";
/// <summary>
/// Gets the name of the environment variables used to specify the OIDC authority to use
/// </summary>
public const string Authority = Prefix + "AUTHORITY";
/// <summary>
/// Gets the name of the environment variables used to specify the OIDC client id
/// </summary>
public const string ClientId = Prefix + "CLIENT_ID";
/// <summary>
/// Gets the name of the environment variables used to specify the OIDC client secret
/// </summary>
public const string ClientSecret = Prefix + "CLIENT_SECRET";
/// <summary>
/// Gets the name of the environment variables used to define the comma-separated OIDC scope(s) to use
/// </summary>
public const string Scope = Prefix + "SCOPE";
/// <summary>
/// Gets the name of the environment variables used to define the key used by the OIDC authority to sign tokens
/// </summary>
public const string SigningKey = Prefix + "SIGNING_KEY";
}
}
/// <summary>
/// Exposes constants about environment variables related to cloud events published by the API
/// </summary>
public static class CloudEvents
{
/// <summary>
/// Gets the prefix for all API related environment variables
/// </summary>
public const string Prefix = Api.Prefix + "CLOUD_EVENTS_";
/// <summary>
/// Gets the absolute uri of the endpoint the API must publish cloud events to
/// </summary>
public const string Endpoint = Prefix + "ENDPOINT";
}
}
/// <summary>
/// Exposes constants about correlator-related environment variables
/// </summary>
public static class Correlator
{
/// <summary>
/// Gets the prefix for all correlator related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "CORRELATOR_";
/// <summary>
/// Gets the environment variable used to configure the correlator's namespace
/// </summary>
public const string Namespace = Prefix + "NAMESPACE";
/// <summary>
/// Gets the environment variable used to configure the correlator's name
/// </summary>
public const string Name = Prefix + "NAME";
/// <summary>
/// Exposes constants about the cloud events related environment variables of a correlator
/// </summary>
public static class Events
{
/// <summary>
/// Gets the prefix for all correlator related environment variables
/// </summary>
public const string Prefix = Correlator.Prefix + "EVENTS_";
/// <summary>
/// Gets the name of the consumer group the correlator to configure belongs to, if any
/// </summary>
public const string ConsumerGroup = Prefix + "CONSUMER";
}
}
/// <summary>
/// Exposes constants about dashboard-related environment variables
/// </summary>
public static class Dashboard
{
/// <summary>
/// Gets the prefix for all dashboard related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "DASHBOARD_";
/// <summary>
/// Gets the environment variable used to determine whether or not to serve the dashboard
/// </summary>
public const string Serve = Prefix + "SERVE";
}
/// <summary>
/// Exposes constants about database-related environment variables
/// </summary>
public static class Database
{
/// <summary>
/// Gets the prefix for all correlator related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "DATABASE_";
/// <summary>
/// Exposes constants about environment variables related to database seeding
/// </summary>
public static class Seeding
{
/// <summary>
/// Gets the prefix for all API related environment variables
/// </summary>
public const string Prefix = Database.Prefix + "SEEDING_";
/// <summary>
/// Gets the name of the environment variables used to configure whether or not to reset the database upon starting the API server
/// </summary>
public const string Reset = Prefix + "RESET";
/// <summary>
/// Gets the name of the environment variables used to configure the directory from which to load the static resources used to seed the database
/// </summary>
public const string Directory = Prefix + "DIRECTORY";
/// <summary>
/// Gets the name of the environment variables used to configure whether or not to overwrite existing resources
/// </summary>
public const string Overwrite = Prefix + "OVERWRITE";
/// <summary>
/// Gets the name of the environment variables used to configure the GLOB pattern used to match the static resource files to use to seed the database
/// </summary>
public const string FilePattern = Prefix + "FILE_PATTERN";
}
}
/// <summary>
/// Exposes constants about operator-related environment variables
/// </summary>
public static class Operator
{
/// <summary>
/// Gets the prefix for all operator related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "OPERATOR_";
/// <summary>
/// Gets the environment variable used to configure the operator's namespace
/// </summary>
public const string Namespace = Prefix + "NAMESPACE";
/// <summary>
/// Gets the environment variable used to configure the operator's name
/// </summary>
public const string Name = Prefix + "NAME";
}
/// <summary>
/// Exposes constants about runner-related environment variables
/// </summary>
public static class Runner
{
/// <summary>
/// Gets the prefix for all runner related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "RUNNER_";
/// <summary>
/// Gets the environment variable used to configure the API used by runners
/// </summary>
public const string Api = Prefix + "API";
/// <summary>
/// Gets the environment variable used to configure the container platform used by runners
/// </summary>
public const string ContainerPlatform = Prefix + "CONTAINER_PLATFORM";
/// <summary>
/// Gets the environment variable used to configure whether or not runners should publish lifecycle events
/// </summary>
public const string LifecycleEvents = Prefix + "LIFECYCLE_EVENTS";
/// <summary>
/// Gets the environment variable used to configure the runner's namespace
/// </summary>
public const string Namespace = Prefix + "NAMESPACE";
/// <summary>
/// Gets the environment variable used to configure the runner's name
/// </summary>
public const string Name = Prefix + "NAME";
/// <summary>
/// Exposes constants about environment variables related to runner cloud events
/// </summary>
public static class CloudEvents
{
/// <summary>
/// Gets the prefix for all environment variables related to runner cloud events
/// </summary>
public const string Prefix = Runner.Prefix + "CLOUD_EVENTS_";
/// <summary>
/// Gets the environment variable used to configure the runner's cloud event sink
/// </summary>
public const string Sink = Prefix + "SINK";
}
}
/// <summary>
/// Exposes constants about runtime-related environment variables
/// </summary>
public static class Runtime
{
/// <summary>
/// Gets the prefix for all runtime related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "RUNTIME_";
/// <summary>
/// Gets the environment variable used to configure the runtime mode
/// </summary>
public const string Mode = Prefix + "MODE";
/// <summary>
/// Exposes constants about Docker runtime-related environment variables
/// </summary>
public static class Docker
{
/// <summary>
/// Gets the prefix for all Docker runtime related environment variables
/// </summary>
public const string Prefix = Runtime.Prefix + "DOCKER_";
/// <summary>
/// Gets the environment variable used to specify the YAML file used to configure the Docker runner container
/// </summary>
public const string Container = Prefix + "CONTAINER";
/// <summary>
/// Gets the environment variable used to specify the YAML file used to configure the Docker runner host
/// </summary>
public const string Host = Prefix + "HOST";
/// <summary>
/// Gets the environment variable used to configure the network runner containers should be connected to
/// </summary>
public const string Network = Prefix + "NETWORK";
/// <summary>
/// Exposes constants about environment variables used to configure the API of a Docker runtime
/// </summary>
public static class Api
{
/// <summary>
/// Gets the prefix for all Docker runtime API related environment variables
/// </summary>
public const string Prefix = Docker.Prefix + "API_";
/// <summary>
/// Gets the environment variable used to configure the endpoint of the Docker API to use
/// </summary>
public const string Endpoint = Prefix + "ENDPOINT";
/// <summary>
/// Gets the environment variable used to configure the version of the Docker API to use
/// </summary>
public const string Version = Prefix + "VERSION";
}
/// <summary>
/// Exposes constants about environment variables used to configure the runner images of a Docker runtime
/// </summary>
public static class Image
{
/// <summary>
/// Gets the prefix for all Docker runtime image related environment variables
/// </summary>
public const string Prefix = Docker.Prefix + "IMAGE_";
/// <summary>
/// Gets the environment variable used to configure the image registry to use when pulling runner images
/// </summary>
public const string Registry = Prefix + "REGISTRY";
/// <summary>
/// Gets the environment variable used to configure the policy to use when pulling runner images
/// </summary>
public const string PullPolicy = Prefix + "PULL_POLICY";
}
/// <summary>
/// Exposes constants about environment variables used to configure the secrets used by a Docker runtime
/// </summary>
public static class Secrets
{
/// <summary>
/// Gets the prefix for all Docker runtime secrets related environment variables
/// </summary>
public const string Prefix = Docker.Prefix + "SECRETS_";
/// <summary>
/// Gets the environment variable used to configure the directory that contains the secrets to mount onto runner containers
/// </summary>
public const string Directory = Prefix + "DIRECTORY";
/// <summary>
/// Gets the environment variable used to configure the directory to mount the secrets volume to
/// </summary>
public const string MountPath = Prefix + "MOUNT_PATH";
}
}
/// <summary>
/// Exposes constants about Kubernetes runtime-related environment variables
/// </summary>
public static class Kubernetes
{
/// <summary>
/// Gets the prefix for all Kubernetes runtime related environment variables
/// </summary>
public const string Prefix = Runtime.Prefix + "K8S_";
/// <summary>
/// Gets the environment variable used to configure the path to the Kubeconfig file to use
/// </summary>
public const string Kubeconfig = Prefix + "KUBECONFIG";
/// <summary>
/// Gets the environment variable used to specify the YAML file used to configure the Kubernetes runner pod
/// </summary>
public const string Pod = Prefix + "POD";
/// <summary>
/// Gets the environment variable used to configure the namespace to create runner pods into
/// </summary>
public const string Namespace = Prefix + "NAMESPACE";
/// <summary>
/// Gets the environment variable used to configure the name of the service account that grants the runner the ability to spawn containers when its container platform has been set to `kubernetes`
/// </summary>
public const string ServiceAccount = Prefix + "SERVICE_ACCOUNT";
/// <summary>
/// Exposes constants about environment variables used to configure the secrets used by a Docker runtime
/// </summary>
public static class Secrets
{
/// <summary>
/// Gets the prefix for all Kubernetes runtime secrets related environment variables
/// </summary>
public const string Prefix = Kubernetes.Prefix + "SECRETS_";
/// <summary>
/// Gets the environment variable used to configure the name of the volume onto which to mount secrets
/// </summary>
public const string VolumeName = Prefix + "VOLUME_NAME";
/// <summary>
/// Gets the environment variable used to configure the directory to mount the secrets volume to
/// </summary>
public const string MountPath = Prefix + "MOUNT_PATH";
}
}
/// <summary>
/// Exposes constants about Native runtime-related environment variables
/// </summary>
public static class Native
{
/// <summary>
/// Gets the prefix for all native runtime related environment variables
/// </summary>
public const string Prefix = Runtime.Prefix + "NATIVE_";
/// <summary>
/// Gets the environment variable used to configure the working directory that contains the runner binaries
/// </summary>
public const string Directory = Prefix + "DIRECTORY";
/// <summary>
/// Gets the environment variable used to configure the path to the runner's executable file
/// </summary>
public const string Executable = Prefix + "EXECUTABLE";
/// <summary>
/// Gets the environment variable used to configure the directory that contains the secrets made available to runners
/// </summary>
public const string SecretsDirectory = Prefix + "SECRETS_DIRECTORY";
}
}
/// <summary>
/// Exposes constants about secrets-related environment variables
/// </summary>
public static class Secrets
{
/// <summary>
/// Gets the prefix for all secrets related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "SECRETS_";
/// <summary>
/// Gets the name of the environment variable used to configure the path to the directory that contains secrets files
/// </summary>
public const string Directory = Prefix + "DIRECTORY";
}
/// <summary>
/// Exposes constants about service account related environment variables
/// </summary>
public static class ServiceAccount
{
/// <summary>
/// Gets the prefix for all operator related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "SERVICEACCOUNT_";
/// <summary>
/// Gets the environment variable used to configure the service account name of a Synapse Runner
/// </summary>
public const string Name = Prefix + "NAME";
/// <summary>
/// Gets the environment variable used to configure the key of a Synapse Runner's service account
/// </summary>
public const string Key = Prefix + "KEY";
}
/// <summary>
/// Exposes constants about workflow-related environment variables
/// </summary>
public static class Workflow
{
/// <summary>
/// Gets the prefix for all api related environment variables
/// </summary>
public const string Prefix = EnvironmentVariables.Prefix + "WORKFLOW_";
/// <summary>
/// Gets the environment variable that holds the qualified name of workflow instance to run
/// </summary>
public const string Instance = Prefix + "INSTANCE";
}
}
/// <summary>
/// Exposes constants about Synapse containers
/// </summary>
public static class Containers
{
/// <summary>
/// Exposes constants about Synapse container images
/// </summary>
public static class Images
{
static string? _version;
/// <summary>
/// Gets the name of the Synapse container image registry
/// </summary>
public const string ImageRegistry = "ghcr.io/serverlessworkflow/synapse";
/// <summary>
/// Gets the current version of Synapse container images
/// </summary>
public static string Version
{
get
{
if (!string.IsNullOrWhiteSpace(_version)) return _version;
_version = typeof(SynapseDefaults).Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion ?? "latest";
if (_version.EndsWith('-')) _version = _version[..^1];
if (_version.Contains('+')) _version = _version[.._version.IndexOf('+')];
return _version;
}
}
/// <summary>
/// Gets the name of the Synapse API container image
/// </summary>
public static readonly string Api = $"{ImageRegistry}/api:{Version}";
/// <summary>
/// Gets the name of the Synapse Correlator container image
/// </summary>
public static readonly string Correlator = $"{ImageRegistry}/correlator:{Version}";
/// <summary>
/// Gets the name of the Synapse Operator container image
/// </summary>
public static readonly string Operator = $"{ImageRegistry}/operator:{Version}";
/// <summary>
/// Gets the name of the Synapse Runner container image
/// </summary>
public static readonly string Runner = $"{ImageRegistry}/runner:{Version}";
}
}