Skip to content

Commit fa711e6

Browse files
che-botmkuznyetsov
andauthored
ci: Copy 7.116.0 csv to main (#2109)
Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
1 parent 2bb03cd commit fa711e6

9 files changed

Lines changed: 170 additions & 58 deletions

File tree

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

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

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5976,6 +5976,7 @@ spec:
59765976
add:
59775977
- SETGID
59785978
- SETUID
5979+
- CHOWN
59795980
procMount: Unmasked
59805981
description: |-
59815982
SecurityContext applied to all workspace containers when run capabilities are enabled.
@@ -11177,7 +11178,9 @@ spec:
1117711178
description: Deprecated the public URL of the internal devfile registry.
1117811179
type: string
1117911180
gatewayPhase:
11180-
description: Specifies the current phase of the gateway deployment.
11181+
description: |-
11182+
Deprecated.
11183+
Specifies the current phase of the gateway deployment.
1118111184
type: string
1118211185
message:
1118311186
description: A human readable message indicating details about why

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.115.0
16+
version: 7.116.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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5950,6 +5950,7 @@ spec:
59505950
add:
59515951
- SETGID
59525952
- SETUID
5953+
- CHOWN
59535954
procMount: Unmasked
59545955
description: |-
59555956
SecurityContext applied to all workspace containers when run capabilities are enabled.
@@ -11138,7 +11139,9 @@ spec:
1113811139
description: Deprecated the public URL of the internal devfile registry.
1113911140
type: string
1114011141
gatewayPhase:
11141-
description: Specifies the current phase of the gateway deployment.
11142+
description: |-
11143+
Deprecated.
11144+
Specifies the current phase of the gateway deployment.
1114211145
type: string
1114311146
message:
1114411147
description: A human readable message indicating details about why

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ rules:
200200
verbs:
201201
- create
202202
- delete
203+
- deletecollection
203204
- get
204205
- update
205206
- patch

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.115.0
57+
value: 7.116.0
5858
- name: RELATED_IMAGE_che_server
59-
value: quay.io/eclipse/che-server:7.115.0
59+
value: quay.io/eclipse/che-server:7.116.0
6060
- name: RELATED_IMAGE_dashboard
61-
value: quay.io/eclipse/che-dashboard:7.115.0
61+
value: quay.io/eclipse/che-dashboard:7.116.0
6262
- name: RELATED_IMAGE_plugin_registry
63-
value: quay.io/eclipse/che-plugin-registry:7.115.0
63+
value: quay.io/eclipse/che-plugin-registry:7.116.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.6.9-9004e1cd1e33c5eb0b6ec02bc6cfda61fe9caca36751114b1c9c6662f01b264a
6868
- name: RELATED_IMAGE_single_host_gateway_config_sidecar
69-
value: quay.io/che-incubator/configbump:7.115.0
69+
value: quay.io/che-incubator/configbump:7.116.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.115.0
111+
image: quay.io/eclipse/che-operator:7.116.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
@@ -135,3 +135,5 @@ entries:
135135
replaces: eclipse-che.v7.113.0
136136
- name: eclipse-che.v7.115.0
137137
replaces: eclipse-che.v7.114.0
138+
- name: eclipse-che.v7.116.0
139+
replaces: eclipse-che.v7.115.0

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

Lines changed: 96 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.115.0"
16+
Version = "7.116.0"
1717
)

0 commit comments

Comments
 (0)