-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvalues.schema.json
1062 lines (1062 loc) · 31.1 KB
/
values.schema.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/ValidatedPatterns",
"definitions": {
"ValidatedPatterns": {
"type": "object",
"additionalProperties": true,
"properties": {
"secretStore": {
"$ref": "#/definitions/SecretStore"
},
"main": {
"$ref": "#/definitions/Main"
},
"global": {
"$ref": "#/definitions/Global"
},
"clusterGroup": {
"$ref": "#/definitions/ClusterGroup"
}
},
"required": [
"clusterGroup"
],
"title": "ValidatedPatterns"
},
"SecretStore": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name of the external secret backend",
"default": "vault-backend"
},
"kind": {
"type": "string",
"description": "Type of the external secret backend",
"default": "ClusterSecretStore"
}
},
"required": [
"name",
"kind"
],
"title": "SecretsStore"
},
"Main": {
"type": "object",
"additionalProperties": true,
"required": [
"clusterGroupName"
],
"title": "Main",
"description": "This section contains the 'main' variables which are used by the install chart only and are passed to helm via the Makefile",
"properties": {
"clusterGroupName": {
"type": "string"
},
"multiSourceRepoUrl": {
"type": "string",
"description": "The URL repo for to be used by default when no repoURL is specified in a multisource application. Defaults to https://charts.validatedpatterns.io/"
},
"extraParameters": {
"type": "array",
"description": "Pass in extra Helm parameters to all ArgoCD Applications and the framework."
},
"experimentalCapabilities": {
"type": "string",
"description": "String to enable certain experimental capabilities in the operator and the framework."
},
"git": {
"type": "object",
"additionalProperties": false,
"properties": {
"repoUpstreamURL": {
"type": "string",
"description": "Upstream URL of the pattern's git repository. When set an in-cluster gitea instance gets spawned and repoURL is ignored"
},
"repoURL": {
"type": "string",
"description": "URL of the pattern's git repository"
},
"revision": {
"type": "string",
"description": "revision (branch/commit/ref) to use on the pattern's git repository"
}
}
},
"gitops": {
"type": "object",
"additionalProperties": true,
"properties": {
"channel": {
"type": "string",
"description": "The channel from which to install the gitops operator"
},
"operatorSource": {
"type": "string",
"description": "The catalog source from which to install the gitops operator"
}
}
},
"patternsOperator": {
"type": "object",
"additionalProperties": true,
"properties": {
"channel": {
"type": "string",
"description": "The channel from which to install the patterns operator"
},
"source": {
"type": "string",
"description": "The catalog source from which to install the patterns operator"
}
}
},
"multiSourceConfig": {
"type": "object",
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable the experimental support for multi source for the clustergroup chart"
},
"helmRepoUrl": {
"type": "string",
"description": "The helm repo URL for the clustergroup chart"
}
}
},
"analyticsUUID": {
"type": "string",
"description": "UUID used to generate analytics"
}
}
},
"Global": {
"type": "object",
"additionalProperties": true,
"properties": {
"pattern": {
"type": "string",
"readOnly": true,
"description": "The name of the pattern being installed. The default is the name of the repository's folder and is automatically set by the Makefile"
},
"clusterDomain": {
"type": "string",
"readOnly": true,
"description": "The FQDN domain of the cluster without the 'apps.' component. For example: mcg-hub.blueprints.rhecoeng.com. Gets set automatically by the framework"
},
"localClusterDomain": {
"type": "string",
"readOnly": true,
"description": "The FQDN domain of the cluster including the 'apps.' component. For example: apps.mcg-hub.blueprints.rhecoeng.com. Gets set automatically by the framework"
},
"targetRevision": {
"type": "string",
"readOnly": true,
"description": "revision (branch/commit/ref) to use on the pattern's git repository, it is set automatically by the pattern's operator"
},
"repoURL": {
"type": "string",
"readOnly": true,
"description": "URL of the pattern's git repository, it is set automatically by the pattern's operator"
},
"hubClusterDomain": {
"type": "string",
"readOnly": true,
"description": "The FQDN domain of the hub cluster including the 'apps.' component. For example: apps.mcg-hub.blueprints.rhecoeng.com. Gets set automatically by the framework. Only makes sense when using ACM"
},
"namespace": {
"type": "string",
"readOnly": true,
"description": "The namespace in which the ArgoCD instance is running. Automatically set to either 'openshift-operators' or '$ARGOCD_APP_NAMESPACE'"
},
"git": {
"$ref": "#/definitions/GlobalGit"
},
"options": {
"$ref": "#/definitions/Options"
},
"secretStore": {
"$ref": "#/definitions/GlobalSecretStore"
}
},
"required": [
"options"
],
"title": "Global"
},
"GlobalSecretStore": {
"type": "object",
"additionalProperties": false,
"properties": {
"backend": {
"type": "string",
"description": "Name of the secrets backend",
"default": "vault"
}
},
"title": "GlobalSecretsStore"
},
"GlobalGit": {
"type": "object",
"additionalProperties": true,
"description": "The git configuration used to support Tekton pipeline tasks.",
"properties": {
"hostname": {
"type": "string",
"description": "The hostname for the Git provider being used. e.g. github.com or gitlab.com"
},
"account": {
"type": "string",
"description": "The account for the Git provider. Accounts allow you to organize and control access to that code. There are three types of accounts on GitHub. Personal accounts Organization accounts Enterprise accounts e.g. hybrid-cloud-patterns or claudiol"
},
"email": {
"type": "string",
"description": "The contact email for the Git account. e.g. [email protected]"
},
"dev_revision": {
"type": "string",
"deprecated": true,
"description": "This is used by the pipelines as the branch for the development repository. e.g. v2.0. This is marked as deprecated"
}
},
"title": "GlobalGit"
},
"Options": {
"type": "object",
"additionalProperties": false,
"properties": {
"useCSV": {
"type": "boolean",
"deprecated": true
},
"syncPolicy": {
"type": "string",
"description": "This is the sync policy for the ArgoCD applications. When set to Automatic ArgoCD will automatically sync an application when it detects differences between the desired manifests in Git."
},
"installPlanApproval": {
"type": "string",
"deprecated": true,
"description": "This is used to approval strategy for the subscriptions of OpenShift Operators being installed. You can choose Automatic or Manual updates. NOTE: This setting is now available in the subcriptions description in the values file."
},
"autoApproveManualInstallPlans": {
"type": "boolean",
"description": "This is used to approve automatically those subscriptions of OpenShift Operators that are in Manual with a startingCSV version. You can choose True or False. Defaults: False."
},
"applicationRetryLimit": {
"type": "integer",
"description": "Number of failed sync attempt retries; unlimited number of attempts if less than 0"
}
},
"required": [
"installPlanApproval",
"syncPolicy",
"useCSV"
],
"title": "Options"
},
"ClusterGroup": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "The name of the cluster group."
},
"targetCluster": {
"type": "string"
},
"isHubCluster": {
"type": "boolean",
"description": "If set to true the values is used to identify whether this is the hub cluster or an edge/spoke cluster configuration."
},
"sharedValueFiles": {
"type": "array",
"description": "Templated value file paths."
},
"scheduler": {
"type": "object",
"description": "If set, it will become the spec of the scheduler/cluster in the managed cluster."
},
"namespaces": {
"anyOf": [
{
"type": "array"
},
{
"type": "object"
}
],
"description": "This is the array of namespaces that the VP framework will create. In addition, operator groups will also be created for each namespace.",
"items": {
"$ref": "#/definitions/Namespaces"
}
},
"nodes": {
"anyOf": [
{
"type": "array"
},
{
"type": "object"
}
],
"description": "Description of those nodes which ArgoCD will control the labels and/or annotations.",
"items": {
"$ref": "#/definitions/Nodes"
}
},
"indexImages": {
"anyOf": [
{
"type": "array"
},
{
"type": "object"
}
],
"description": "List of index images for overriding default catalog sources.",
"items": {
"$ref": "#/definitions/IndexImages"
}
},
"operatorgroupExcludes": {
"type": "array",
"description": "List of namespaces to exclude the creation of operator groups.",
"items": {
"type": "string"
}
},
"operatorgroupExcludeTargetNS": {
"type": "array",
"description": "Specify the list of namespaces where the target namespace field in the corresponding operatorgroup object should be excluded.",
"items": {
"type": "string"
}
},
"subscriptions": {
"anyOf": [
{
"type": "null"
},
{
"type": "array"
},
{
"type": "object"
}
],
"description": "Description of the subscriptions that the VP Framework will install in the cluster. Two ways of defining subscriptions: Using a list or using a dictionary.",
"items": {
"$ref": "#/definitions/Subscription"
}
},
"projects": {
"anyOf": [
{
"type": "array"
},
{
"type": "object"
}
],
"description": "The list of projects that will be created in the ArgoCD instances.",
"items": {
"type": "string"
}
},
"applications": {
"anyOf": [
{
"type": "array"
},
{
"type": "object"
}
],
"description": "Description of the applications that will be created in the ArgoCD instances. Two ways of defining applications: Using a list or using a dictionary.",
"items": {
"$ref": "#/definitions/Applications"
}
},
"argoCD": {
"$ref": "#/definitions/ArgoCD"
},
"imperative": {
"$ref": "#/definitions/Imperative"
},
"extraObjects": {
"type": "object",
"description": "Extra objects to add at the clustergroup level. Expected to be ArgoCD Resource Hooks."
},
"managedClusterGroups": {
"anyOf": [
{
"type": "array"
},
{
"type": "object"
}
],
"description": "Description of the managed clusters that ACM will be able to manage. Two ways of defining managed clusters: Using a list or using a dictionary.",
"items": {
"$ref": "#/definitions/ManagedClusterGroup"
}
}
},
"required": [
"applications",
"isHubCluster",
"name",
"namespaces",
"projects"
],
"title": "ClusterGroup"
},
"Namespaces": {
"anyOf": [
{
"type": "object"
},
{
"type": "string"
}
],
"description": "Description of the applications that will be created in the ArgoCD instances. The Application CRD is the Kubernetes resource object representing a deployed application instance in an environment. Two ways of defining applications: Using a list or using a dictionary.",
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "Name of the namespace."
},
"labels": {
"type": "object"
},
"annotations": {
"type": "object"
}
}
},
"Nodes": {
"type": "object",
"description": "Description of those nodes which ArgoCD will control the labels and/or annotations.",
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "Name of the node."
},
"labels": {
"type": "object"
},
"annotations": {
"type": "object"
}
}
},
"NameValue": {
"type": "object",
"description": "Description of the applications that will be created in the ArgoCD instances. The Application CRD is the Kubernetes resource object representing a deployed application instance in an environment. Two ways of defining applications: Using a list or using a dictionary.",
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "Name of the namespace."
},
"value": {
"type": "string",
"description": "Name of the namespace."
}
}
},
"Applications": {
"type": "object",
"description": "Description of the applications that will be created in the ArgoCD instances. The Application CRD is the Kubernetes resource object representing a deployed application instance in an environment. Two ways of defining applications: Using a list or using a dictionary.",
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "Name of the application in ArgoCD."
},
"repoURL": {
"type": "string",
"description": "RepoURL is the URL to the repository (Git or Helm) that contains the application manifests."
},
"targetRevision": {
"type": "string",
"description": "TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version."
},
"chart": {
"type": "string",
"description": "Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo."
},
"chartVersion": {
"type": "string",
"description": "The version of the helm chart to be used. Can be a regex like '0.0.*'."
},
"kustomize": {
"type": "boolean",
"description": "If set to true it will tell ArgoCD to use kustomize to deploy the application."
},
"plugin": {
"type": "object",
"description": "Plugin holds config management plugin specific options"
},
"extraValueFiles": {
"type": "array",
"description": "List of extra values files that will be passed to ArgoCD."
},
"extraHubClusterDomainFields": {
"type": "array",
"description": "List of extra fields that will be passed to ArgoCD."
},
"extraLocalClusterDomainFields": {
"type": "array",
"description": "List of extra fields that will be passed to ArgoCD."
},
"extraRepoURLFields": {
"type": "array",
"description": "List of extra fields that will be passed to ArgoCD."
},
"extraTargetRevisionFields": {
"type": "array",
"description": "List of extra fields that will be passed to ArgoCD."
},
"extraNamespaceFields": {
"type": "array",
"description": "List of extra fields that will be passed to ArgoCD."
},
"extraPatternNameFields": {
"type": "array",
"description": "List of extra fields that will be passed to ArgoCD."
},
"overrides": {
"type": "object"
},
"fileParameters": {
"type": "array",
"description": "FileParameters are file parameters to the helm template"
},
"ignoreDifferences": {
"type": "array",
"description": "IgnoreDifferences is a list of resources and their fields which should be ignored during comparison"
},
"syncPolicy": {
"type": "object",
"description": "SyncPolicy controls when and how a sync will be performed"
},
"namespace": {
"type": "string",
"description": "Namespace specifies the target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace"
},
"project": {
"type": "string",
"description": "Project is a reference to the project this application belongs to. The empty string means that application belongs to the 'default' project."
},
"path": {
"type": "string",
"description": "Path is a directory path within the Git repository, and is only valid for applications sourced from Git."
},
"annotations": {
"type": "object",
"description": "Annotations to add to the created Application object"
}
},
"required": [
"name",
"project"
],
"title": "Applications"
},
"ArgoCD": {
"type": "object",
"description": "Details for configuring ArgoCD instances in particular",
"additionalProperties": false,
"properties": {
"configManagementPlugins": {
"type": "array",
"items": {
"$ref": "#/definitions/ArgoCDConfigManagementPlugin"
},
"description": "The new configManagementPlugins array, will also generate configMaps to inject into the plugins"
},
"initContainers": {
"type": "array",
"description": "A list of initContainers to add to the repo-server if needed"
},
"resourceTrackingMethod": {
"type": "string",
"description": "ResourceTrackingMethod defines how Argo CD should track resources that it manages",
"enum": [
"annotation",
"label",
"annotation+label"
]
},
"resourceExclusions": {
"type": "string",
"description": "ResourceExclusions is used to completely ignore entire classes of resource group/kinds."
},
"resourceHealthChecks": {
"type": "array",
"items": {
"$ref": "#/definitions/ArgoCDResourceHealthChecks"
},
"description": "ResourceHealthChecks customizes resource health check behavior."
}
}
},
"ArgoCDConfigManagementPlugin": {
"type": "object",
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "Name for the config management plugin"
},
"image": {
"type": "string",
"description": "Image for a sidecar container"
},
"imagePullPolicy": {
"type": "string",
"description": "Image pull policy for the sidecar. Defaults to 'Always'"
},
"pluginConfig": {
"type": "string",
"description": "Configuration file to project into sidecar container. This will create a configMap if specified"
},
"pluginArgs": {
"type": "array",
"description": "Additional args to pass to the cmpserver command, usually loglevel"
}
},
"required": [
"name",
"image"
]
},
"ArgoCDResourceHealthChecks": {
"type": "object",
"additionalProperties": false,
"properties": {
"check": {
"type": "string"
},
"group": {
"type": "string"
},
"kind": {
"type": "string"
}
}
},
"IndexImages": {
"type": "object",
"description": "Details for overriding default catalog sources",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name for the custom catalog source."
},
"image": {
"type": "string",
"description": "Location of the index image."
}
}
},
"Imperative": {
"type": "object",
"additionalProperties": false,
"properties": {
"jobs": {
"type": "array",
"items": {
"$ref": "#/definitions/Job"
}
},
"image": {
"type": "string",
"default": "registry.redhat.io/ansible-automation-platform-22/ee-supported-rhel8:latest"
},
"namespace": {
"type": "string",
"default": "imperative",
"enum": [
"imperative"
]
},
"serviceAccountCreate": {
"type": "boolean"
},
"valuesConfigMap": {
"type": "string"
},
"cronJobName": {
"type": "string"
},
"jobName": {
"type": "string"
},
"imagePullPolicy": {
"type": "string",
"default": "Always",
"enum": [
"Always",
"IfNotPresent",
"Never"
]
},
"activeDeadlineSeconds": {
"type": "integer",
"default": 3600
},
"schedule": {
"type": "string",
"default": "*/10 * * * *"
},
"insecureUnsealVaultInsideClusterSchedule": {
"type": "string",
"default": "*/5 * * * *"
},
"verbosity": {
"type": "string",
"default": "",
"enum": [
"",
"-v",
"-vv",
"-vvv",
"-vvvv"
]
},
"serviceAccountName": {
"type": "string"
},
"clusterRoleName": {
"type": "string"
},
"clusterRoleYaml": {
"type": ["string", "array"]
},
"roleName": {
"type": "string"
},
"roleYaml": {
"type": "string"
},
"adminServiceAccountCreate": {
"type": "boolean"
},
"adminServiceAccountName": {
"type": "string"
},
"adminClusterRoleName": {
"type": "string"
}
},
"required": [
"jobs"
],
"title": "Imperative"
},
"Job": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"playbook": {
"type": "string"
},
"timeout": {
"type": ["integer", "string"]
},
"image": {
"type": "string",
"default": "registry.redhat.io/ansible-automation-platform-22/ee-supported-rhel8:latest"
},
"tags": {
"type": "string"
},
"extravars": {
"type": "array"
},
"verbosity": {
"type": "string"
}
},
"required": [
"name",
"playbook"
],
"title": "Job"
},
"ManagedClusterGroup": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"targetRevision": {
"type": "string"
},
"acmlabels": {
"type": "array",
"items": {
"$ref": "#/definitions/ACMLabels"
}
},
"clusterPools": {
"type": "object",
"items": {
"$ref": "#/definitions/ClusterPools"
}
},
"clusterDeployments": {
"type": "object",
"items": {
"$ref": "#/definitions/ClusterDeployments"
}
},
"clusterSelector": {
"type": "object",
"additionalProperties": true
},
"helmOverrides": {
"type": "array",
"items": {
"$ref": "#/definitions/HelmOverride"
}
}
},
"required": [],
"title": "ManagedClusterGroup"
},
"ClusterPools": {
"type": "object",
"additionalProperties": false,
"properties": {
"size": {
"type": "integer"
},
"name": {
"type": "string"
},
"openshiftVersion": {
"type": "string"
},
"baseDomain": {
"type": "string"
},
"platform": {
"type": "object",
"$ref": "#/definitions/ClusterPoolsPlatform"
},
"clusters": {
"type": "array"
}
},
"required": [
"name",
"openshiftVersion",
"baseDomain",
"platform",
"clusters"
],
"title": "ClusterPools"
},
"ClusterDeployments": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"openshiftVersion": {
"type": "string"
},
"baseDomain": {
"type": "string"
},
"platform": {
"type": "object",
"$ref": "#/definitions/ClusterPoolsPlatform"
}
},
"required": [
"name",
"openshiftVersion",
"baseDomain",
"platform"
],
"title": "ClusterDeployments"
},
"ClusterPoolsPlatform": {
"type": "object",
"additionalProperties": false,
"properties": {
"baseDomainResourceGroupName": {
"type": "string"
},
"region": {
"type": "string"
}
},
"required": [
"region"
],
"title": "ClusterPoolsPlatform"
},
"HelmOverride": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "boolean"
}
]
}
},
"required": [
"name",
"value"
],
"title": "HelmOverride"
},
"ACMLabels": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
],
"title": "ACMLabels"
},
"Subscription": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"namespaces": {
"type": "array"
},
"namespace": {
"type": "string"
},
"sourceNamespace": {
"type": "string"
},
"source": {
"type": "string"
},
"channel": {
"type": "string"
},
"csv": {
"type": "string"
},
"installPlanApproval": {
"type": "string",
"enum": [
"Manual",
"Automatic"
]
},
"annotations": {
"type": "object"
},
"config": {
"type": "object",
"$ref": "#/definitions/SubscriptionsConfigEnv"
},
"disabled": {
"type": "boolean"
},