-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathruntime-component.clusterserviceversion.yaml
More file actions
1608 lines (1608 loc) · 75.2 KB
/
runtime-component.clusterserviceversion.yaml
File metadata and controls
1608 lines (1608 loc) · 75.2 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
apiVersion: operators.coreos.com/v1alpha1
kind: ClusterServiceVersion
metadata:
annotations:
alm-examples: |-
[
{
"apiVersion": "rc.app.stacks/v1",
"kind": "RuntimeComponent",
"metadata": {
"name": "runtimecomponent-sample"
},
"spec": {
"applicationImage": "icr.io/appcafe/open-liberty/samples/getting-started@sha256:e22dd56a05e44618a10d275d3ff07a38eb364c0f04f86ffe9618d83dd5467860",
"expose": true,
"manageTLS": true,
"replicas": 1,
"service": {
"port": 9443
}
}
},
{
"apiVersion": "rc.app.stacks/v1",
"kind": "RuntimeOperation",
"metadata": {
"name": "runtimeoperation-sample"
},
"spec": {
"command": [
"./your_script.sh"
],
"containerName": "app",
"podName": "Specify_Pod_Name_Here"
}
},
{
"apiVersion": "rc.app.stacks/v1beta2",
"kind": "RuntimeComponent",
"metadata": {
"name": "runtimecomponent-sample"
},
"spec": {
"applicationImage": "icr.io/appcafe/open-liberty/samples/getting-started@sha256:e22dd56a05e44618a10d275d3ff07a38eb364c0f04f86ffe9618d83dd5467860",
"expose": true,
"replicas": 1,
"service": {
"port": 9080
}
}
},
{
"apiVersion": "rc.app.stacks/v1beta2",
"kind": "RuntimeOperation",
"metadata": {
"name": "runtimeoperation-sample"
},
"spec": {
"command": [
"./your_script.sh"
],
"containerName": "app",
"podName": "Specify_Pod_Name_Here"
}
}
]
capabilities: Auto Pilot
categories: Application Runtime
certified: "true"
containerImage: icr.io/appcafe/runtime-component-operator:daily
createdAt: "2023-05-04T04:10:28Z"
description: Deploys any runtime component with dynamic and auto-tuning configuration
olm.skipRange: '>=0.8.0 <1.2.0'
operators.openshift.io/infrastructure-features: '["disconnected"]'
operators.operatorframework.io/builder: operator-sdk-v1.24.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/application-stacks/runtime-component-operator
support: Community
labels:
operatorframework.io/arch.amd64: supported
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
name: runtime-component.v1.2.0
namespace: placeholder
spec:
apiservicedefinitions: {}
customresourcedefinitions:
owned:
- description: Represents the deployment of a runtime component
displayName: RuntimeComponent
kind: RuntimeComponent
name: runtimecomponents.rc.app.stacks
resources:
- kind: Deployment
name: ""
version: v1
- kind: HorizontalPodAutoscaler
name: ""
version: v1
- kind: NetworkPolicy
name: ""
version: v1
- kind: Route
name: ""
version: v1
- kind: Secret
name: ""
version: v1
- kind: Service
name: ""
version: v1
- kind: ServiceAccount
name: ""
version: v1
- kind: StatefulSet
name: ""
version: v1
specDescriptors:
- description: Application image to deploy.
displayName: Application Image
path: applicationImage
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Required field for autoscaling. Upper limit for the number of
pods that can be set by the autoscaler. Parameter .spec.resources.requests.cpu
must also be specified.
displayName: Max Replicas
path: autoscaling.maxReplicas
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- description: Probe to determine successful initialization. If specified, other
probes are not executed until this completes successfully.
displayName: Startup Probe
path: probes.startup
- description: Name of the application. Defaults to the name of this custom
resource.
displayName: Application Name
path: applicationName
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Lower limit for the number of pods that can be set by the autoscaler.
displayName: Min Replicas
path: autoscaling.minReplicas
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- description: Periodic probe of container service readiness. Container will
be removed from service endpoints if the probe fails.
displayName: Readiness Probe
path: probes.readiness
- description: Version of the application.
displayName: Application Version
path: applicationVersion
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Target average CPU utilization, represented as a percentage of
requested CPU, over all the pods.
displayName: Target CPU Utilization Percentage
path: autoscaling.targetCPUUtilizationPercentage
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- description: Periodic probe of container liveness. Container will be restarted
if the probe fails.
displayName: Liveness Probe
path: probes.liveness
- description: Policy for pulling container images. Defaults to IfNotPresent.
displayName: Pull Policy
path: pullPolicy
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:imagePullPolicy
- description: Name of the Secret to use to pull images from the specified repository.
It is not required if the cluster is configured with a global image pull
secret.
displayName: Pull Secret
path: pullSecret
x-descriptors:
- urn:alm:descriptor:io.kubernetes:Secret
- description: Name of the service account to use for deploying the application.
A service account is automatically created if it's not specified.
displayName: Service Account Name
path: serviceAccountName
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Create Knative resources and use Knative serving.
displayName: Create Knative Service
path: createKnativeService
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- description: Expose the application externally via a Route, a Knative Route
or an Ingress resource.
displayName: Expose
path: expose
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- description: Enable management of TLS certificates. Defaults to true.
displayName: Manage TLS
path: manageTLS
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- description: Number of pods to create. Defaults to 1. Not applicable when
.spec.autoscaling or .spec.createKnativeService is specified.
displayName: Replicas
path: replicas
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podCount
- description: The port exposed by the container.
displayName: Service Port
path: service.port
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- displayName: Auto Scaling
path: autoscaling
- displayName: Service Type
path: service.type
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Resource requests and limits for the application container.
displayName: Resource Requirements
path: resources
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:resourceRequirements
- description: Node proxies this port into your service.
displayName: Node Port
path: service.nodePort
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- displayName: Probes
path: probes
- description: The name for the port exposed by the container.
displayName: Port Name
path: service.portName
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- displayName: Deployment
path: deployment
- description: Annotations to be added to the service.
displayName: Service Annotations
path: service.annotations
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Annotations to be added to the service certificate.
displayName: Annotations
path: service.certificate.annotations
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: The port that the operator assigns to containers inside pods.
Defaults to the value of .spec.service.port.
displayName: Target Port
path: service.targetPort
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- displayName: StatefulSet
path: statefulSet
- displayName: Service
path: service
- description: 'A name of a secret that already contains TLS key, certificate
and CA to be mounted in the pod. The following keys are valid in the secret:
ca.crt, tls.crt, and tls.key.'
displayName: Certificate Secret Reference
path: service.certificateSecretRef
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- displayName: Network Policy
path: networkPolicy
- displayName: Route
path: route
- description: Configure service certificate.
displayName: Service Certificate
path: service.certificate
- displayName: Monitoring
path: monitoring
- description: An array consisting of service ports.
displayName: Ports
path: service.ports
- description: An array of environment variables for the application container.
displayName: Environment Variables
path: env
- description: Expose the application as a bindable service. Defaults to false.
displayName: Bindable
path: service.bindable
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- description: List of sources to populate environment variables in the application
container.
displayName: Environment Variables from Sources
path: envFrom
- description: Represents a volume with data that is accessible to the application
container.
displayName: Volumes
path: volumes
- description: Specifies the strategy to replace old deployment pods with new
pods.
displayName: Deployment Update Strategy
path: deployment.updateStrategy
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:updateStrategy
- description: Represents where to mount the volumes into the application container.
displayName: Volume Mounts
path: volumeMounts
- description: List of containers to run before other containers in a pod.
displayName: Init Containers
path: initContainers
- description: List of sidecar containers. These are additional containers to
be added to the pods.
displayName: Sidecar Containers
path: sidecarContainers
- description: Specifies the strategy to replace old statefulSet pods with new
pods.
displayName: StatefulSet Update Strategy
path: statefulSet.updateStrategy
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- displayName: Affinity
path: affinity
- displayName: Storage
path: statefulSet.storage
- description: Security context for the application container.
displayName: Security Context
path: securityContext
- description: A convenient field to set the size of the persisted storage.
displayName: Storage Size
path: statefulSet.storage.size
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: A convenient field to request the storage class of the persisted
storage. The name can not be specified or updated after the storage is created.
displayName: Storage Class Name
path: statefulSet.storage.className
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: The directory inside the container where this persisted storage
will be bound to.
displayName: Storage Mount Path
path: statefulSet.storage.mountPath
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: A YAML object that represents a volumeClaimTemplate component
of a StatefulSet.
displayName: Storage Volume Claim Template
path: statefulSet.storage.volumeClaimTemplate
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:PersistentVolumeClaim
- description: Labels to set on ServiceMonitor.
displayName: Monitoring Labels
path: monitoring.labels
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: A YAML snippet representing an array of Endpoint component from
ServiceMonitor.
displayName: Monitoring Endpoints
path: monitoring.endpoints
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:endpointList
- description: Controls which nodes the pod are scheduled to run on, based on
labels on the node.
displayName: Node Affinity
path: affinity.nodeAffinity
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:nodeAffinity
- description: Controls the nodes the pod are scheduled to run on, based on
labels on the pods that are already running on the node.
displayName: Pod Affinity
path: affinity.podAffinity
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podAffinity
- description: Enables the ability to prevent running a pod on the same node
as another pod.
displayName: Pod Anti Affinity
path: affinity.podAntiAffinity
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podAntiAffinity
- description: A YAML object that contains a set of required labels and their
values.
displayName: Node Affinity Labels
path: affinity.nodeAffinityLabels
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Annotations to be added to the Route.
displayName: Route Annotations
path: route.annotations
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Hostname to be used for the Route.
displayName: Route Host
path: route.host
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Path to be used for Route.
displayName: Route Path
path: route.path
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: 'A name of a secret that already contains TLS key, certificate
and CA to be used in the route. It can also contain destination CA certificate.
The following keys are valid in the secret: ca.crt, destCA.crt, tls.crt,
and tls.key.'
displayName: Certificate Secret Reference
path: route.certificateSecretRef
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Path type to be used for Ingress.
displayName: Path Type
path: route.pathType
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:select:Exact
- urn:alm:descriptor:com.tectonic.ui:select:Prefix
- urn:alm:descriptor:com.tectonic.ui:select:ImplementationSpecific
- description: TLS termination policy. Can be one of edge, reencrypt and passthrough.
displayName: Termination
path: route.termination
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:select:edge
- urn:alm:descriptor:com.tectonic.ui:select:reencrypt
- urn:alm:descriptor:com.tectonic.ui:select:passthrough
- description: HTTP traffic policy with TLS enabled. Can be one of Allow, Redirect
and None.
displayName: Insecure Edge Termination Policy
path: route.insecureEdgeTerminationPolicy
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:select:Allow
- urn:alm:descriptor:com.tectonic.ui:select:Redirect
- urn:alm:descriptor:com.tectonic.ui:select:None
- description: Disable the creation of the network policy. Defaults to false.
displayName: Disable
path: networkPolicy.disable
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- description: Specify the labels of namespaces that incoming traffic is allowed
from.
displayName: Namespace Labels
path: networkPolicy.namespaceLabels
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Specify the labels of pod(s) that incoming traffic is allowed
from.
displayName: From Labels
path: networkPolicy.fromLabels
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: An array of architectures to be considered for deployment. Their
position in the array indicates preference.
displayName: Architecture
path: affinity.architecture
- description: Annotations to be added only to the Deployment and resources
owned by the Deployment.
displayName: Annotations
path: deployment.annotations
- description: Annotations to be added only to the StatefulSet and resources
owned by the StatefulSet.
displayName: Annotations
path: statefulSet.annotations
- displayName: Initial Delay Seconds
path: probes.liveness.initialDelaySeconds
- displayName: Failure Threshold
path: probes.liveness.failureThreshold
- displayName: Success Threshold
path: probes.liveness.successThreshold
- displayName: Termination Grace Period Seconds
path: probes.liveness.terminationGracePeriodSeconds
- displayName: Http Get
path: probes.liveness.httpGet
- displayName: Host
path: probes.liveness.httpGet.host
- displayName: Http Headers
path: probes.liveness.httpGet.httpHeaders
- displayName: Path
path: probes.liveness.httpGet.path
- displayName: Scheme
path: probes.liveness.httpGet.scheme
- displayName: GRPC
path: probes.liveness.grpc
- displayName: Port
path: probes.liveness.grpc.port
- displayName: Service
path: probes.liveness.grpc.service
- displayName: Period Seconds
path: probes.liveness.periodSeconds
- displayName: Timeout Seconds
path: probes.liveness.timeoutSeconds
- displayName: Initial Delay Seconds
path: probes.readiness.initialDelaySeconds
- displayName: Failure Threshold
path: probes.readiness.failureThreshold
- displayName: Success Threshold
path: probes.readiness.successThreshold
- displayName: Termination Grace Period Seconds
path: probes.readiness.terminationGracePeriodSeconds
- displayName: Http Get
path: probes.readiness.httpGet
- displayName: Host
path: probes.readiness.httpGet.host
- displayName: Http Headers
path: probes.readiness.httpGet.httpHeaders
- displayName: Path
path: probes.readiness.httpGet.path
- displayName: Scheme
path: probes.readiness.httpGet.scheme
- displayName: GRPC
path: probes.readiness.grpc
- displayName: Port
path: probes.readiness.grpc.port
- displayName: Service
path: probes.readiness.grpc.service
- displayName: Period Seconds
path: probes.readiness.periodSeconds
- displayName: Timeout Seconds
path: probes.readiness.timeoutSeconds
- displayName: Initial Delay Seconds
path: probes.startup.initialDelaySeconds
- displayName: Failure Threshold
path: probes.startup.failureThreshold
- displayName: Success Threshold
path: probes.startup.successThreshold
- displayName: Termination Grace Period Seconds
path: probes.startup.terminationGracePeriodSeconds
- displayName: Http Get
path: probes.startup.httpGet
- displayName: Host
path: probes.startup.httpGet.host
- displayName: Http Headers
path: probes.startup.httpGet.httpHeaders
- displayName: Path
path: probes.startup.httpGet.path
- displayName: Scheme
path: probes.startup.httpGet.scheme
- displayName: GRPC
path: probes.startup.grpc
- displayName: Port
path: probes.startup.grpc.port
- displayName: Service
path: probes.startup.grpc.service
- displayName: Period Seconds
path: probes.startup.periodSeconds
- displayName: Timeout Seconds
path: probes.startup.timeoutSeconds
- displayName: Rolling Update
path: statefulSet.updateStrategy.rollingUpdate
- displayName: Partition
path: statefulSet.updateStrategy.rollingUpdate.partition
- displayName: Type
path: statefulSet.updateStrategy.typekube
- displayName: API Version
path: statefulSet.storage.volumeClaimTemplate.apiVersion
- displayName: Kind
path: statefulSet.storage.volumeClaimTemplate.kind
- displayName: Metadate
path: statefulSet.storage.volumeClaimTemplate.metadata
- displayName: Spec
path: statefulSet.storage.volumeClaimTemplate.spec
- displayName: Status
path: statefulSet.storage.volumeClaimTemplate.status
- displayName: Port
path: service.ports[0].port
- displayName: App Protocol
path: service.ports[0].appProtocol
- displayName: Name
path: service.ports[0].name
- displayName: Node Port
path: service.ports[0].nodePort
- displayName: Protocol
path: service.ports[0].protocol
- displayName: Proxy URL
path: monitoring.endpoints[0].proxyUrl
- displayName: Port
path: monitoring.endpoints[0].port
- displayName: Path
path: monitoring.endpoints[0].path
- displayName: Interval
path: monitoring.endpoints[0].interval
- displayName: Scheme
path: monitoring.endpoints[0].scheme
- displayName: Follow Redirects
path: monitoring.endpoints[0].followRedirects
- displayName: Bearer Token File
path: monitoring.endpoints[0].bearerTokenFile
- displayName: Basic Auth
path: monitoring.endpoints[0].basicAuth
- displayName: Authorization
path: monitoring.endpoints[0].authorization
- displayName: OAuth2
path: monitoring.endpoints[0].oauth2
- displayName: TLS Config
path: monitoring.endpoints[0].tlsConfig
- displayName: Metric Relabeling
path: monitoring.endpoints[0].metricRelabelings
- displayName: Honor Timestamps
path: monitoring.endpoints[0].honorTimestamps
- displayName: Bearer Token Secret
path: monitoring.endpoints[0].bearerTokenSecret
- displayName: Honor Labels
path: monitoring.endpoints[0].honorLabels
- displayName: Scrape Timeout
path: monitoring.endpoints[0].scrapeTimeout
- displayName: Relabelings
path: monitoring.endpoints[0].relabelings
- displayName: Name
path: env[0].name
- displayName: Value
path: env[0].value
- displayName: Value From
path: env[0].valueFrom
- displayName: Config Map Ref
path: envFrom[0].configMapRef
- displayName: Prefix
path: envFrom[0].prefix
- displayName: Secret Ref
path: envFrom[0].secretRef
- displayName: Name
path: volumes[0].name
- displayName: Empty Dir
path: volumes[0].emptyDir
- displayName: Git Repo
path: volumes[0].gitRepo
- displayName: CephFS
path: volumes[0].cephfs
- displayName: Cinder
path: volumes[0].cinder
- displayName: GlusterFS
path: volumes[0].glusterfs
- displayName: Azure File
path: volumes[0].azureFile
- displayName: Persistent Volume Claim
path: volumes[0].persistentVolumeClaim
- displayName: Azure Disk
path: volumes[0].azureDisk
- displayName: AWS Elastic Block Store
path: volumes[0].awsElasticBlockStore
- displayName: Host Path
path: volumes[0].hostPath
- displayName: ISCSI
path: volumes[0].iscsi
- displayName: Photon Persistent Disk
path: volumes[0].photonPersistentDisk
- displayName: Secret
path: volumes[0].secret
- displayName: ScaleIO
path: volumes[0].scaleIO
- displayName: StorageOS
path: volumes[0].storageos
- displayName: Flex Volume
path: volumes[0].flexVolume
- displayName: Quobyte
path: volumes[0].quobyte
- displayName: Rados Block Device
path: volumes[0].rbd
- displayName: Projected
path: volumes[0].projected
- displayName: Container Storage Interface
path: volumes[0].csi
- displayName: Portworx Volume
path: volumes[0].portworxVolume
- displayName: Config Map
path: volumes[0].configMap
- displayName: NFS
path: volumes[0].nfs
- displayName: Downward API
path: volumes[0].downwardAPI
- displayName: GCE Persistent Disk
path: volumes[0].gcePersistentDisk
- displayName: Fibre Channel
path: volumes[0].fc
- displayName: vSphere Volume
path: volumes[0].vsphereVolume
- displayName: Ephemeral
path: volumes[0].ephemeral
- displayName: Flocker
path: volumes[0].flocker
- displayName: Mount Path
path: volumeMounts[0].mountPath
- displayName: Name
path: volumeMounts[0].name
- displayName: Mount Propagation
path: volumeMounts[0].mountPropagation
- displayName: Read Only
path: volumeMounts[0].readOnly
- displayName: Sub Path
path: volumeMounts[0].subPath
- displayName: Sub Path Expr
path: volumeMounts[0].subPathExpr
- displayName: Name
path: initContainers[0].name
- displayName: Volume Devices
path: initContainers[0].volumeDevices
- displayName: Readiness Probe
path: initContainers[0].readinessProbe
- displayName: Stdin
path: initContainers[0].stdin
- displayName: Termination Message Path
path: initContainers[0].terminationMessagePath
- displayName: Stdin Once
path: initContainers[0].stdinOnce
- displayName: Lifecycle
path: initContainers[0].lifecycle
- displayName: Command
path: initContainers[0].command
- displayName: Liveness Probe
path: initContainers[0].livenessProbe
- displayName: Environment
path: initContainers[0].env
- displayName: Security Context
path: initContainers[0].securityContext
- displayName: Ports
path: initContainers[0].ports
- displayName: Image Pull Policy
path: initContainers[0].imagePullPolicy
- displayName: Startup Probe
path: initContainers[0].startupProbe
- displayName: Volume Mounts
path: initContainers[0].volumeMounts
- displayName: Termination Message Policy
path: initContainers[0].terminationMessagePolicy
- displayName: Enviroment From
path: initContainers[0].envFrom
- displayName: TTY
path: initContainers[0].tty
- displayName: Image
path: initContainers[0].image
- displayName: Working Directory
path: initContainers[0].workingDir
- displayName: Arguments
path: initContainers[0].args
- displayName: Name
path: sidecarContainers[0].name
- displayName: Volume Devices
path: sidecarContainers[0].volumeDevices
- displayName: Readiness Probe
path: sidecarContainers[0].readinessProbe
- displayName: Stdin
path: sidecarContainers[0].stdin
- displayName: Termination Message Path
path: sidecarContainers[0].terminationMessagePath
- displayName: Stdin Once
path: sidecarContainers[0].stdinOnce
- displayName: Lifecycle
path: sidecarContainers[0].lifecycle
- displayName: Command
path: sidecarContainers[0].command
- displayName: Liveness Probe
path: sidecarContainers[0].livenessProbe
- displayName: Environment
path: sidecarContainers[0].env
- displayName: Security Context
path: sidecarContainers[0].securityContext
- displayName: Ports
path: sidecarContainers[0].ports
- displayName: Image Pull Policy
path: sidecarContainers[0].imagePullPolicy
- displayName: Startup Probe
path: sidecarContainers[0].startupProbe
- displayName: Volume Mounts
path: sidecarContainers[0].volumeMounts
- displayName: Termination Message Policy
path: sidecarContainers[0].terminationMessagePolicy
- displayName: Enviroment From
path: sidecarContainers[0].envFrom
- displayName: TTY
path: sidecarContainers[0].tty
- displayName: Image
path: sidecarContainers[0].image
- displayName: Working Directory
path: sidecarContainers[0].workingDir
- displayName: Arguments
path: sidecarContainers[0].args
- displayName: Seccomp Profile
path: securityContext.seccompProfile
- displayName: Windows Options
path: securityContext.windowsOptions
- displayName: Run As User Name
path: securityContext.windowsOptions.runAsUserName
- displayName: Level
path: securityContext.seLinuxOptions.level
- displayName: Role
path: securityContext.seLinuxOptions.role
- displayName: Type
path: securityContext.seLinuxOptions.type
- displayName: User
path: securityContext.seLinuxOptions.user
- displayName: Run As Group
path: securityContext.runAsGroup
- displayName: Proc Mount
path: securityContext.procMount
- displayName: Run As User
path: securityContext.runAsUser
- displayName: Capabilities
path: securityContext.capabilities
- description: Hide liveness probe's Exec field
displayName: Livness Probe's Exec
path: probes.liveness.exec
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:hidden
- description: Hide liveness probe's TCP Socket field
displayName: Livness Probe's Exec
path: probes.liveness.tcpSocket
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:hidden
- description: Hide readiness probe's Exec field
displayName: Readiness Probe's Exec
path: probes.readiness.exec
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:hidden
- description: Hide readiness probe's TCP Socket field
displayName: Readiness Probe's TCP Socket
path: probes.readiness.tcpSocket
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:hidden
- description: Hide startup probe's Exec field
displayName: Startup Probe's Exec
path: probes.startup.exec
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:hidden
- description: Hide startup probe's TCP Socket field
displayName: Startup Probe's Exec
path: probes.startup.tcpSocket
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:hidden
- displayName: Type
path: securityContext.seccompProfile.type
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:select:RuntimeDefault
- urn:alm:descriptor:com.tectonic.ui:select:Localhost
- urn:alm:descriptor:com.tectonic.ui:select:Unconfined
- displayName: Localhost Profile
path: securityContext.seccompProfile.localhostProfile
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- urn:alm:descriptor:com.tectonic.ui:fieldDependency:securityContext.seccompProfile.type:Localhost
- displayName: Read-Only Root Filesystem
path: securityContext.readOnlyRootFilesystem
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- displayName: Run as Non-Root
path: securityContext.runAsNonRoot
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- displayName: Privileged
path: securityContext.privileged
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- displayName: Allow Privilege Escalation
path: securityContext.allowPrivilegeEscalation
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- displayName: GMSA Credential Spec Name
path: securityContext.windowsOptions.gmsaCredentialSpecName
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- displayName: GMSA Credential Spec
path: securityContext.windowsOptions.gmsaCredentialSpec
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- displayName: Host Process
path: securityContext.windowsOptions.hostProcess
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- displayName: SELinux Options
path: securityContext.seLinuxOptions
statusDescriptors:
- description: Exposed URI of the application endpoint
displayName: Application
path: endpoints[0].uri
x-descriptors:
- urn:alm:descriptor:org.w3:link
- displayName: Service Binding
path: binding
- displayName: Status Conditions
path: conditions
x-descriptors:
- urn:alm:descriptor:io.kubernetes.conditions
- description: Service Binding Secret
displayName: Secret
path: binding.name
x-descriptors:
- urn:alm:descriptor:io.kubernetes:Secret
version: v1
- description: Represents the deployment of a runtime component
displayName: RuntimeComponent
kind: RuntimeComponent
name: runtimecomponents.rc.app.stacks
resources:
- kind: Deployment
name: ""
version: v1
- kind: HorizontalPodAutoscaler
name: ""
version: v1
- kind: Route
name: ""
version: v1
- kind: Secret
name: ""
version: v1
- kind: Service
name: ""
version: v1
- kind: ServiceAccount
name: ""
version: v1
- kind: StatefulSet
name: ""
version: v1
specDescriptors:
- description: Application image to deploy.
displayName: Application Image
path: applicationImage
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Required field for autoscaling. Upper limit for the number of
pods that can be set by the autoscaler. Parameter .spec.resources.requests.cpu
must also be specified.
displayName: Max Replicas
path: autoscaling.maxReplicas
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- description: Probe to determine successful initialization. If specified, other
probes are not executed until this completes successfully.
displayName: Startup Probe
path: probes.startup
- description: Name of the application. Defaults to the name of this custom
resource.
displayName: Application Name
path: applicationName
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Lower limit for the number of pods that can be set by the autoscaler.
displayName: Min Replicas
path: autoscaling.minReplicas
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- description: Periodic probe of container service readiness. Container will
be removed from service endpoints if the probe fails.
displayName: Readiness Probe
path: probes.readiness
- description: Version of the application.
displayName: Application Version
path: applicationVersion
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Target average CPU utilization, represented as a percentage of
requested CPU, over all the pods.
displayName: Target CPU Utilization Percentage
path: autoscaling.targetCPUUtilizationPercentage
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- description: Periodic probe of container liveness. Container will be restarted
if the probe fails.
displayName: Liveness Probe
path: probes.liveness
- description: Policy for pulling container images. Defaults to IfNotPresent.
displayName: Pull Policy
path: pullPolicy
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:imagePullPolicy
- description: Name of the Secret to use to pull images from the specified repository.
It is not required if the cluster is configured with a global image pull
secret.
displayName: Pull Secret
path: pullSecret
x-descriptors:
- urn:alm:descriptor:io.kubernetes:Secret
- description: Name of the service account to use for deploying the application.
A service account is automatically created if it's not specified.
displayName: Service Account Name
path: serviceAccountName
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Create Knative resources and use Knative serving.
displayName: Create Knative Service
path: createKnativeService
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- description: Expose the application externally via a Route, a Knative Route
or an Ingress resource.
displayName: Expose
path: expose
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:booleanSwitch
- description: Number of pods to create. Not applicable when .spec.autoscaling
or .spec.createKnativeService is specified.
displayName: Replicas
path: replicas
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podCount
- description: The port exposed by the container.
displayName: Service Port
path: service.port
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:number
- displayName: Auto Scaling
path: autoscaling
- displayName: Service Type
path: service.type
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:text
- description: Resource requests and limits for the application container.
displayName: Resource Requirements
path: resources
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:resourceRequirements
- description: Node proxies this port into your service.
displayName: Node Port