-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample-ui.yaml
3032 lines (3032 loc) · 135 KB
/
sample-ui.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
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
hasPreviewPanel: true
steps:
- form:
elements:
- label:
hasLine: true
text: labels.basic_info
type: label-element
- label:
text: labels.database.name
schema:
$ref: schema#/properties/metadata/properties/release/properties/name
type: input
- fetch: getResources|core|v1|namespaces
label:
text: labels.namespace
schema:
$ref: schema#/properties/metadata/properties/release/properties/namespace
type: select
- fetch: getMongoDbVersions|catalog.kubedb.com|v1alpha1|mongodbversions
label:
text: labels.database.version
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/version
type: select
- individualItemDisabilityCheck: disableLableChecker
isArray: true
keys:
label:
text: labels.labels.key
label:
text: labels.labels.label
schema:
$ref: schema#/properties/resources/properties/appApplication/properties/metadata/properties/labels
type: key-value-input-form
values:
label:
text: labels.labels.value
schema:
$ref: schema#/properties/resources/properties/appApplication/properties/metadata/properties/labels/additionalProperties
type: input
- isArray: true
keys:
label:
text: labels.annotations.key
label:
text: labels.annotations.label
schema:
$ref: schema#/properties/resources/properties/appApplication/properties/metadata/properties/annotations
type: key-value-input-form
values:
label:
text: labels.annotations.value
schema:
$ref: schema#/properties/resources/properties/appApplication/properties/metadata/properties/annotations/additionalProperties
type: input
- hasDescription: true
label:
text: labels.terminationPolicy
options:
- description: options.terminationPolicy.delete.description
text: options.terminationPolicy.delete.label
value: Delete
- description: options.terminationPolicy.halt.description
text: options.terminationPolicy.halt.label
value: Halt
- description: options.terminationPolicy.wipeOut.description
text: options.terminationPolicy.wipeOut.label
value: WipeOut
- description: options.terminationPolicy.doNotTerminate.description
text: options.terminationPolicy.doNotTerminate.label
value: DoNotTerminate
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/terminationPolicy
type: radio
- elements:
- label:
hasLine: true
text: labels.database.secret
type: label-element
- fetch: getSecrets
if: hasExistingSecret
label:
text: labels.secret
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/authSecret/properties/name
type: select
- if: hasNoExistingSecret
label:
text: labels.secret
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/authSecret/properties/name
type: input
if: showAuthSecretField
- if: showAuthPasswordField
label:
text: labels.database.secret
schema:
$ref: schema#/properties/resources/properties/secretAuth/properties/metadata/properties/name
type: input
- elements:
- label:
hasLine: true
text: labels.new_secret_password
type: label-element
- if: showNewSecretCreateField
label:
text: labels.password
schema:
$ref: schema#/properties/resources/properties/secretAuth/properties/data/properties/password
type: input
if: showNewSecretCreateField
schema:
$ref: schema#/properties/resources/properties/secretAuth/properties/data
type: single-step-form
type: single-step-form
id: basic
title: steps.0.label
- form:
discriminator:
activeDatabaseMode:
default: Standalone
type: string
elements:
- computed: setDatabaseMode
hasDescription: true
label:
text: labels.database.mode
onChange: deleteDatabaseModePath
options:
- description: options.database.mode.Standalone.description
text: options.database.mode.Standalone.label
value: Standalone
- description: options.database.mode.Replicaset.description
text: options.database.mode.Replicaset.label
value: Replicaset
- description: options.database.mode.Sharded.description
text: options.database.mode.Sharded.label
value: Sharded
schema:
$ref: discriminator#/activeDatabaseMode
type: radio
- elements:
- label:
text: labels.replicaset.name
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/replicaSet/properties/name
type: input
- label:
text: labels.replicaset.number
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/replicas
type: input
if: isEqualToDatabaseMode|Replicaset
- elements:
- fetch: getResources|storage.k8s.io|v1|storageclasses
label:
text: labels.storage.class
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/storage/properties/storageClassName
type: select
- label:
text: labels.storage.size
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/storage/properties/resources/properties/requests/properties/storage
type: input
if: showCommonStorageClassAndSizeField
type: single-step-form
- elements:
- fetch: getResources|storage.k8s.io|v1|storageclasses
label:
text: labels.storage.class
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/shardTopology/properties/shard/properties/storage/properties/storageClassName
type: select
- label:
hasLine: true
text: labels.shardNodes
type: label-element
- label:
text: labels.shards
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/shardTopology/properties/shard/properties/shards
type: input
- label:
text: labels.storage.size
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/shardTopology/properties/shard/properties/storage/properties/resources/properties/requests/properties/storage
type: input
- label:
hasLine: true
text: labels.configServer
type: label-element
- label:
text: labels.storage.size
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/shardTopology/properties/configServer/properties/storage/properties/resources/properties/requests/properties/storage
type: input
- label:
hasLine: true
text: labels.mongos
type: label-element
- label:
text: labels.replicaset.number
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/shardTopology/properties/mongos/properties/replicas
type: input
if: isEqualToDatabaseMode|Sharded
type: single-step-form
id: topology
title: steps.1.label
- form:
discriminator:
configureTLS:
default: true
type: boolean
elements:
- computed: isValueExistInModel|/resources/kubedbComMongoDB/spec/tls
label:
text: labels.enable_tls
onChange: onTlsConfigureChange
schema:
$ref: discriminator#/configureTLS
type: switch
- elements:
- label:
text: labels.issuer_ref
type: label-element
- elements:
- computed: setApiGroup
disabled: true
label:
text: labels.api_group
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/issuerRef/properties/apiGroup
type: input
- label:
text: labels.kind
options:
- text: Issuer
value: Issuer
- text: ClusterIssuer
value: ClusterIssuer
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/issuerRef/properties/kind
type: select
- fetch: getIssuerRefsName
if: hasIssuerRefName
label:
text: labels.name
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/issuerRef/properties/name
type: select
- if: hasNoIssuerRefName
label:
text: labels.name
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/issuerRef/properties/name
type: input
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/issuerRef
type: single-step-form
- addFormLabel: labels.certificate
element:
elements:
- label:
text: labels.alias
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/alias
type: input
- label:
text: labels.secret_name
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/secretName
type: input
- label:
text: labels.duration
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/duration
type: input
- label:
text: labels.renew_before
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/renewBefore
type: input
- customClass: mb-15
label:
hasLine: true
text: labels.subject
type: label-element
- elements:
- element:
label:
text: labels.organization
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/organizations/items
type: input
label:
isSubsection: true
text: labels.organizations
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/organizations
type: list-input-form
- element:
label:
text: labels.country
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/countries/items
type: input
label:
isSubsection: true
text: labels.countries
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/countries
type: list-input-form
- element:
label:
text: labels.organizational_unit
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/organizationalUnits/items
type: input
label:
isSubsection: true
text: labels.organizational_units
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/organizationalUnits
type: list-input-form
- element:
label:
text: labels.province
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/provinces/items
type: input
label:
isSubsection: true
text: labels.provinces
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject/properties/provinces
type: list-input-form
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/subject
type: single-step-form
- element:
label:
text: labels.dns_name
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/dnsNames/items
type: input
hasLineLabel: true
label:
hasLine: true
text: labels.dns_names
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/dnsNames
type: list-input-form
- element:
label:
text: labels.ip_address
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/ipAddresses/items
type: input
label:
hasLine: true
text: labels.ip_addresses
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates/items/properties/ipAddresses
type: list-input-form
label:
text: labels.certificate
type: single-step-form
label:
text: labels.certificates
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/tls/properties/certificates
tableContents:
- inTableColumn: true
label:
text: labels.alias
path: alias
type: value
typeOfValue: string
- inTableColumn: true
label:
text: labels.secret_name
path: secretName
type: value
typeOfValue: string
- inTableColumn: true
label:
text: labels.duration
path: duration
type: value
typeOfValue: string
- inTableColumn: true
label:
text: labels.renew_before
path: renewBefore
type: value
typeOfValue: string
- label:
hasLine: true
text: labels.subject
type: label
- label:
isSubsection: true
text: labels.organizations
path: subject/organizations
type: value
typeOfValue: array
- label:
isSubsection: true
text: labels.countries
path: subject/countries
type: value
typeOfValue: array
- label:
isSubsection: true
text: labels.organizational_units
path: subject/organizationalUnits
type: value
typeOfValue: array
- label:
isSubsection: true
text: labels.provinces
path: subject/provinces
type: value
typeOfValue: array
- label:
hasLine: true
text: labels.dns_names
path: dnsNames
type: value
typeOfValue: array
- label:
hasLine: true
text: labels.ip_addresses
path: ipAddresses
type: value
typeOfValue: array
type: single-step-form-array
if: showTlsConfigureSection
type: single-step-form
type: single-step-form
id: tls
title: steps.2.label
- form:
discriminator:
prePopulateDatabase:
type: string
elements:
- computed: initPrePopulateDatabase
label:
text: labels.prePopulateDatabase
onChange: onPrePopulateDatabaseChange
options:
- text: options.yesOrNo.yes.text
value: "yes"
- text: options.yesOrNo.no.text
value: "no"
schema:
$ref: discriminator#/properties/prePopulateDatabase
type: radio
- discriminator:
dataSource:
type: string
elements:
- computed: initDataSource
label:
text: labels.dataSource
onChange: onDataSourceChange
options:
- text: options.dataSource.script.text
value: script
- text: options.dataSource.stashBackup.text
value: stashBackup
schema:
$ref: discriminator#/properties/dataSource
type: select
- discriminator:
sourceVolumeType:
type: string
elements:
- label:
text: labels.script.path
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/init/properties/script/properties/scriptPath
type: input
- label:
hasLine: true
text: labels.script.volume
type: label-element
- computed: initVolumeType
label:
text: labels.script.volumeType
onChange: onVolumeTypeChange
options:
- text: options.scriptSourceVolumeType.configMap.text
value: configMap
- text: options.scriptSourceVolumeType.secret.text
value: secret
schema:
$ref: discriminator#/properties/sourceVolumeType
type: select
- fetch: resourceNames|core|v1|configmaps
if: showConfigMapOrSecretName|configMap
label:
text: labels.script.volumeName
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/init/properties/script/properties/configMap/properties/name
type: select
- fetch: resourceNames|core|v1|secrets
if: showConfigMapOrSecretName|secret
label:
text: labels.script.volumeName
schema:
$ref: schema#/properties/resources/properties/kubedbComMongoDB/properties/spec/properties/init/properties/script/properties/secret/properties/secretName
type: select
if: showScriptOrStashForm|script
type: single-step-form
- elements:
- label:
hasLine: true
text: labels.restoreSession.title
type: label-element
- label:
text: labels.restoreSession.name
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/metadata/properties/name
type: input
- computed: initializeNamespace
disabled: true
label:
text: labels.namespace
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/metadata/properties/namespace
type: input
- label:
text: labels.restoreSession.snapshot
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/rules/properties/0/properties/snapshots/properties/0
type: input
- discriminator:
repositoryChoise:
type: string
elements:
- label:
hasLine: true
text: labels.repositories.title
type: label-element
- onChange: onInitRepositoryChoiseChange
options:
- text: options.createOrSelect.select.text
value: select
- text: options.createOrSelect.create.text
value: create
schema:
$ref: discriminator#/properties/repositoryChoise
type: radio
- fetch: resourceNames|stash.appscode.com|v1alpha1|repositories
if: showRepositorySelectOrCreate|select
label:
text: labels.repositories.name
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/repository/properties/name
type: select
- discriminator:
backendType:
type: string
elements:
- label:
text: labels.repositories.name
onChange: onInitRepositoryNameChange
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/metadata/properties/name
type: input
- computed: initializeNamespace
disabled: true
label:
text: labels.namespace
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/metadata/properties/namespace
type: input
- label:
text: labels.repositories.backend.title
type: label-element
- computed: initBackendType|/resources/stashAppscodeComRepositoryInitRepo
label:
text: labels.repositories.backend.type
onChange: onBackendTypeChange|/resources/stashAppscodeComRepositoryInitRepo
options:
- text: Azure
value: azure
- text: B2
value: b2
- text: Google Cloud Service
value: gcs
- text: Local
value: local
- text: Rest
value: rest
- text: S3
value: s3
- text: Swift
value: swift
schema:
$ref: discriminator#/properties/backendType
type: select
- elements:
- label:
text: labels.repositories.backend.container
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/azure/properties/container
type: input
- label:
text: labels.repositories.backend.prefix
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/azure/properties/prefix
type: input
- label:
text: labels.repositories.backend.maxConnections
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/azure/properties/maxConnections
type: input
if: showBackendForm|azure
type: single-step-form
- elements:
- label:
text: labels.repositories.backend.bucket
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/b2/properties/bucket
type: input
- label:
text: labels.repositories.backend.prefix
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/b2/properties/prefix
type: input
- label:
text: labels.repositories.backend.maxConnections
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/b2/properties/maxConnections
type: input
if: showBackendForm|b2
type: single-step-form
- elements:
- label:
text: labels.repositories.backend.bucket
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/gcs/properties/bucket
type: input
- label:
text: labels.repositories.backend.prefix
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/gcs/properties/prefix
type: input
- label:
text: labels.repositories.backend.maxConnections
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/gcs/properties/maxConnections
type: input
if: showBackendForm|gcs
type: single-step-form
- discriminator:
volumeSource:
type: string
elements:
- computed: initVolumeSource|/resources/stashAppscodeComRepositoryInitRepo
label:
text: labels.repositories.backend.volumeSource
onChange: onVolumeSourceChange|/resources/stashAppscodeComRepositoryInitRepo
options:
- text: Host Path
value: hostPath
- text: NFS
value: nfs
- text: Persistant Volume Claim
value: persistentVolumeClaim
schema:
$ref: discriminator#/properties/volumeSource
type: select
- elements:
- label:
text: labels.repositories.backend.path
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/hostPath/properties/path
type: input
- label:
text: labels.repositories.backend.mountPath
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/hostPath/properties/mountPath
type: input
- label:
text: labels.repositories.backend.subPath
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/hostPath/properties/subPath
type: input
if: showVolumeSourceForm|hostPath
label:
text: Host Path form
type: single-step-form
- elements:
- label:
text: labels.repositories.backend.server
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/nfs/properties/server
type: input
- label:
text: labels.repositories.backend.path
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/nfs/properties/path
type: input
- label:
text: labels.repositories.backend.mountPath
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/nfs/properties/mountPath
type: input
- label:
text: labels.repositories.backend.subPath
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/nfs/properties/subPath
type: input
if: showVolumeSourceForm|nfs
label:
text: NFS form
type: single-step-form
- elements:
- fetch: resourceNames|core|v1|persistentvolumeclaims
label:
text: labels.repositories.backend.pvcName
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/persistentVolumeClaim/properties/claimName
type: select
- label:
text: labels.repositories.backend.mountPath
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/persistentVolumeClaim/properties/mountPath
type: input
- label:
text: labels.repositories.backend.subPath
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/local/properties/persistentVolumeClaim/properties/subPath
type: input
if: showVolumeSourceForm|persistentVolumeClaim
label:
text: Persistant Volume Claim form
type: single-step-form
if: showBackendForm|local
type: single-step-form
- elements:
- label:
text: labels.repositories.backend.url
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/rest/properties/url
type: input
if: showBackendForm|rest
type: single-step-form
- elements:
- label:
text: labels.repositories.backend.endPoint
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/s3/properties/endpoint
type: input
- label:
text: labels.repositories.backend.bucket
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/s3/properties/bucket
type: input
- label:
text: labels.repositories.backend.prefix
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/s3/properties/prefix
type: input
- label:
text: labels.repositories.backend.region
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/s3/properties/region
type: input
if: showBackendForm|s3
type: single-step-form
- elements:
- label:
text: labels.repositories.backend.container
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/swift/properties/container
type: input
- label:
text: labels.repositories.backend.prefix
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/swift/properties/prefix
type: input
if: showBackendForm|swift
type: single-step-form
- fetch: resourceNames|core|v1|secrets
label:
text: labels.repositories.backend.secret
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRepositoryInitRepo/properties/spec/properties/backend/properties/storageSecretName
type: select
if: showRepositorySelectOrCreate|create
type: single-step-form
type: single-step-form
- discriminator:
customizeRestoreJobRuntimeSettings:
type: string
elements:
- computed: initCustomizeRestoreJobRuntimeSettings
label:
text: labels.runtimeSettings.choise
onChange: onCustomizeRestoreJobRuntimeSettingsChange
options:
- text: options.yesOrNo.yes.text
value: "yes"
- text: options.yesOrNo.no.text
value: "no"
schema:
$ref: discriminator#/properties/customizeRestoreJobRuntimeSettings
type: radio
- elements:
- elements:
- label:
hasLine: true
text: labels.runtimeSettings.pod.title
type: label-element
- fetch: resourceNames|core|v1|serviceaccounts
label:
text: labels.runtimeSettings.pod.serviceAccountName
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/serviceAccountName
type: select
- fetch: getImagePullSecrets
label:
text: labels.runtimeSettings.pod.imagePullSecrets
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/imagePullSecrets
type: multiselect
- label:
hasLine: true
text: labels.runtimeSettings.securityContext.title
type: label-element
- label:
text: labels.runtimeSettings.securityContext.fsGroup
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/fsGroup
type: input
- label:
text: labels.runtimeSettings.securityContext.runAsNonRoot
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/runAsNonRoot
type: switch
- label:
text: labels.runtimeSettings.securityContext.runAsUser
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/runAsUser
type: input
- label:
text: labels.runtimeSettings.securityContext.runAsGroup
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/runAsGroup
type: input
- label:
isSubsection: true
text: labels.runtimeSettings.securityContext.seLinuxOptions.title
type: label-element
- label:
text: labels.runtimeSettings.securityContext.seLinuxOptions.level
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/seLinuxOptions/properties/level
type: input
- label:
text: labels.runtimeSettings.securityContext.seLinuxOptions.role
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/seLinuxOptions/properties/role
type: input
- label:
text: labels.runtimeSettings.securityContext.seLinuxOptions.type
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/seLinuxOptions/properties/type
type: input
- label:
text: labels.runtimeSettings.securityContext.seLinuxOptions.user
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/pod/properties/securityContext/properties/seLinuxOptions/properties/user
type: input
label:
text: Pod runtime settings
type: single-step-form
- elements:
- label:
hasLine: true
text: labels.runtimeSettings.container.title
type: label-element
- elements:
- label:
hasLine: true
text: labels.runtimeSettings.container.resources.title
type: label-element
- label:
isSubsection: true
text: labels.runtimeSettings.container.resources.requests
type: label-element
- label:
text: labels.runtimeSettings.container.resources.cpu
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/resources/properties/requests/properties/cpu
type: input
- label:
text: labels.runtimeSettings.container.resources.memory
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/resources/properties/requests/properties/memory
type: input
- label:
isSubsection: true
text: labels.runtimeSettings.container.resources.limits
type: label-element
- label:
text: labels.runtimeSettings.container.resources.cpu
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/resources/properties/limits/properties/cpu
type: input
- label:
text: labels.runtimeSettings.container.resources.memory
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/resources/properties/limits/properties/memory
type: input
label:
text: Resources
type: single-step-form
- elements:
- label:
hasLine: true
text: labels.runtimeSettings.container.nice.title
type: label-element
- label:
text: labels.runtimeSettings.container.nice.adjustment
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/nice/properties/adjustment
type: input
label:
text: Nice
type: single-step-form
- elements:
- label:
hasLine: true
text: labels.runtimeSettings.container.ionice.title
type: label-element
- label:
text: labels.runtimeSettings.container.ionice.class
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/ionice/properties/class
type: input
- label:
text: labels.runtimeSettings.container.ionice.classData
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/ionice/properties/classData
type: input
label:
text: Ionice
type: single-step-form
- elements:
- label:
hasLine: true
text: labels.runtimeSettings.securityContext.title
type: label-element
- label:
text: labels.runtimeSettings.securityContext.privileged
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/securityContext/properties/privileged
type: switch
- label:
text: labels.runtimeSettings.securityContext.runAsNonRoot
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/securityContext/properties/runAsNonRoot
type: switch
- label:
text: labels.runtimeSettings.securityContext.runAsUser
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/securityContext/properties/runAsUser
type: input
- label:
text: labels.runtimeSettings.securityContext.runAsGroup
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/securityContext/properties/runAsGroup
type: input
- elements:
- label:
isSubsection: true
text: labels.runtimeSettings.securityContext.seLinuxOptions.title
type: label-element
- label:
text: labels.runtimeSettings.securityContext.seLinuxOptions.level
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/securityContext/properties/seLinuxOptions/properties/level
type: input
- label:
text: labels.runtimeSettings.securityContext.seLinuxOptions.role
schema:
$ref: schema#/properties/resources/properties/stashAppscodeComRestoreSessionInit/properties/spec/properties/runtimeSettings/properties/container/properties/securityContext/properties/seLinuxOptions/properties/role
type: input
- label:
text: labels.runtimeSettings.securityContext.seLinuxOptions.type
schema: