Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6874,6 +6874,28 @@ spec:
- SETGID
- SETUID
type: boolean
editorsDownloadUrls:
description: |-
EditorsDownloadUrls provides a list of custom download URLs for JetBrains editors
in a local-to-remote flow.
It is particularly useful in disconnected or air-gapped environments,
where editors cannot be downloaded from the public internet.
Each entry contains an editor identifier in the `publisher/name/version` format
and the corresponding download URL.
Currently, this field is intended only for JetBrains editors and should not be used for other editor types.
items:
properties:
editor:
description: The editor ID must have `publisher/name/version`
format.
type: string
url:
type: string
required:
- editor
- url
type: object
type: array
gatewayContainer:
description: GatewayContainer configuration.
properties:
Expand Down
2 changes: 1 addition & 1 deletion helmcharts/stable/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
apiVersion: v1
description: A Helm chart for deploying Eclipse Che on a Kubernetes
name: eclipse-che
version: 7.107.0
version: 7.108.0
annotations:
artifacthub.io/license: EPL-2.0
artifacthub.io/links: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6844,6 +6844,28 @@ spec:
- SETGID
- SETUID
type: boolean
editorsDownloadUrls:
description: |-
EditorsDownloadUrls provides a list of custom download URLs for JetBrains editors
in a local-to-remote flow.
It is particularly useful in disconnected or air-gapped environments,
where editors cannot be downloaded from the public internet.
Each entry contains an editor identifier in the `publisher/name/version` format
and the corresponding download URL.
Currently, this field is intended only for JetBrains editors and should not be used for other editor types.
items:
properties:
editor:
description: The editor ID must have `publisher/name/version`
format.
type: string
url:
type: string
required:
- editor
- url
type: object
type: array
gatewayContainer:
description: GatewayContainer configuration.
properties:
Expand Down
12 changes: 6 additions & 6 deletions helmcharts/stable/templates/che-operator.Deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,19 @@ spec:
- name: OPERATOR_NAME
value: che-operator
- name: CHE_VERSION
value: 7.107.0
value: 7.108.0
- name: RELATED_IMAGE_che_server
value: quay.io/eclipse/che-server:7.107.0
value: quay.io/eclipse/che-server:7.108.0
- name: RELATED_IMAGE_dashboard
value: quay.io/eclipse/che-dashboard:7.107.0
value: quay.io/eclipse/che-dashboard:7.108.0
- name: RELATED_IMAGE_plugin_registry
value: quay.io/eclipse/che-plugin-registry:7.107.0
value: quay.io/eclipse/che-plugin-registry:7.108.0
- name: RELATED_IMAGE_che_tls_secrets_creation_job
value: quay.io/eclipse/che-tls-secret-creator:9f9d4a6
- name: RELATED_IMAGE_single_host_gateway
value: quay.io/eclipse/che--traefik:v3.4.0-4cf907247939b5d20bf4eff73abd21cb413c339600dde76dbc94a874b2578a27
- name: RELATED_IMAGE_single_host_gateway_config_sidecar
value: quay.io/che-incubator/configbump:7.107.0
value: quay.io/che-incubator/configbump:7.108.0
- name: RELATED_IMAGE_gateway_authentication_sidecar
value: quay.io/openshift/origin-oauth-proxy:4.9
- name: RELATED_IMAGE_gateway_authorization_sidecar
Expand Down Expand Up @@ -108,7 +108,7 @@ spec:
value: argocd[.]argoproj[.]io/.+
- name: CHE_OPERATOR_WORKSPACES_CONFIG_CONTROLLER_ANNOTATIONS_TO_REMOVE_BEFORE_SYNC_REGEXP
value: ""
image: quay.io/eclipse/che-operator:7.107.0
image: quay.io/eclipse/che-operator:7.108.0
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 10
Expand Down
2 changes: 2 additions & 0 deletions olm-catalog/stable/channel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,5 @@ entries:
replaces: eclipse-che.v7.104.0
- name: eclipse-che.v7.106.0
replaces: eclipse-che.v7.105.0
- name: eclipse-che.v7.108.0
replaces: eclipse-che.v7.106.0
86 changes: 86 additions & 0 deletions olm-catalog/stable/eclipse-che.v7.108.0.bundle.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
package version

var (
Version = "7.107.0"
Version = "7.108.0"
)