Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 7.17.1 #402

Closed
wants to merge 6 commits into from
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
12 changes: 6 additions & 6 deletions deploy/operator-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
serviceAccountName: che-operator
containers:
- name: che-operator
image: quay.io/eclipse/che-operator:7.17.0
image: quay.io/eclipse/che-operator:7.17.1
ports:
- containerPort: 60000
name: metrics
Expand All @@ -44,21 +44,21 @@ spec:
- name: OPERATOR_NAME
value: che-operator
- name: CHE_VERSION
value: 7.17.0
value: 7.17.1
- name: RELATED_IMAGE_che_server
value: quay.io/eclipse/che-server:7.17.0
value: quay.io/eclipse/che-server:7.17.1
- name: RELATED_IMAGE_plugin_registry
value: quay.io/eclipse/che-plugin-registry:7.17.0
value: quay.io/eclipse/che-plugin-registry:7.17.1
- name: RELATED_IMAGE_devfile_registry
value: quay.io/eclipse/che-devfile-registry:7.17.0
value: quay.io/eclipse/che-devfile-registry:7.17.1
- name: RELATED_IMAGE_che_tls_secrets_creation_job
value: quay.io/eclipse/che-tls-secret-creator:alpine-3029769
- name: RELATED_IMAGE_pvc_jobs
value: registry.access.redhat.com/ubi8-minimal:8.2-345
- name: RELATED_IMAGE_postgres
value: centos/postgresql-96-centos7:9.6
- name: RELATED_IMAGE_keycloak
value: quay.io/eclipse/che-keycloak:7.17.0
value: quay.io/eclipse/che-keycloak:7.17.1
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
value: quay.io/eclipse/che-plugin-metadata-broker:v3.2.0
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
Expand Down
12 changes: 6 additions & 6 deletions deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
spec:
containers:
- name: che-operator
image: quay.io/eclipse/che-operator:7.17.0
image: quay.io/eclipse/che-operator:7.17.1
ports:
- containerPort: 60000
name: metrics
Expand All @@ -43,21 +43,21 @@ spec:
- name: OPERATOR_NAME
value: che-operator
- name: CHE_VERSION
value: 7.17.0
value: 7.17.1
- name: RELATED_IMAGE_che_server
value: quay.io/eclipse/che-server:7.17.0
value: quay.io/eclipse/che-server:7.17.1
- name: RELATED_IMAGE_plugin_registry
value: quay.io/eclipse/che-plugin-registry:7.17.0
value: quay.io/eclipse/che-plugin-registry:7.17.1
- name: RELATED_IMAGE_devfile_registry
value: quay.io/eclipse/che-devfile-registry:7.17.0
value: quay.io/eclipse/che-devfile-registry:7.17.1
- name: RELATED_IMAGE_che_tls_secrets_creation_job
value: quay.io/eclipse/che-tls-secret-creator:alpine-3029769
- name: RELATED_IMAGE_pvc_jobs
value: registry.access.redhat.com/ubi8-minimal:8.2-345
- name: RELATED_IMAGE_postgres
value: centos/postgresql-96-centos7:9.6
- name: RELATED_IMAGE_keycloak
value: quay.io/eclipse/che-keycloak:7.17.0
value: quay.io/eclipse/che-keycloak:7.17.1
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
value: quay.io/eclipse/che-plugin-metadata-broker:v3.2.0
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
channels:
- currentCSV: eclipse-che-preview-kubernetes.v9.9.9-nightly.1596725014
name: nightly
- currentCSV: eclipse-che-preview-kubernetes.v7.17.0
- currentCSV: eclipse-che-preview-kubernetes.v7.17.1
name: stable
defaultChannel: stable
packageName: eclipse-che-preview-kubernetes

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
channels:
- currentCSV: eclipse-che-preview-openshift.v9.9.9-nightly.1596725015
name: nightly
- currentCSV: eclipse-che-preview-openshift.v7.17.0
- currentCSV: eclipse-che-preview-openshift.v7.17.1
name: stable
defaultChannel: stable
packageName: eclipse-che-preview-openshift
21 changes: 13 additions & 8 deletions olm/olm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,20 @@ EOF
marketplaceNamespace="openshift-marketplace";
applyCheOperatorSource
else
curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/0.14.1/install.sh | bash -s 0.14.1
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/master/deploy/upstream/01_namespace.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/master/deploy/upstream/03_operatorsource.crd.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/master/deploy/upstream/04_service_account.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/master/deploy/upstream/05_role.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/master/deploy/upstream/06_role_binding.yaml
OLM_VERSION=0.15.1
MARKETPLACE_VERSION=4.5
OPERATOR_MARKETPLACE_VERSION="release-${MARKETPLACE_VERSION}"
curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/${OLM_VERSION}/install.sh | bash -s ${OLM_VERSION}
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/${OPERATOR_MARKETPLACE_VERSION}/deploy/upstream/01_namespace.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/${OPERATOR_MARKETPLACE_VERSION}/deploy/upstream/03_operatorsource.crd.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/${OPERATOR_MARKETPLACE_VERSION}/deploy/upstream/04_service_account.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/${OPERATOR_MARKETPLACE_VERSION}/deploy/upstream/05_role.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/${OPERATOR_MARKETPLACE_VERSION}/deploy/upstream/06_role_binding.yaml
sleep 1
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/master/deploy/upstream/07_upstream_operatorsource.cr.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/master/deploy/upstream/08_operator.yaml
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-marketplace/${OPERATOR_MARKETPLACE_VERSION}/deploy/upstream/07_upstream_operatorsource.cr.yaml
curl -sL https://raw.githubusercontent.com/operator-framework/operator-marketplace/${OPERATOR_MARKETPLACE_VERSION}/deploy/upstream/08_operator.yaml | \
sed -e "s;quay.io/openshift/origin-operator-marketplace:latest;quay.io/openshift/origin-operator-marketplace:${MARKETPLACE_VERSION};" | \
kubectl apply -f -

applyCheOperatorSource

Expand Down