From da43e739ff7b53f5f2bc35730beecccd2199c86e Mon Sep 17 00:00:00 2001 From: Mykhailo Kuznietsov Date: Wed, 15 Jul 2020 21:03:25 +0100 Subject: [PATCH] Release version 7.16.0 Signed-off-by: Mykhailo Kuznietsov --- .../src/main/webapp/WEB-INF/classes/che/che.properties | 8 ++++---- .../che/custom-charts/che-devfile-registry/values.yaml | 2 +- .../custom-charts/che-keycloak/templates/deployment.yaml | 2 +- .../helm/che/custom-charts/che-keycloak/values.yaml | 2 +- .../che/custom-charts/che-plugin-registry/values.yaml | 2 +- .../helm/che/custom-charts/che-postgres/values.yaml | 2 +- deploy/kubernetes/helm/che/templates/deployment.yaml | 4 ++-- deploy/kubernetes/helm/che/values.yaml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che/che.properties b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che/che.properties index 14a1153b5b9..463b6062e12 100644 --- a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che/che.properties +++ b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che/che.properties @@ -592,15 +592,15 @@ che.cors.allow_credentials=false # which doesn't contain any Che-specific workspace descriptors (like .devfile of .factory.json) # Multiple plugins must be comma-separated, for example: # pluginFooPublisher/pluginFooName/pluginFooVersion,pluginBarPublisher/pluginBarName/pluginBarVersion -che.factory.default_editor=eclipse/che-theia/next -che.factory.default_plugins=eclipse/che-machine-exec-plugin/nightly +che.factory.default_editor=eclipse/che-theia/7.16.0 +che.factory.default_plugins=eclipse/che-machine-exec-plugin/7.16.0 ### Devfile defaults # Default Editor that should be provisioned into Devfile if there is no specified Editor # Format is `editorPublisher/editorName/editorVersion` value. # `NULL` or absence of value means that default editor should not be provisioned. -che.workspace.devfile.default_editor=eclipse/che-theia/next +che.workspace.devfile.default_editor=eclipse/che-theia/7.16.0 # Default Plugins which should be provisioned for Default Editor. # All the plugins from this list that are not explicitly mentioned in the user-defined devfile @@ -609,7 +609,7 @@ che.workspace.devfile.default_editor=eclipse/che-theia/next # Format is comma-separated `pluginPublisher/pluginName/pluginVersion` values, and URLs. For example: # eclipse/che-theia-exec-plugin/0.0.1,eclipse/che-theia-terminal-plugin/0.0.1,https://cdn.pluginregistry.com/vi-mode/meta.yaml # If the plugin is a URL, the plugin's meta.yaml is retrieved from that URL. -che.workspace.devfile.default_editor.plugins=eclipse/che-machine-exec-plugin/nightly +che.workspace.devfile.default_editor.plugins=eclipse/che-machine-exec-plugin/7.16.0 # Defines comma-separated list of labels for selecting secrets from a user namespace, # which will be mount into workspace containers as a files or env variables. diff --git a/deploy/kubernetes/helm/che/custom-charts/che-devfile-registry/values.yaml b/deploy/kubernetes/helm/che/custom-charts/che-devfile-registry/values.yaml index 2de9080b0e0..bb342269b96 100644 --- a/deploy/kubernetes/helm/che/custom-charts/che-devfile-registry/values.yaml +++ b/deploy/kubernetes/helm/che/custom-charts/che-devfile-registry/values.yaml @@ -8,7 +8,7 @@ # cheDevfileRegistry: - image: quay.io/eclipse/che-devfile-registry:nightly + image: quay.io/eclipse/che-devfile-registry:7.16.0 imagePullPolicy: Always memoryLimit: 256Mi memoryRequests: 16Mi diff --git a/deploy/kubernetes/helm/che/custom-charts/che-keycloak/templates/deployment.yaml b/deploy/kubernetes/helm/che/custom-charts/che-keycloak/templates/deployment.yaml index 2fedf3436e7..9abef1e168f 100644 --- a/deploy/kubernetes/helm/che/custom-charts/che-keycloak/templates/deployment.yaml +++ b/deploy/kubernetes/helm/che/custom-charts/che-keycloak/templates/deployment.yaml @@ -30,7 +30,7 @@ spec: spec: initContainers: - name: wait-for-postgres - image: quay.io/eclipse/che-endpoint-watcher:nightly + image: quay.io/eclipse/che-endpoint-watcher:7.16.0 env: - name: POD_NAMESPACE valueFrom: diff --git a/deploy/kubernetes/helm/che/custom-charts/che-keycloak/values.yaml b/deploy/kubernetes/helm/che/custom-charts/che-keycloak/values.yaml index c4823d1ced0..3d74eee91d6 100644 --- a/deploy/kubernetes/helm/che/custom-charts/che-keycloak/values.yaml +++ b/deploy/kubernetes/helm/che/custom-charts/che-keycloak/values.yaml @@ -11,7 +11,7 @@ # This is a YAML-formatted file. # Declare variables to be passed into your templates. -image: quay.io/eclipse/che-keycloak:nightly +image: quay.io/eclipse/che-keycloak:7.16.0 requireAdminPasswordChange: true keycloakAdminUserName: admin keycloakAdminUserPassword: admin diff --git a/deploy/kubernetes/helm/che/custom-charts/che-plugin-registry/values.yaml b/deploy/kubernetes/helm/che/custom-charts/che-plugin-registry/values.yaml index 8c3b6acbdd8..ce8e0a48b26 100644 --- a/deploy/kubernetes/helm/che/custom-charts/che-plugin-registry/values.yaml +++ b/deploy/kubernetes/helm/che/custom-charts/che-plugin-registry/values.yaml @@ -8,7 +8,7 @@ # chePluginRegistry: - image: quay.io/eclipse/che-plugin-registry:nightly + image: quay.io/eclipse/che-plugin-registry:7.16.0 imagePullPolicy: Always memoryLimit: 256Mi memoryRequests: 16Mi diff --git a/deploy/kubernetes/helm/che/custom-charts/che-postgres/values.yaml b/deploy/kubernetes/helm/che/custom-charts/che-postgres/values.yaml index 4c8e84a1bf8..d9deeff0937 100644 --- a/deploy/kubernetes/helm/che/custom-charts/che-postgres/values.yaml +++ b/deploy/kubernetes/helm/che/custom-charts/che-postgres/values.yaml @@ -10,4 +10,4 @@ # Default values for postgres. # This is a YAML-formatted file. # Declare variables to be passed into your templates. -image: quay.io/eclipse/che-postgres:nightly +image: quay.io/eclipse/che-postgres:7.16.0 diff --git a/deploy/kubernetes/helm/che/templates/deployment.yaml b/deploy/kubernetes/helm/che/templates/deployment.yaml index 1981e7abe98..12a6c464238 100644 --- a/deploy/kubernetes/helm/che/templates/deployment.yaml +++ b/deploy/kubernetes/helm/che/templates/deployment.yaml @@ -33,7 +33,7 @@ spec: initContainers: {{- if .Values.global.multiuser }} - name: wait-for-postgres - image: quay.io/eclipse/che-endpoint-watcher:nightly + image: quay.io/eclipse/che-endpoint-watcher:7.16.0 env: - name: POD_NAMESPACE valueFrom: @@ -45,7 +45,7 @@ spec: #wait for keycloak if in multiuser mode and .Values.customOidcProvider was not defined {{- if (and .Values.global.multiuser (not .Values.customOidcProvider)) }} - name: wait-for-keycloak - image: quay.io/eclipse/che-endpoint-watcher:nightly + image: quay.io/eclipse/che-endpoint-watcher:7.16.0 env: - name: POD_NAMESPACE valueFrom: diff --git a/deploy/kubernetes/helm/che/values.yaml b/deploy/kubernetes/helm/che/values.yaml index b103372c4aa..550e50b23ad 100644 --- a/deploy/kubernetes/helm/che/values.yaml +++ b/deploy/kubernetes/helm/che/values.yaml @@ -16,7 +16,7 @@ cheWorkspaceHttpProxy: "" cheWorkspaceHttpsProxy: "" cheWorkspaceNoProxy: "" -cheImage: quay.io/eclipse/che-server:nightly +cheImage: quay.io/eclipse/che-server:7.16.0 cheImagePullPolicy: Always cheKeycloakRealm: "che" cheKeycloakClientId: "che-public"