Skip to content

Commit

Permalink
Release preparation
Browse files Browse the repository at this point in the history
Signed-off-by: Vitalii Parfonov <vparfono@redhat.com>
  • Loading branch information
vparfonov committed Mar 10, 2020
1 parent ff2befb commit 1eaeb83
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -577,15 +577,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.11.0
che.factory.default_plugins=eclipse/che-machine-exec-plugin/7.11.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.11.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
Expand All @@ -594,4 +594,4 @@ 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.11.0
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#

cheDevfileRegistry:
image: quay.io/eclipse/che-devfile-registry:nightly
image: quay.io/eclipse/che-devfile-registry:7.11.0
imagePullPolicy: Always
memoryLimit: 256Mi
memoryRequests: 16Mi
Original file line number Diff line number Diff line change
Expand Up @@ -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:
env:
- name: POD_NAMESPACE
valueFrom:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
# 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.11.0
requireAdminPasswordChange: true
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#

chePluginRegistry:
image: quay.io/eclipse/che-plugin-registry:nightly
image: quay.io/eclipse/che-plugin-registry:7.11.0
imagePullPolicy: Always
memoryLimit: 256Mi
memoryRequests: 16Mi
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.0
4 changes: 2 additions & 2 deletions deploy/kubernetes/helm/che/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
env:
- name: POD_NAMESPACE
valueFrom:
Expand All @@ -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:
env:
- name: POD_NAMESPACE
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/helm/che/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
cheWorkspaceHttpProxy: ""
cheWorkspaceHttpsProxy: ""
cheWorkspaceNoProxy: ""
cheImage: quay.io/eclipse/che-server:nightly
cheImage: quay.io/eclipse/che-server:7.11.0
cheImagePullPolicy: Always
cheKeycloakRealm: "che"
cheKeycloakClientId: "che-public"
Expand Down
8 changes: 4 additions & 4 deletions deploy/openshift/deploy_che.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ export CHE_OPENSHIFT_PROJECT=${CHE_OPENSHIFT_PROJECT:-${DEFAULT_CHE_OPENSHIFT_PR
DEFAULT_CHE_IMAGE_REPO="quay.io/eclipse/che-server"
export CHE_IMAGE_REPO=${CHE_IMAGE_REPO:-${DEFAULT_CHE_IMAGE_REPO}}

DEFAULT_CHE_IMAGE_TAG="nightly"
DEFAULT_PLUGIN_REGISTRY_IMAGE_TAG="7.11.0"
export CHE_IMAGE_TAG=${CHE_IMAGE_TAG:-${DEFAULT_CHE_IMAGE_TAG}}

DEFAULT_IMAGE_KEYCLOAK="quay.io/eclipse/che-keycloak"
export IMAGE_KEYCLOAK=${IMAGE_KEYCLOAK:-${DEFAULT_IMAGE_KEYCLOAK}}

DEFAULT_KEYCLOAK_IMAGE_TAG="nightly"
DEFAULT_PLUGIN_REGISTRY_IMAGE_TAG="7.11.0"
export KEYCLOAK_IMAGE_TAG=${KEYCLOAK_IMAGE_TAG:-${DEFAULT_KEYCLOAK_IMAGE_TAG}}

DEFAULT_KEYCLOAK_IMAGE_PULL_POLICY="Always"
Expand Down Expand Up @@ -203,7 +203,7 @@ export KEYCLOAK_PASSWORD=${KEYCLOAK_PASSWORD:-${DEFAULT_KEYCLOAK_PASSWORD}}
###
### Plugin Registry settings
###
DEFAULT_PLUGIN_REGISTRY_IMAGE_TAG="nightly"
DEFAULT_PLUGIN_REGISTRY_IMAGE_TAG="7.11.0"
export PLUGIN_REGISTRY_IMAGE_TAG=${PLUGIN_REGISTRY_IMAGE_TAG:-${DEFAULT_PLUGIN_REGISTRY_IMAGE_TAG}}

DEFAULT_PLUGIN_REGISTRY_IMAGE="quay.io/eclipse/che-plugin-registry"
Expand All @@ -218,7 +218,7 @@ export PLUGIN__REGISTRY__URL=${PLUGIN__REGISTRY__URL:-${DEFAULT_PLUGIN__REGISTRY
###
### Devfile Registry settings
###
DEFAULT_DEVFILE_REGISTRY_IMAGE_TAG="nightly"
DEFAULT_PLUGIN_REGISTRY_IMAGE_TAG="7.11.0"
export DEVFILE_REGISTRY_IMAGE_TAG=${DEVFILE_REGISTRY_IMAGE_TAG:-${DEFAULT_DEVFILE_REGISTRY_IMAGE_TAG}}

DEFAULT_DEVFILE_REGISTRY_IMAGE="quay.io/eclipse/che-devfile-registry"
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<artifactId>maven-depmgt-pom</artifactId>
<groupId>org.eclipse.che.depmgt</groupId>
<version>7.10.0-SNAPSHOT</version>
<version>7.10.0</version>
</parent>
<groupId>org.eclipse.che</groupId>
<artifactId>che-parent</artifactId>
Expand All @@ -43,7 +43,7 @@
<properties>
<build.info>${project.version}</build.info>
<che.dashboard.version>7.10.0-SNAPSHOT</che.dashboard.version>
<che.docs.version>7.10.0-SNAPSHOT</che.docs.version>
<che.docs.version>7.10.0</che.docs.version>
<che.version>7.10.0-SNAPSHOT</che.version>
<specification.version>1.0-beta2</specification.version>
</properties>
Expand Down

0 comments on commit 1eaeb83

Please sign in to comment.