Skip to content

Commit 5aa36da

Browse files
che-botmkuznyetsov
andauthored
ci: Copy 7.109.0 csv to main (#2044)
Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
1 parent b6cce2d commit 5aa36da

File tree

8 files changed

+370
-106
lines changed

8 files changed

+370
-106
lines changed

bundle/stable/eclipse-che/manifests/che-operator.clusterserviceversion.yaml

Lines changed: 98 additions & 98 deletions
Large diffs are not rendered by default.

bundle/stable/eclipse-che/manifests/org.eclipse.che_checlusters.yaml

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6807,6 +6807,67 @@ spec:
68076807
- name
68086808
type: object
68096809
type: array
6810+
defaultContainerResources:
6811+
description: |-
6812+
DefaultContainerResources defines the resource requirements (memory/cpu limit/request) used for
6813+
container components that do not define limits or requests.
6814+
properties:
6815+
claims:
6816+
description: |-
6817+
Claims lists the names of resources, defined in spec.resourceClaims,
6818+
that are used by this container.
6819+
6820+
This is an alpha field and requires enabling the
6821+
DynamicResourceAllocation feature gate.
6822+
6823+
This field is immutable. It can only be set for containers.
6824+
items:
6825+
description: ResourceClaim references one entry in PodSpec.ResourceClaims.
6826+
properties:
6827+
name:
6828+
description: |-
6829+
Name must match the name of one entry in pod.spec.resourceClaims of
6830+
the Pod where this field is used. It makes that resource available
6831+
inside a container.
6832+
type: string
6833+
request:
6834+
description: |-
6835+
Request is the name chosen for a request in the referenced claim.
6836+
If empty, everything from the claim is made available, otherwise
6837+
only the result of this request.
6838+
type: string
6839+
required:
6840+
- name
6841+
type: object
6842+
type: array
6843+
x-kubernetes-list-map-keys:
6844+
- name
6845+
x-kubernetes-list-type: map
6846+
limits:
6847+
additionalProperties:
6848+
anyOf:
6849+
- type: integer
6850+
- type: string
6851+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
6852+
x-kubernetes-int-or-string: true
6853+
description: |-
6854+
Limits describes the maximum amount of compute resources allowed.
6855+
More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
6856+
type: object
6857+
requests:
6858+
additionalProperties:
6859+
anyOf:
6860+
- type: integer
6861+
- type: string
6862+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
6863+
x-kubernetes-int-or-string: true
6864+
description: |-
6865+
Requests describes the minimum amount of compute resources required.
6866+
If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
6867+
otherwise to an implementation-defined value. Requests cannot exceed Limits.
6868+
More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
6869+
type: object
6870+
type: object
68106871
defaultEditor:
68116872
description: |-
68126873
The default editor to workspace create with. It could be a plugin ID or a URI.
@@ -7134,6 +7195,33 @@ spec:
71347195
format: int64
71357196
minimum: -1
71367197
type: integer
7198+
networking:
7199+
description: Configuration settings related to the workspaces
7200+
networking.
7201+
properties:
7202+
externalTLSConfig:
7203+
description: External TLS configuration.
7204+
properties:
7205+
annotations:
7206+
additionalProperties:
7207+
type: string
7208+
description: Annotations to be applied to ingress/route
7209+
objects when external TLS is enabled.
7210+
type: object
7211+
enabled:
7212+
description: |-
7213+
Enabled determines whether external TLS configuration is used.
7214+
If set to true, the operator will not set TLS config for ingress/route objects.
7215+
Instead, it ensures that any custom TLS configuration will not be reverted on synchronization.
7216+
type: boolean
7217+
labels:
7218+
additionalProperties:
7219+
type: string
7220+
description: Labels to be applied to ingress/route objects
7221+
when external TLS is enabled.
7222+
type: object
7223+
type: object
7224+
type: object
71377225
nodeSelector:
71387226
additionalProperties:
71397227
type: string

helmcharts/stable/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
apiVersion: v1
1414
description: A Helm chart for deploying Eclipse Che on a Kubernetes
1515
name: eclipse-che
16-
version: 7.108.0
16+
version: 7.109.0
1717
annotations:
1818
artifacthub.io/license: EPL-2.0
1919
artifacthub.io/links: |

helmcharts/stable/crds/checlusters.org.eclipse.che.CustomResourceDefinition.yaml

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6777,6 +6777,67 @@ spec:
67776777
- name
67786778
type: object
67796779
type: array
6780+
defaultContainerResources:
6781+
description: |-
6782+
DefaultContainerResources defines the resource requirements (memory/cpu limit/request) used for
6783+
container components that do not define limits or requests.
6784+
properties:
6785+
claims:
6786+
description: |-
6787+
Claims lists the names of resources, defined in spec.resourceClaims,
6788+
that are used by this container.
6789+
6790+
This is an alpha field and requires enabling the
6791+
DynamicResourceAllocation feature gate.
6792+
6793+
This field is immutable. It can only be set for containers.
6794+
items:
6795+
description: ResourceClaim references one entry in PodSpec.ResourceClaims.
6796+
properties:
6797+
name:
6798+
description: |-
6799+
Name must match the name of one entry in pod.spec.resourceClaims of
6800+
the Pod where this field is used. It makes that resource available
6801+
inside a container.
6802+
type: string
6803+
request:
6804+
description: |-
6805+
Request is the name chosen for a request in the referenced claim.
6806+
If empty, everything from the claim is made available, otherwise
6807+
only the result of this request.
6808+
type: string
6809+
required:
6810+
- name
6811+
type: object
6812+
type: array
6813+
x-kubernetes-list-map-keys:
6814+
- name
6815+
x-kubernetes-list-type: map
6816+
limits:
6817+
additionalProperties:
6818+
anyOf:
6819+
- type: integer
6820+
- type: string
6821+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
6822+
x-kubernetes-int-or-string: true
6823+
description: |-
6824+
Limits describes the maximum amount of compute resources allowed.
6825+
More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
6826+
type: object
6827+
requests:
6828+
additionalProperties:
6829+
anyOf:
6830+
- type: integer
6831+
- type: string
6832+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
6833+
x-kubernetes-int-or-string: true
6834+
description: |-
6835+
Requests describes the minimum amount of compute resources required.
6836+
If Requests is omitted for a container, it defaults to Limits if that is explicitly specified,
6837+
otherwise to an implementation-defined value. Requests cannot exceed Limits.
6838+
More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
6839+
type: object
6840+
type: object
67806841
defaultEditor:
67816842
description: |-
67826843
The default editor to workspace create with. It could be a plugin ID or a URI.
@@ -7103,6 +7164,33 @@ spec:
71037164
format: int64
71047165
minimum: -1
71057166
type: integer
7167+
networking:
7168+
description: Configuration settings related to the workspaces
7169+
networking.
7170+
properties:
7171+
externalTLSConfig:
7172+
description: External TLS configuration.
7173+
properties:
7174+
annotations:
7175+
additionalProperties:
7176+
type: string
7177+
description: Annotations to be applied to ingress/route
7178+
objects when external TLS is enabled.
7179+
type: object
7180+
enabled:
7181+
description: |-
7182+
Enabled determines whether external TLS configuration is used.
7183+
If set to true, the operator will not set TLS config for ingress/route objects.
7184+
Instead, it ensures that any custom TLS configuration will not be reverted on synchronization.
7185+
type: boolean
7186+
labels:
7187+
additionalProperties:
7188+
type: string
7189+
description: Labels to be applied to ingress/route objects
7190+
when external TLS is enabled.
7191+
type: object
7192+
type: object
7193+
type: object
71067194
nodeSelector:
71077195
additionalProperties:
71087196
type: string

helmcharts/stable/templates/che-operator.Deployment.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,19 @@ spec:
5454
- name: OPERATOR_NAME
5555
value: che-operator
5656
- name: CHE_VERSION
57-
value: 7.108.0
57+
value: 7.109.0
5858
- name: RELATED_IMAGE_che_server
59-
value: quay.io/eclipse/che-server:7.108.0
59+
value: quay.io/eclipse/che-server:7.109.0
6060
- name: RELATED_IMAGE_dashboard
61-
value: quay.io/eclipse/che-dashboard:7.108.0
61+
value: quay.io/eclipse/che-dashboard:7.109.0
6262
- name: RELATED_IMAGE_plugin_registry
63-
value: quay.io/eclipse/che-plugin-registry:7.108.0
63+
value: quay.io/eclipse/che-plugin-registry:7.109.0
6464
- name: RELATED_IMAGE_che_tls_secrets_creation_job
6565
value: quay.io/eclipse/che-tls-secret-creator:9f9d4a6
6666
- name: RELATED_IMAGE_single_host_gateway
6767
value: quay.io/eclipse/che--traefik:v3.4.0-4cf907247939b5d20bf4eff73abd21cb413c339600dde76dbc94a874b2578a27
6868
- name: RELATED_IMAGE_single_host_gateway_config_sidecar
69-
value: quay.io/che-incubator/configbump:7.108.0
69+
value: quay.io/che-incubator/configbump:7.109.0
7070
- name: RELATED_IMAGE_gateway_authentication_sidecar
7171
value: quay.io/openshift/origin-oauth-proxy:4.9
7272
- name: RELATED_IMAGE_gateway_authorization_sidecar
@@ -108,7 +108,7 @@ spec:
108108
value: argocd[.]argoproj[.]io/.+
109109
- name: CHE_OPERATOR_WORKSPACES_CONFIG_CONTROLLER_ANNOTATIONS_TO_REMOVE_BEFORE_SYNC_REGEXP
110110
value: ""
111-
image: quay.io/eclipse/che-operator:7.108.0
111+
image: quay.io/eclipse/che-operator:7.109.0
112112
imagePullPolicy: IfNotPresent
113113
livenessProbe:
114114
failureThreshold: 10

olm-catalog/stable/channel.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,5 @@ entries:
121121
replaces: eclipse-che.v7.106.0
122122
- name: eclipse-che.v7.108.0
123123
replaces: eclipse-che.v7.107.0
124+
- name: eclipse-che.v7.109.0
125+
replaces: eclipse-che.v7.108.0

olm-catalog/stable/eclipse-che.v7.109.0.bundle.yaml

Lines changed: 86 additions & 0 deletions
Large diffs are not rendered by default.

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
package version
1414

1515
var (
16-
Version = "7.108.0"
16+
Version = "7.109.0"
1717
)

0 commit comments

Comments
 (0)