Skip to content
Merged
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 @@ -22749,11 +22749,11 @@ spec:
type: string
oAuthSecret:
description: |-
Defines the OAuth client secret.
It can either be a plain text secret value or the name of a Kubernetes secret
containing a key `oAuthSecret` with the secret value. The Kubernetes secret must exist in the same namespace
as the `CheCluster` resource and have the label `app.kubernetes.io/part-of=che.eclipse.org`.
For OpenShift with built-in OAuth, this is the secret set in the `OAuthClient` resource used to set up identity federation.
For OIDC, this is the client secret issued by the Identity Provider for the configured OIDC client.
For OpenShift with built-in OAuth, this is the secret configured in the OAuthClient for OpenShift OAuth integration.
The value can either be a plain text secret value (deprecated) or the name of a Kubernetes secret
that contains the secret value under the `oAuthSecret` key. The Kubernetes secret must exist in the same namespace
as the `CheCluster` resource namespace and must have a `app.kubernetes.io/part-of=che.eclipse.org` label.
type: string
type: object
domain:
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.118.0
version: 7.119.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 @@ -22666,11 +22666,11 @@ spec:
type: string
oAuthSecret:
description: |-
Defines the OAuth client secret.
It can either be a plain text secret value or the name of a Kubernetes secret
containing a key `oAuthSecret` with the secret value. The Kubernetes secret must exist in the same namespace
as the `CheCluster` resource and have the label `app.kubernetes.io/part-of=che.eclipse.org`.
For OpenShift with built-in OAuth, this is the secret set in the `OAuthClient` resource used to set up identity federation.
For OIDC, this is the client secret issued by the Identity Provider for the configured OIDC client.
For OpenShift with built-in OAuth, this is the secret configured in the OAuthClient for OpenShift OAuth integration.
The value can either be a plain text secret value (deprecated) or the name of a Kubernetes secret
that contains the secret value under the `oAuthSecret` key. The Kubernetes secret must exist in the same namespace
as the `CheCluster` resource namespace and must have a `app.kubernetes.io/part-of=che.eclipse.org` label.
type: string
type: object
domain:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ rules:
- cluster
resources:
- proxies
- authentications
verbs:
- get
- apiGroups:
Expand Down
24 changes: 11 additions & 13 deletions helmcharts/stable/templates/che-operator.Deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,27 +54,25 @@ spec:
- name: OPERATOR_NAME
value: che-operator
- name: CHE_VERSION
value: 7.118.0
value: 7.119.0
- name: RELATED_IMAGE_che_server
value: quay.io/eclipse/che-server:7.118.0
value: quay.io/eclipse/che-server:7.119.0
- name: RELATED_IMAGE_dashboard
value: quay.io/eclipse/che-dashboard:7.118.0
value: quay.io/eclipse/che-dashboard:7.119.0
- name: RELATED_IMAGE_plugin_registry
value: quay.io/eclipse/che-plugin-registry:7.118.0
value: quay.io/eclipse/che-plugin-registry:7.119.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.6.15-8cb20d16e01a53d8d7f7696ac2f1af7d200d5c9984d226ce2299731d9eab6d6c
value: quay.io/eclipse/che--traefik:v3.7.5-d6858791f9e74df44ca4014166647c41cdc2abd3bf2a71b832ca4e1c6a91b257
- name: RELATED_IMAGE_single_host_gateway_config_sidecar
value: quay.io/che-incubator/configbump:7.118.0
value: quay.io/che-incubator/configbump:7.119.0
- name: RELATED_IMAGE_gateway_authentication_sidecar
value: quay.io/openshift/origin-oauth-proxy:4.9
- name: RELATED_IMAGE_gateway_authorization_sidecar
value: quay.io/openshift/origin-kube-rbac-proxy:4.9
value: quay.io/openshift/origin-oauth-proxy:4.22
- name: RELATED_IMAGE_gateway_authentication_sidecar_k8s
value: quay.io/oauth2-proxy/oauth2-proxy:v7.6.0
- name: RELATED_IMAGE_gateway_authorization_sidecar_k8s
value: quay.io/brancz/kube-rbac-proxy:v0.13.1
value: quay.io/oauth2-proxy/oauth2-proxy:v7.15.2
- name: RELATED_IMAGE_gateway_authorization_sidecar
value: quay.io/brancz/kube-rbac-proxy:v0.22.0
- name: RELATED_IMAGE_gateway_header_sidecar
value: quay.io/che-incubator/header-rewrite-proxy:latest
- name: CHE_FLAVOR
Expand Down Expand Up @@ -108,7 +106,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.118.0
image: quay.io/eclipse/che-operator:7.119.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 @@ -141,3 +141,5 @@ entries:
replaces: eclipse-che.v7.116.0
- name: eclipse-che.v7.118.0
replaces: eclipse-che.v7.117.0
- name: eclipse-che.v7.119.0
replaces: eclipse-che.v7.118.0
96 changes: 96 additions & 0 deletions olm-catalog/stable/eclipse-che.v7.119.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.118.0"
Version = "7.119.0"
)
Loading