Skip to content

Commit 0238201

Browse files
che-botmkuznyetsov
andauthored
ci: Copy 7.108.0 csv to main (#2037)
Signed-off-by: Mykhailo Kuznietsov <[email protected]> Co-authored-by: Mykhailo Kuznietsov <[email protected]>
1 parent c077525 commit 0238201

File tree

8 files changed

+244
-88
lines changed

8 files changed

+244
-88
lines changed

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

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

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6874,6 +6874,28 @@ spec:
68746874
- SETGID
68756875
- SETUID
68766876
type: boolean
6877+
editorsDownloadUrls:
6878+
description: |-
6879+
EditorsDownloadUrls provides a list of custom download URLs for JetBrains editors
6880+
in a local-to-remote flow.
6881+
It is particularly useful in disconnected or air-gapped environments,
6882+
where editors cannot be downloaded from the public internet.
6883+
Each entry contains an editor identifier in the `publisher/name/version` format
6884+
and the corresponding download URL.
6885+
Currently, this field is intended only for JetBrains editors and should not be used for other editor types.
6886+
items:
6887+
properties:
6888+
editor:
6889+
description: The editor ID must have `publisher/name/version`
6890+
format.
6891+
type: string
6892+
url:
6893+
type: string
6894+
required:
6895+
- editor
6896+
- url
6897+
type: object
6898+
type: array
68776899
gatewayContainer:
68786900
description: GatewayContainer configuration.
68796901
properties:

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.107.0
16+
version: 7.108.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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6844,6 +6844,28 @@ spec:
68446844
- SETGID
68456845
- SETUID
68466846
type: boolean
6847+
editorsDownloadUrls:
6848+
description: |-
6849+
EditorsDownloadUrls provides a list of custom download URLs for JetBrains editors
6850+
in a local-to-remote flow.
6851+
It is particularly useful in disconnected or air-gapped environments,
6852+
where editors cannot be downloaded from the public internet.
6853+
Each entry contains an editor identifier in the `publisher/name/version` format
6854+
and the corresponding download URL.
6855+
Currently, this field is intended only for JetBrains editors and should not be used for other editor types.
6856+
items:
6857+
properties:
6858+
editor:
6859+
description: The editor ID must have `publisher/name/version`
6860+
format.
6861+
type: string
6862+
url:
6863+
type: string
6864+
required:
6865+
- editor
6866+
- url
6867+
type: object
6868+
type: array
68476869
gatewayContainer:
68486870
description: GatewayContainer configuration.
68496871
properties:

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.107.0
57+
value: 7.108.0
5858
- name: RELATED_IMAGE_che_server
59-
value: quay.io/eclipse/che-server:7.107.0
59+
value: quay.io/eclipse/che-server:7.108.0
6060
- name: RELATED_IMAGE_dashboard
61-
value: quay.io/eclipse/che-dashboard:7.107.0
61+
value: quay.io/eclipse/che-dashboard:7.108.0
6262
- name: RELATED_IMAGE_plugin_registry
63-
value: quay.io/eclipse/che-plugin-registry:7.107.0
63+
value: quay.io/eclipse/che-plugin-registry:7.108.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.107.0
69+
value: quay.io/che-incubator/configbump:7.108.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.107.0
111+
image: quay.io/eclipse/che-operator:7.108.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
@@ -119,3 +119,5 @@ entries:
119119
replaces: eclipse-che.v7.105.0
120120
- name: eclipse-che.v7.107.0
121121
replaces: eclipse-che.v7.106.0
122+
- name: eclipse-che.v7.108.0
123+
replaces: eclipse-che.v7.107.0

olm-catalog/stable/eclipse-che.v7.108.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.107.0"
16+
Version = "7.108.0"
1717
)

0 commit comments

Comments
 (0)