You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bundle/manifests/rc.app.stacks_runtimecomponents.yaml
+18-17Lines changed: 18 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ spec:
65
65
description: Defines the desired state of RuntimeComponent.
66
66
properties:
67
67
affinity:
68
-
description: Configures a Pod to run on particular Nodes.
68
+
description: Configure pods to run on particular Nodes.
69
69
properties:
70
70
architecture:
71
71
description: An array of architectures to be considered for deployment. Their position in the array indicates preference.
@@ -417,18 +417,19 @@ spec:
417
417
type: object
418
418
type: object
419
419
applicationImage:
420
-
description: Application image to be installed.
420
+
description: Application image to deploy.
421
421
type: string
422
422
applicationName:
423
-
description: The name of the application this resource is part of. If not specified, it defaults to the name of the CR.
423
+
description: Name of the application. Defaults to the name of this custom resource.
424
424
type: string
425
425
applicationVersion:
426
+
description: Version of the application.
426
427
type: string
427
428
autoscaling:
428
429
description: Configures the desired resource consumption of pods.
429
430
properties:
430
431
maxReplicas:
431
-
description: Required field for autoscaling. Upper limit for the number of pods that can be set by the autoscaler. Parameter spec.resourceConstraints.requests.cpu must also be specified.
432
+
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.
432
433
format: int32
433
434
minimum: 1
434
435
type: integer
@@ -437,12 +438,12 @@ spec:
437
438
format: int32
438
439
type: integer
439
440
targetCPUUtilizationPercentage:
440
-
description: Target average CPU utilization (represented as a percentage of requested CPU) over all the pods.
441
+
description: Target average CPU utilization, represented as a percentage of requested CPU, over all the pods.
441
442
format: int32
442
443
type: integer
443
444
type: object
444
445
createKnativeService:
445
-
description: A boolean to toggle the creation of Knative resources and usage of Knative serving.
446
+
description: Create Knative resources and use Knative serving.
446
447
type: boolean
447
448
deployment:
448
449
description: Defines the desired state and cycle of applications.
@@ -477,7 +478,7 @@ spec:
477
478
type: object
478
479
type: object
479
480
env:
480
-
description: An array of environment variables following the format of {name, value}, where value is a simple string.
481
+
description: An array of environment variables for the application container.
481
482
items:
482
483
description: EnvVar represents an environment variable present in a Container.
483
484
properties:
@@ -560,7 +561,7 @@ spec:
560
561
- name
561
562
x-kubernetes-list-type: map
562
563
envFrom:
563
-
description: An array of references to ConfigMap or Secret resources containing environment variables.
564
+
description: List of sources to populate environment variables in the application container.
564
565
items:
565
566
description: EnvFromSource represents the source of a set of ConfigMaps
566
567
properties:
@@ -591,10 +592,10 @@ spec:
591
592
type: array
592
593
x-kubernetes-list-type: atomic
593
594
expose:
594
-
description: A boolean that toggles the external exposure of this deployment via a Route or a Knative Route resource.
595
+
description: Expose the application externally via a Route, a Knative Route or an Ingress resource.
595
596
type: boolean
596
597
initContainers:
597
-
description: List of containers that run before other containers in a pod.
598
+
description: List of containers to run before other containers in a pod.
598
599
items:
599
600
description: A single application container that you want to run within a pod.
600
601
properties:
@@ -1858,11 +1859,11 @@ spec:
1858
1859
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.
1859
1860
type: string
1860
1861
replicas:
1861
-
description: Number of pods to create.
1862
+
description: Number of pods to create. Not applicable when .spec.autoscaling or .spec.createKnativeService is specified.
1862
1863
format: int32
1863
1864
type: integer
1864
-
resourceConstraints:
1865
-
description: Limits the amount of required resources.
1865
+
resources:
1866
+
description: Resource requests and limits for the application container.
1866
1867
properties:
1867
1868
limits:
1868
1869
additionalProperties:
@@ -1983,10 +1984,10 @@ spec:
1983
1984
type: string
1984
1985
type: object
1985
1986
serviceAccountName:
1986
-
description: The name of the OpenShift service account to be used during deployment.
1987
+
description: Name of the service account to use for deploying the application. A service account is automatically created if it's not specified.
1987
1988
type: string
1988
1989
sidecarContainers:
1989
-
description: The list of sidecar containers. These are additional containers to be added to the pods.
1990
+
description: List of sidecar containers. These are additional containers to be added to the pods.
1990
1991
items:
1991
1992
description: A single application container that you want to run within a pod.
1992
1993
properties:
@@ -2916,7 +2917,7 @@ spec:
2916
2917
type: object
2917
2918
type: object
2918
2919
volumeMounts:
2919
-
description: Represents where to mount the volumes into containers.
2920
+
description: Represents where to mount the volumes into the application container.
2920
2921
items:
2921
2922
description: VolumeMount describes a mounting of a Volume within a container.
2922
2923
properties:
@@ -2945,7 +2946,7 @@ spec:
2945
2946
type: array
2946
2947
x-kubernetes-list-type: atomic
2947
2948
volumes:
2948
-
description: Represents a pod volume with data that is accessible to the containers.
2949
+
description: Represents a volume with data that is accessible to the application container.
2949
2950
items:
2950
2951
description: Volume represents a named volume in a pod that may be accessed by any container in the pod.
0 commit comments