Release version 7.25.1 (#655)

* Update defaults tags to 7.25.1

Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>

* Release OLM files to 7.25.1

Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>

Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
7.25.x
che-bot 2021-02-01 09:36:56 +01:00 committed by GitHub
parent 0b230059da
commit e6c6d7b9f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 4421 additions and 8 deletions

View File

@ -26,7 +26,7 @@ spec:
spec:
containers:
- name: che-operator
image: quay.io/eclipse/che-operator:7.25.0
image: quay.io/eclipse/che-operator:7.25.1
ports:
- containerPort: 60000
name: metrics
@ -45,13 +45,13 @@ spec:
- name: OPERATOR_NAME
value: che-operator
- name: CHE_VERSION
value: 7.25.0
value: 7.25.1
- name: RELATED_IMAGE_che_server
value: quay.io/eclipse/che-server:7.25.0
value: quay.io/eclipse/che-server:7.25.1
- name: RELATED_IMAGE_plugin_registry
value: quay.io/eclipse/che-plugin-registry:7.25.0
value: quay.io/eclipse/che-plugin-registry:7.25.1
- name: RELATED_IMAGE_devfile_registry
value: quay.io/eclipse/che-devfile-registry:7.25.0
value: quay.io/eclipse/che-devfile-registry:7.25.1
- name: RELATED_IMAGE_che_tls_secrets_creation_job
value: quay.io/eclipse/che-tls-secret-creator:alpine-d1ed4ad
- name: RELATED_IMAGE_pvc_jobs
@ -59,7 +59,7 @@ spec:
- name: RELATED_IMAGE_postgres
value: quay.io/eclipse/che--centos--postgresql-96-centos7:9.6-b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
- name: RELATED_IMAGE_keycloak
value: quay.io/eclipse/che-keycloak:7.25.0
value: quay.io/eclipse/che-keycloak:7.25.1
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
value: quay.io/eclipse/che-plugin-metadata-broker:v3.4.0
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts

View File

@ -0,0 +1,826 @@
#
# Copyright (c) 2012-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: checlusters.org.eclipse.che
spec:
group: org.eclipse.che
names:
kind: CheCluster
listKind: CheClusterList
plural: checlusters
singular: checluster
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
description: The `CheCluster` custom resource allows defining and managing a
Che server installation
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: Desired configuration of the Che installation. Based on these
settings, the operator automatically creates and maintains several config
maps that will contain the appropriate environment variables the various
components of the Che installation. These generated config maps should
NOT be updated manually.
properties:
auth:
description: Configuration settings related to the Authentication used
by the Che installation.
properties:
externalIdentityProvider:
description: 'Instructs the operator on whether or not to deploy
a dedicated Identity Provider (Keycloak or RH SSO instance). By
default a dedicated Identity Provider server is deployed as part
of the Che installation. But if `externalIdentityProvider` is
`true`, then no dedicated identity provider will be deployed by
the operator and you might need to provide details about the external
identity provider you want to use. See also all the other fields
starting with: `identityProvider`.'
type: boolean
identityProviderAdminUserName:
description: Overrides the name of the Identity Provider admin user.
Defaults to `admin`.
type: string
identityProviderClientId:
description: Name of a Identity provider (Keycloak / RH SSO) `client-id`
that should be used for Che. This is useful to override it ONLY
if you use an external Identity Provider (see the `externalIdentityProvider`
field). If omitted or left blank, it will be set to the value
of the `flavour` field suffixed with `-public`.
type: string
identityProviderContainerResources:
description: Identity provider container custom settings
properties:
limits:
description: Limits describes the maximum amount of compute
resources allowed.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
request:
description: Requests describes the minimum amount of compute
resources required.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
type: object
identityProviderImage:
description: Overrides the container image used in the Identity
Provider (Keycloak / RH SSO) deployment. This includes the image
tag. Omit it or leave it empty to use the defaut container image
provided by the operator.
type: string
identityProviderImagePullPolicy:
description: Overrides the image pull policy used in the Identity
Provider (Keycloak / RH SSO) deployment. Default value is `Always`
for `nightly` or `latest` images, and `IfNotPresent` in other
cases.
type: string
identityProviderIngress:
description: Ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
identityProviderPassword:
description: Overrides the password of Keycloak admin user. This
is useful to override it ONLY if you use an external Identity
Provider (see the `externalIdentityProvider` field). If omitted
or left blank, it will be set to an auto-generated password.
type: string
identityProviderPostgresPassword:
description: Password for The Identity Provider (Keycloak / RH SSO)
to connect to the database. This is useful to override it ONLY
if you use an external Identity Provider (see the `externalIdentityProvider`
field). If omitted or left blank, it will be set to an auto-generated
password.
type: string
identityProviderPostgresSecret:
description: 'The secret that contains `password` for The Identity
Provider (Keycloak / RH SSO) to connect to the database. If the
secret is defined then `identityProviderPostgresPassword` will
be ignored. If the value is omitted or left blank then there are
two scenarios: 1. `identityProviderPostgresPassword` is defined,
then it will be used to connect to the database. 2. `identityProviderPostgresPassword`
is not defined, then a new secret with the name `che-identity-postgres-secret`
will be created with an auto-generated value for `password`.'
type: string
identityProviderRealm:
description: Name of a Identity provider (Keycloak / RH SSO) realm
that should be used for Che. This is useful to override it ONLY
if you use an external Identity Provider (see the `externalIdentityProvider`
field). If omitted or left blank, it will be set to the value
of the `flavour` field.
type: string
identityProviderRoute:
description: Route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
identityProviderSecret:
description: 'The secret that contains `user` and `password` for
Identity Provider. If the secret is defined then `identityProviderAdminUserName`
and `identityProviderPassword` are ignored. If the value is omitted
or left blank then there are two scenarios: 1. `identityProviderAdminUserName`
and `identityProviderPassword` are defined, then they will be
used. 2. `identityProviderAdminUserName` or `identityProviderPassword`
are not defined, then a new secret with the name `che-identity-secret`
will be created with default value `admin` for `user` and with
an auto-generated value for `password`.'
type: string
identityProviderURL:
description: Public URL of the Identity Provider server (Keycloak
/ RH SSO server). You should set it ONLY if you use an external
Identity Provider (see the `externalIdentityProvider` field).
By default this will be automatically calculated and set by the
operator.
type: string
oAuthClientName:
description: Name of the OpenShift `OAuthClient` resource used to
setup identity federation on the OpenShift side. Auto-generated
if left blank. See also the `OpenShiftoAuth` field.
type: string
oAuthSecret:
description: Name of the secret set in the OpenShift `OAuthClient`
resource used to setup identity federation on the OpenShift side.
Auto-generated if left blank. See also the `OAuthClientName` field.
type: string
openShiftoAuth:
description: 'Enables the integration of the identity provider (Keycloak
/ RHSSO) with OpenShift OAuth. Empty value on the OpenShift platform
by default. If user changes this empty value to true/false, then
che-operator respect this value. Otherwise che-operator tries
to auto detect if Openshift oAuth can be enabled and change empty
value, correspondly to auto-detection result. This property allows
users to directly login with their Openshift user through the
Openshift login, and have their workspaces created under personal
OpenShift namespaces. WARNING: the `kubeadmin` user is NOT supported,
and logging through it will NOT allow accessing the Che Dashboard.'
type: boolean
updateAdminPassword:
description: Forces the default `admin` Che user to update password
on first login. Defaults to `false`.
type: boolean
type: object
database:
description: Configuration settings related to the database used by
the Che installation.
properties:
chePostgresContainerResources:
description: Postgres container custom settings
properties:
limits:
description: Limits describes the maximum amount of compute
resources allowed.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
request:
description: Requests describes the minimum amount of compute
resources required.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
type: object
chePostgresDb:
description: Postgres database name that the Che server uses to
connect to the DB. Defaults to `dbche`.
type: string
chePostgresHostName:
description: Postgres Database hostname that the Che server uses
to connect to. Defaults to postgres. This value should be overridden
ONLY when using an external database (see field `externalDb`).
In the default case it will be automatically set by the operator.
type: string
chePostgresPassword:
description: Postgres password that the Che server should use to
connect to the DB. If omitted or left blank, it will be set to
an auto-generated value.
type: string
chePostgresPort:
description: Postgres Database port that the Che server uses to
connect to. Defaults to 5432. This value should be overridden
ONLY when using an external database (see field `externalDb`).
In the default case it will be automatically set by the operator.
type: string
chePostgresSecret:
description: 'The secret that contains Postgres `user` and `password`
that the Che server should use to connect to the DB. If the secret
is defined then `chePostgresUser` and `chePostgresPassword` are
ignored. If the value is omitted or left blank then there are
two scenarios: 1. `chePostgresUser` and `chePostgresPassword`
are defined, then they will be used to connect to the DB. 2. `chePostgresUser`
or `chePostgresPassword` are not defined, then a new secret with
the name `che-postgres-secret` will be created with default value
of `pgche` for `user` and with an auto-generated value for `password`.'
type: string
chePostgresUser:
description: Postgres user that the Che server should use to connect
to the DB. Defaults to `pgche`.
type: string
externalDb:
description: 'Instructs the operator on whether or not to deploy
a dedicated database. By default a dedicated Postgres database
is deployed as part of the Che installation. But if `externalDb`
is `true`, then no dedicated database will be deployed by the
operator and you might need to provide connection details to the
external DB you want to use. See also all the fields starting
with: `chePostgres`.'
type: boolean
postgresImage:
description: Overrides the container image used in the Postgres
database deployment. This includes the image tag. Omit it or leave
it empty to use the defaut container image provided by the operator.
type: string
postgresImagePullPolicy:
description: Overrides the image pull policy used in the Postgres
database deployment. Default value is `Always` for `nightly` or
`latest` images, and `IfNotPresent` in other cases.
type: string
type: object
imagePuller:
description: Kubernetes Image Puller configuration
properties:
enable:
description: "Install and configure the Community Supported Kubernetes
Image Puller Operator. If true and no spec is provided, it will
create a default KubernetesImagePuller object to be managed by
the Operator. If false, the KubernetesImagePuller object will
be deleted, and the operator will be uninstalled, regardless of
whether or not a spec is provided. \n Please note that while this
operator and its behavior is community-supported, its payload
may be commercially-supported if you use it for pulling commercially-supported
images."
type: boolean
spec:
description: A KubernetesImagePullerSpec to configure the image
puller in the CheCluster
properties:
cachingCPULimit:
type: string
cachingCPURequest:
type: string
cachingIntervalHours:
type: string
cachingMemoryLimit:
type: string
cachingMemoryRequest:
type: string
configMapName:
type: string
daemonsetName:
type: string
deploymentName:
type: string
images:
type: string
nodeSelector:
type: string
type: object
type: object
k8s:
description: Configuration settings specific to Che installations made
on upstream Kubernetes.
properties:
ingressClass:
description: 'Ingress class that will define the which controler
will manage ingresses. Defaults to `nginx`. NB: This drives the
`is kubernetes.io/ingress.class` annotation on Che-related ingresses.'
type: string
ingressDomain:
description: 'Global ingress domain for a K8S cluster. This MUST
be explicitly specified: there are no defaults.'
type: string
ingressStrategy:
description: Strategy for ingress creation. This can be `multi-host`
(host is explicitly provided in ingress), `single-host` (host
is provided, path-based rules) and `default-host.*`(no host is
provided, path-based rules). Defaults to `"multi-host` Deprecated
in favor of "serverExposureStrategy" in the "server" section,
which defines this regardless of the cluster type. If both are
defined, `serverExposureStrategy` takes precedence.
type: string
securityContextFsGroup:
description: FSGroup the Che pod and Workspace pods containers should
run in. Defaults to `1724`.
type: string
securityContextRunAsUser:
description: ID of the user the Che pod and Workspace pods containers
should run as. Default to `1724`.
type: string
singleHostExposureType:
description: When the serverExposureStrategy is set to "single-host",
the way the server, registries and workspaces are exposed is further
configured by this property. The possible values are "native"
(which means that the server and workspaces are exposed using
ingresses on K8s) or "gateway" where the server and workspaces
are exposed using a custom gateway based on Traefik. All the endpoints
whether backed by the ingress or gateway "route" always point
to the subpaths on the same domain. Defaults to "native".
type: string
tlsSecretName:
description: Name of a secret that is used to set ingress TLS termination
if TLS is enabled. If the specified secret does not exist, a self-signed
certificate will be created. If the value is empty or omitted,
the default ingress controller certificate will be used. See also
the `tlsSupport` field. Note, when switching to the default ingress
controller certificate, `self-signed-certificate` secret should
be deleted manually.
type: string
type: object
metrics:
description: Configuration settings related to the metrics collection
used by the Che installation.
properties:
enable:
description: Enables `metrics` Che server endpoint. Default to `true`.
type: boolean
type: object
server:
description: General configuration settings related to the Che server
and the plugin and devfile registries
properties:
airGapContainerRegistryHostname:
description: Optional hostname (or url) to an alternate container
registry to pull images from. This value overrides the container
registry hostname defined in all the default container images
involved in a Che deployment. This is particularly useful to install
Che in an air-gapped environment.
type: string
airGapContainerRegistryOrganization:
description: Optional repository name of an alternate container
registry to pull images from. This value overrides the container
registry organization defined in all the default container images
involved in a Che deployment. This is particularly useful to install
Che in an air-gapped environment.
type: string
allowUserDefinedWorkspaceNamespaces:
description: Defines if a user is able to specify Kubernetes namespace
(or OpenShift project) different from the default. It's NOT RECOMMENDED
to configured true without OAuth configured. This property is
also used by the OpenShift infra.
type: boolean
cheClusterRoles:
description: Comma-separated list of ClusterRoles that will be assigned
to che ServiceAccount. Be aware that che-operator has to already
have all permissions in these ClusterRoles to be able to grant
them.
type: string
cheDebug:
description: Enables the debug mode for Che server. Defaults to
`false`.
type: string
cheFlavor:
description: Flavor of the installation. This is either `che` for
upstream Che installations, or `codeready` for CodeReady Workspaces
installation. In most cases the default value should not be overridden.
type: string
cheHost:
description: Public hostname of the installed Che server. If value
is omitted then it will be automatically set by the operator.
(see the `cheHostTLSSecret` field).
type: string
cheHostTLSSecret:
description: Name of a secret containing certificates to secure
ingress/route for the custom hostname of the installed Che server.
(see the `cheHost` field).
type: string
cheImage:
description: Overrides the container image used in Che deployment.
This does NOT include the container image tag. Omit it or leave
it empty to use the defaut container image provided by the operator.
type: string
cheImagePullPolicy:
description: Overrides the image pull policy used in Che deployment.
Default value is `Always` for `nightly` or `latest` images, and
`IfNotPresent` in other cases.
type: string
cheImageTag:
description: Overrides the tag of the container image used in Che
deployment. Omit it or leave it empty to use the defaut image
tag provided by the operator.
type: string
cheLogLevel:
description: 'Log level for the Che server: `INFO` or `DEBUG`. Defaults
to `INFO`.'
type: string
cheServerIngress:
description: Che server ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
cheServerRoute:
description: Che server route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
cheWorkspaceClusterRole:
description: Custom cluster role bound to the user for the Che workspaces.
The default roles are used if this is omitted or left blank.
type: string
customCheProperties:
additionalProperties:
type: string
description: Map of additional environment variables that will be
applied in the generated `che` config map to be used by the Che
server, in addition to the values already generated from other
fields of the `CheCluster` custom resource (CR). If `customCheProperties`
contains a property that would be normally generated in `che`
config map from other CR fields, then the value defined in the
`customCheProperties` will be used instead.
type: object
devfileRegistryCpuLimit:
description: Overrides the cpu limit used in the Devfile registry
deployment. In cores. (500m = .5 cores). Default to 500m.
type: string
devfileRegistryCpuRequest:
description: Overrides the cpu request used in the Devfile registry
deployment. In cores. (500m = .5 cores). Default to 100m.
type: string
devfileRegistryImage:
description: Overrides the container image used in the Devfile registry
deployment. This includes the image tag. Omit it or leave it empty
to use the defaut container image provided by the operator.
type: string
devfileRegistryIngress:
description: Devfile registry ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
devfileRegistryMemoryLimit:
description: Overrides the memory limit used in the Devfile registry
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 256Mi.
type: string
devfileRegistryMemoryRequest:
description: Overrides the memory request used in the Devfile registry
deployment In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 32Mi.
type: string
devfileRegistryPullPolicy:
description: Overrides the image pull policy used in the Devfile
registry deployment. Default value is `Always` for `nightly` or
`latest` images, and `IfNotPresent` in other cases.
type: string
devfileRegistryRoute:
description: Devfile registry route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
devfileRegistryUrl:
description: Public URL of the Devfile registry, that serves sample,
ready-to-use devfiles. You should set it ONLY if you use an external
devfile registry (see the `externalDevfileRegistry` field). By
default this will be automatically calculated by the operator.
type: string
externalDevfileRegistry:
description: Instructs the operator on whether or not to deploy
a dedicated Devfile registry server. By default a dedicated devfile
registry server is started. But if `externalDevfileRegistry` is
`true`, then no such dedicated server will be started by the operator
and you will have to manually set the `devfileRegistryUrl` field
type: boolean
externalPluginRegistry:
description: Instructs the operator on whether or not to deploy
a dedicated Plugin registry server. By default a dedicated plugin
registry server is started. But if `externalPluginRegistry` is
`true`, then no such dedicated server will be started by the operator
and you will have to manually set the `pluginRegistryUrl` field.
type: boolean
gitSelfSignedCert:
description: If enabled, then the certificate from `che-git-self-signed-cert`
config map will be propagated to the Che components and provide
particular configuration for Git.
type: boolean
nonProxyHosts:
description: 'List of hosts that should not use the configured proxy.
So specify wild card domain use the following form `.<DOMAIN>`
and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32`
Only use when configuring a proxy is required. Operator respects
OpenShift cluster wide proxy configuration and no additional configuration
is required, but defining `nonProxyHosts` in a custom resource
leads to merging non proxy hosts lists from the cluster proxy
configuration and ones defined in the custom resources. (see the
doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html)
(see also the `proxyURL` fields).'
type: string
pluginRegistryCpuLimit:
description: Overrides the cpu limit used in the Plugin registry
deployment. In cores. (500m = .5 cores). Default to 500m.
type: string
pluginRegistryCpuRequest:
description: Overrides the cpu request used in the Plugin registry
deployment. In cores. (500m = .5 cores). Default to 100m.
type: string
pluginRegistryImage:
description: Overrides the container image used in the Plugin registry
deployment. This includes the image tag. Omit it or leave it empty
to use the default container image provided by the operator.
type: string
pluginRegistryIngress:
description: Plugin registry ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
pluginRegistryMemoryLimit:
description: Overrides the memory limit used in the Plugin registry
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 256Mi.
type: string
pluginRegistryMemoryRequest:
description: Overrides the memory request used in the Plugin registry
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 32Mi.
type: string
pluginRegistryPullPolicy:
description: Overrides the image pull policy used in the Plugin
registry deployment. Default value is `Always` for `nightly` or
`latest` images, and `IfNotPresent` in other cases.
type: string
pluginRegistryRoute:
description: Plugin registry route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
pluginRegistryUrl:
description: Public URL of the Plugin registry, that serves sample
ready-to-use devfiles. You should set it ONLY if you use an external
devfile registry (see the `externalPluginRegistry` field). By
default this will be automatically calculated by the operator.
type: string
proxyPassword:
description: Password of the proxy server Only use when proxy configuration
is required (see also the `proxyURL`, `proxyUser` and `proxySecret`
fields).
type: string
proxyPort:
description: Port of the proxy server. Only use when configuring
a proxy is required. (see also the `proxyURL` and `nonProxyHosts`
fields).
type: string
proxySecret:
description: The secret that contains `user` and `password` for
a proxy server. If the secret is defined then `proxyUser` and
`proxyPassword` are ignored
type: string
proxyURL:
description: URL (protocol+hostname) of the proxy server. This drives
the appropriate changes in the `JAVA_OPTS` and `https(s)_proxy`
variables in the Che server and workspaces containers. Only use
when configuring a proxy is required. Operator respects OpenShift
cluster wide proxy configuration and no additional configuration
is required, but defining `proxyUrl` in a custom resource leads
to overrides the cluster proxy configuration with fields `proxyUrl`,
`proxyPort`, `proxyUser` and `proxyPassword` from the custom resource.
(see the doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html)
(see also the `proxyPort` and `nonProxyHosts` fields).
type: string
proxyUser:
description: User name of the proxy server. Only use when configuring
a proxy is required (see also the `proxyURL`, `proxyPassword`
and `proxySecret` fields).
type: string
selfSignedCert:
description: Deprecated. The value of this flag is ignored. Che
operator will automatically detect if router certificate is self-signed.
If so it will be propagated to Che server and some other components.
type: boolean
serverCpuLimit:
description: Overrides the cpu limit used in the Che server deployment
In cores. (500m = .5 cores). Default to 1.
type: string
serverCpuRequest:
description: Overrides the cpu request used in the Che server deployment
In cores. (500m = .5 cores). Default to 100m.
type: string
serverExposureStrategy:
description: Sets the server and workspaces exposure type. Possible
values are "multi-host", "single-host", "default-host". Defaults
to "multi-host" which creates a separate ingress (or route on
OpenShift) for every required endpoint. "single-host" makes Che
exposed on a single hostname with workspaces exposed on subpaths.
Please read the docs to learn about the limitations of this approach.
Also consult the `singleHostExposureType` property to further
configure how the operator and Che server make that happen on
Kubernetes. "default-host" exposes che server on the host of the
cluster. Please read the docs to learn about the limitations of
this approach.
type: string
serverMemoryLimit:
description: Overrides the memory limit used in the Che server deployment.
In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). Defaults
to 1Gi.
type: string
serverMemoryRequest:
description: Overrides the memory request used in the Che server
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 512Mi.
type: string
serverTrustStoreConfigMapName:
description: Name of the config-map with public certificates to
add to Java trust store of the Che server. This is usually required
when adding the OpenShift OAuth provider which has https endpoint
signed with self-signed cert. So, Che server must be aware of
its CA cert to be able to request it. This is disabled by default.
type: string
singleHostGatewayConfigMapLabels:
additionalProperties:
type: string
description: The labels that need to be present (and are put) on
the configmaps representing the gateway configuration.
type: object
singleHostGatewayConfigSidecarImage:
description: The image used for the gateway sidecar that provides
configuration to the gateway. Omit it or leave it empty to use
the defaut container image provided by the operator.
type: string
singleHostGatewayImage:
description: The image used for the gateway in the single host mode.
Omit it or leave it empty to use the defaut container image provided
by the operator.
type: string
tlsSupport:
description: Deprecated. Instructs the operator to deploy Che in
TLS mode. This is enabled by default. Disabling TLS may cause
malfunction of some Che components.
type: boolean
useInternalClusterSVCNames:
description: Use internal cluster svc names to communicate between
components to speed up the traffic and avoid proxy issues. The
default value is `true`.
type: boolean
workspaceNamespaceDefault:
description: 'Defines Kubernetes default namespace in which user''s
workspaces are created if user does not override it. It''s possible
to use <username>, <userid> and <workspaceid> placeholders (e.g.:
che-workspace-<username>). In that case, new namespace will be
created for each user (or workspace). Is used by OpenShift infra
as well to specify Project'
type: string
type: object
storage:
description: Configuration settings related to the persistent storage
used by the Che installation.
properties:
postgresPVCStorageClassName:
description: Storage class for the Persistent Volume Claim dedicated
to the Postgres database. If omitted or left blank, default storage
class is used.
type: string
preCreateSubPaths:
description: Instructs the Che server to launch a special pod to
pre-create a subpath in the Persistent Volumes. Defaults to `false`,
however it might need to enable it according to the configuration
of your K8S cluster.
type: boolean
pvcClaimSize:
description: Size of the persistent volume claim for workspaces.
Defaults to `1Gi`
type: string
pvcJobsImage:
description: Overrides the container image used to create sub-paths
in the Persistent Volumes. This includes the image tag. Omit it
or leave it empty to use the defaut container image provided by
the operator. See also the `preCreateSubPaths` field.
type: string
pvcStrategy:
description: Persistent volume claim strategy for the Che server.
This Can be:`common` (all workspaces PVCs in one volume), `per-workspace`
(one PVC per workspace for all declared volumes) and `unique`
(one PVC per declared volume). Defaults to `common`.
type: string
workspacePVCStorageClassName:
description: Storage class for the Persistent Volume Claims dedicated
to the Che workspaces. If omitted or left blank, default storage
class is used.
type: string
type: object
type: object
status:
description: CheClusterStatus defines the observed state of Che installation
properties:
cheClusterRunning:
description: Status of a Che installation. Can be `Available`, `Unavailable`,
or `Available, Rolling Update in Progress`
type: string
cheURL:
description: Public URL to the Che server
type: string
cheVersion:
description: Current installed Che version
type: string
dbProvisioned:
description: Indicates if or not a Postgres instance has been correctly
provisioned
type: boolean
devfileRegistryURL:
description: Public URL to the Devfile registry
type: string
gitHubOAuthProvisioned:
description: Indicates whether an Identity Provider instance (Keycloak
/ RH SSO) has been configured to integrate with the GitHub OAuth.
type: boolean
helpLink:
description: A URL that can point to some URL where to find help related
to the current Operator status.
type: string
keycloakProvisioned:
description: Indicates whether an Identity Provider instance (Keycloak
/ RH SSO) has been provisioned with realm, client and user
type: boolean
keycloakURL:
description: Public URL to the Identity Provider server (Keycloak /
RH SSO).
type: string
message:
description: A human readable message indicating details about why the
pod is in this condition.
type: string
openShiftoAuthProvisioned:
description: Indicates whether an Identity Provider instance (Keycloak
/ RH SSO) has been configured to integrate with the OpenShift OAuth.
type: boolean
pluginRegistryURL:
description: Public URL to the Plugin registry
type: string
reason:
description: A brief CamelCase message indicating details about why
the pod is in this state.
type: string
type: object
type: object
version: v1
versions:
- name: v1
served: true
storage: true

View File

@ -0,0 +1,342 @@
--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.25.0/eclipse-che-preview-kubernetes.v7.25.0.clusterserviceversion.yaml 2021-01-29 07:41:24.316094232 +0000
+++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.25.1/eclipse-che-preview-kubernetes.v7.25.1.clusterserviceversion.yaml 2021-01-29 08:27:32.009831613 +0000
@@ -83,14 +83,14 @@
capabilities: Seamless Upgrades
categories: Developer Tools
certified: "false"
- containerImage: quay.io/eclipse/che-operator@sha256:22bb6fdfbcd7cca4c0b4db9fa0b50f65e5a963e93f7173c4028c30276d80ab97
- createdAt: "2021-01-26T10:44:59Z"
+ containerImage: quay.io/eclipse/che-operator@sha256:dbf5e81187901f9f78a5e55e11439578d6a5ecf3e2b4896741a55a9d2256e0c0
+ createdAt: "2021-01-29T08:26:25Z"
description: A Kube-native development solution that delivers portable and collaborative
developer workspaces.
operatorframework.io/suggested-namespace: eclipse-che
repository: https://github.com/eclipse/che-operator
support: Eclipse Foundation
- name: eclipse-che-preview-kubernetes.v7.25.0
+ name: eclipse-che-preview-kubernetes.v7.25.1
namespace: placeholder
spec:
apiservicedefinitions: {}
@@ -313,13 +313,13 @@
- name: OPERATOR_NAME
value: che-operator
- name: CHE_VERSION
- value: 7.25.0
+ value: 7.25.1
- name: RELATED_IMAGE_che_server
- value: quay.io/eclipse/che-server@sha256:f48b84be09094ec2b6ee5d9fad41b52e89051776110133c6b03c92e94d16d7e9
+ value: quay.io/eclipse/che-server@sha256:3ab3664f942f68ac148df4dfaa4e3817bda6bcddcaa79441c1aadf6c1b1371ce
- name: RELATED_IMAGE_plugin_registry
- value: quay.io/eclipse/che-plugin-registry@sha256:4ca8ef9eaf2f059ed936b6ae83793a98190291ea89cd99d7cb4b9ac05cef648c
+ value: quay.io/eclipse/che-plugin-registry@sha256:2578d451270f27b34f190aa27a1493f72201dfd7837a77ec93519e68f31321d3
- name: RELATED_IMAGE_devfile_registry
- value: quay.io/eclipse/che-devfile-registry@sha256:d7c13ef4ecd77c4520a8a80ba265029e8bee3d69dd2bee8ad5339814aa651230
+ value: quay.io/eclipse/che-devfile-registry@sha256:26e3403cd8a86cefe91870376733062d54ddf0a9640ffefd8004296bfd73e104
- name: RELATED_IMAGE_che_tls_secrets_creation_job
value: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
- name: RELATED_IMAGE_pvc_jobs
@@ -327,7 +327,7 @@
- name: RELATED_IMAGE_postgres
value: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
- name: RELATED_IMAGE_keycloak
- value: quay.io/eclipse/che-keycloak@sha256:a7ce0f5343469b42079f0bd79dd0f4344e9de8fa439d39d94413466b96ba28af
+ value: quay.io/eclipse/che-keycloak@sha256:846350743fc027b277aa70624162a4566987c3520c17c6b192d57745002aee82
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
@@ -370,8 +370,8 @@
value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b
- name: RELATED_IMAGE_che_buildkit_base_plugin_registry_image_GAXDOLRRFVRGCY3CGA3DS___
value: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-machine-exec@sha256:7ec846d087ee1f11bc213e7a7488750611e4048f98cb0d7347b72fe7d087b616
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-machine-exec@sha256:ad6ed4044651639ce47350d11c3cefad408944f137c0e9aed79857a1d83c068a
- name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MFZWG2LJMRXWGLJVGMZTOZRYGA______
value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701
- name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MJQXUZLMFVTDCNLDGVSDM___
@@ -424,53 +424,53 @@
value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d
- name: RELATED_IMAGE_che_sidecar_workspace_data_sync_plugin_registry_image_GAXDALRR
value: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:50c4eea1fbbd0f3fab0fb5347e33dae7fd12bb8f30b3459750dd948ef2a79ac7
- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-theia@sha256:c69b4701fd65f79f80833df18c17ea34fd8876d7bd95f6a808b428e3b6cb47a0
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4a063336fb4bfb323c4533cd71fc2d08be063a089f201e050ad82554d673c914
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-theia@sha256:116e3b195ef94ef1394a0303d85e8c260040a024fa9ff20bf046a6f30aa2043f
- name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______
value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5
- name: RELATED_IMAGE_che__centos__mongodb_36_centos7_devfile_registry_image_NRQXIZLTOQWWCOJRGVSGEN3CMVRWCOBXGE4TQZTDMQ3TQNRQGA4DMOJYHFTGKODBGMZDOYJRME2GMNRVGA4DAMRVMI3DIYLCGI4GMY3DG42DEM3CGI______
value: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2
- name: RELATED_IMAGE_che__centos__mysql_57_centos7_devfile_registry_image_NRQXIZLTOQWWKMBYMVSTIZBUGNRDOMZVGY3DANZWHA2WENRZMJSGKNRTGM2WKMRXMNTDEMDDGAZDAZRTGQ2WENTDGZRTKOJUGAYDCOBTHA4DENZWGQ______
value: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-cpp-rhel7@sha256:61061f00950100441ad86124c5ef1a4a77fe44362372fe5a0925449a1f67b3ba
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-dotnet-2.2@sha256:7abad700feb5ca051d636af0003ca6c1e44c755dbf6a0b000f6fd30a4649ed39
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-dotnet-3.1@sha256:edc458c9acf7260e951f41a52f55b072459b8016958945ca9e3aa79a3ed2abee
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-golang-1.14@sha256:85c9a7702fa62000ee743bda18ae236aa208a97520690a798fb0e522c04f5acd
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-java11-gradle@sha256:fcf158878ccf999ec4d0ec4b94d813c7c0b5d506c023a63b24358ac736ce3849
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-java11-maven@sha256:edf270bd09599790072414bc36eee15ba86cbbafc7643b71e9c4de346eb1d783
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-java8-maven@sha256:9ec9cb95961ef3d022636ea701a21123aeac8ec1a829b4eb4d2ff7feceb5f800
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs10-community@sha256:f52281cbfbb295f5064efd83d2a0fc5f854cbc357e6f74b4da392052742b0156
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:84d1593553b373ff0d976d792cac313dc2aeb2f4d4bf908776752cb799d13da1
- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs12-community@sha256:45b69cab2aff3c646ab6c756438761cae2c2a01d6d59e1ac1f3ec97d8c1c3d4f
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs8-centos@sha256:3b2d38eb73e8e5dc351924d6e7e787394d7157effe28ae0dd402ebe7dd9c06f5
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-php-7@sha256:bc8e69bd17a1a7b6549086c3aaacbc038ad0e523b636b947f326af93991e830b
- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-python-3.7@sha256:a5187abba32d6bef1b23ebe55174ef892f8f59c653ee2a77594b35d37134aec5
- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-python-3.8@sha256:6f289152120b737c0d1776b45419d1f659e81a9bded37985616f73a50e1faa72
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-quarkus@sha256:e0e9c54749aa2fffb4f0012bb79adc0b4d05107c61a2e14c49124d673a0c78cc
- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-rust-1.39@sha256:0e9af0b0818e70327f465b9ad98bdc9e9109935da9ce058013c8d8b827ad298d
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:14ae97821096a4586854df6984269ab20975a4b2e47fb6c8e60325dad403015c
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:fe17864240810045474b181fd793b79e8fb53603b825f7bc635f23962f4318ba
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:7817f03b4c13871ef93e3f44f02c840246682e12a4f31effdf7b9786cfd47699
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-golang-1.14@sha256:cfd5f667ee273bfddeb3ec3bce5c54022a01cf4cfa8cb4654494cedbb49e86d8
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-java11-gradle@sha256:1fcbd983f34fb024ba6da9ac31a65cee1b20472802037c9d518f0f6d31d71085
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-java11-maven@sha256:dffe6149ac5d3b160e14ce3e7bff915f6069b2803590d3ed075d0b18c84a0941
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-java8-maven@sha256:26c211ed1e6445948449d554a837bf64fde11b4a6cca436aec9bc0b0fb5b7cd8
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs10-community@sha256:0902e7227c0da3cb254aa7c8db37582d93a3680cd16d91aa386181573f0ae1ac
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:fdb8864bf47ed8cbeb15cfc7f86f9c4f67c8f1cdb64311f0dbae7eff4a25c7ee
+ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs12-community@sha256:87b708d00ea737c0321ba7966982ce2dc2883704fe92defe96bcf2a65b96c2ea
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:74f68461213c708850d3323133ba86da11f02d4bf72f55a669532d4bd5f95f05
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-php-7@sha256:32735d669e9d3e90192e20ed6a83a6414b8861983857010ed2f7f03ab6eee353
+ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-python-3.7@sha256:03a94ad565397b90c6ecb30f4eaa906fb0aea84578c864c36ba13ebdd4531516
+ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-python-3.8@sha256:88534c569717fe25f4a86d6929003523cb096ca79a718925c61cb84e08d7dace
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-quarkus@sha256:2a49fa6c706235277730ea8b67b3531c5e1a6a09d9e044cafb8f2c6b7bbbd580
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-rust-1.39@sha256:b19cbb7fe9794a7a705dbc11be89020dc086ee0ab9774b0d7e689b2ae4181a5b
- name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___
value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
- image: quay.io/eclipse/che-operator@sha256:22bb6fdfbcd7cca4c0b4db9fa0b50f65e5a963e93f7173c4028c30276d80ab97
+ image: quay.io/eclipse/che-operator@sha256:dbf5e81187901f9f78a5e55e11439578d6a5ecf3e2b4896741a55a9d2256e0c0
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 10
@@ -638,12 +638,12 @@
maturity: stable
provider:
name: Eclipse Foundation
- replaces: eclipse-che-preview-kubernetes.v7.24.2
- version: 7.25.0
+ replaces: eclipse-che-preview-kubernetes.v7.25.0
+ version: 7.25.1
relatedImages:
- - name: che-operator-7.25.0
- image: quay.io/eclipse/che-operator@sha256:22bb6fdfbcd7cca4c0b4db9fa0b50f65e5a963e93f7173c4028c30276d80ab97
- # tag: quay.io/eclipse/che-operator:7.25.0
+ - name: che-operator-7.25.1
+ image: quay.io/eclipse/che-operator@sha256:dbf5e81187901f9f78a5e55e11439578d6a5ecf3e2b4896741a55a9d2256e0c0
+ # tag: quay.io/eclipse/che-operator:7.25.1
- name: traefik-v2.2.8
image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8
# tag: docker.io/traefik:v2.2.8
@@ -653,27 +653,27 @@
- name: che--centos--postgresql-96-centos7-9.6-b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
image: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
# tag: quay.io/eclipse/che--centos--postgresql-96-centos7:9.6-b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
- - name: che-devfile-registry-7.25.0
- image: quay.io/eclipse/che-devfile-registry@sha256:d7c13ef4ecd77c4520a8a80ba265029e8bee3d69dd2bee8ad5339814aa651230
- # tag: quay.io/eclipse/che-devfile-registry:7.25.0
+ - name: che-devfile-registry-7.25.1
+ image: quay.io/eclipse/che-devfile-registry@sha256:26e3403cd8a86cefe91870376733062d54ddf0a9640ffefd8004296bfd73e104
+ # tag: quay.io/eclipse/che-devfile-registry:7.25.1
- name: che-jwtproxy-0.10.0
image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
# tag: quay.io/eclipse/che-jwtproxy:0.10.0
- - name: che-keycloak-7.25.0
- image: quay.io/eclipse/che-keycloak@sha256:a7ce0f5343469b42079f0bd79dd0f4344e9de8fa439d39d94413466b96ba28af
- # tag: quay.io/eclipse/che-keycloak:7.25.0
+ - name: che-keycloak-7.25.1
+ image: quay.io/eclipse/che-keycloak@sha256:846350743fc027b277aa70624162a4566987c3520c17c6b192d57745002aee82
+ # tag: quay.io/eclipse/che-keycloak:7.25.1
- name: che-plugin-artifacts-broker-v3.4.0
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58
# tag: quay.io/eclipse/che-plugin-artifacts-broker:v3.4.0
- name: che-plugin-metadata-broker-v3.4.0
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
# tag: quay.io/eclipse/che-plugin-metadata-broker:v3.4.0
- - name: che-plugin-registry-7.25.0
- image: quay.io/eclipse/che-plugin-registry@sha256:4ca8ef9eaf2f059ed936b6ae83793a98190291ea89cd99d7cb4b9ac05cef648c
- # tag: quay.io/eclipse/che-plugin-registry:7.25.0
- - name: che-server-7.25.0
- image: quay.io/eclipse/che-server@sha256:f48b84be09094ec2b6ee5d9fad41b52e89051776110133c6b03c92e94d16d7e9
- # tag: quay.io/eclipse/che-server:7.25.0
+ - name: che-plugin-registry-7.25.1
+ image: quay.io/eclipse/che-plugin-registry@sha256:2578d451270f27b34f190aa27a1493f72201dfd7837a77ec93519e68f31321d3
+ # tag: quay.io/eclipse/che-plugin-registry:7.25.1
+ - name: che-server-7.25.1
+ image: quay.io/eclipse/che-server@sha256:3ab3664f942f68ac148df4dfaa4e3817bda6bcddcaa79441c1aadf6c1b1371ce
+ # tag: quay.io/eclipse/che-server:7.25.1
- name: che-tls-secret-creator-alpine-d1ed4ad
image: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
# tag: quay.io/eclipse/che-tls-secret-creator:alpine-d1ed4ad
@@ -701,9 +701,9 @@
- name: che-buildkit-base-0.7.1-bacb069
image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
# tag: quay.io/eclipse/che-buildkit-base:0.7.1-bacb069
- - name: che-machine-exec-7.25.0
- image: quay.io/eclipse/che-machine-exec@sha256:7ec846d087ee1f11bc213e7a7488750611e4048f98cb0d7347b72fe7d087b616
- # tag: quay.io/eclipse/che-machine-exec:7.25.0
+ - name: che-machine-exec-7.25.1
+ image: quay.io/eclipse/che-machine-exec@sha256:ad6ed4044651639ce47350d11c3cefad408944f137c0e9aed79857a1d83c068a
+ # tag: quay.io/eclipse/che-machine-exec:7.25.1
- name: che-plugin-sidecar-asciidoc-5337f80
image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701
# tag: quay.io/eclipse/che-plugin-sidecar:asciidoc-5337f80
@@ -782,12 +782,12 @@
- name: che-sidecar-workspace-data-sync-0.0.1
image: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
# tag: quay.io/eclipse/che-sidecar-workspace-data-sync:0.0.1
- - name: che-theia-endpoint-runtime-binary-7.25.0
- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:50c4eea1fbbd0f3fab0fb5347e33dae7fd12bb8f30b3459750dd948ef2a79ac7
- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.25.0
- - name: che-theia-7.25.0
- image: quay.io/eclipse/che-theia@sha256:c69b4701fd65f79f80833df18c17ea34fd8876d7bd95f6a808b428e3b6cb47a0
- # tag: quay.io/eclipse/che-theia:7.25.0
+ - name: che-theia-endpoint-runtime-binary-7.25.1
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4a063336fb4bfb323c4533cd71fc2d08be063a089f201e050ad82554d673c914
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.25.1
+ - name: che-theia-7.25.1
+ image: quay.io/eclipse/che-theia@sha256:116e3b195ef94ef1394a0303d85e8c260040a024fa9ff20bf046a6f30aa2043f
+ # tag: quay.io/eclipse/che-theia:7.25.1
- name: mta-vscode-extension-latest
image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5
# tag: quay.io/windupeng/mta-vscode-extension:latest
@@ -797,54 +797,54 @@
- name: che--centos--mysql-57-centos7-latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
image: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
# tag: quay.io/eclipse/che--centos--mysql-57-centos7:latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
- - name: che-cpp-rhel7-7.25.0
- image: quay.io/eclipse/che-cpp-rhel7@sha256:61061f00950100441ad86124c5ef1a4a77fe44362372fe5a0925449a1f67b3ba
- # tag: quay.io/eclipse/che-cpp-rhel7:7.25.0
- - name: che-dotnet-2.2-7.25.0
- image: quay.io/eclipse/che-dotnet-2.2@sha256:7abad700feb5ca051d636af0003ca6c1e44c755dbf6a0b000f6fd30a4649ed39
- # tag: quay.io/eclipse/che-dotnet-2.2:7.25.0
- - name: che-dotnet-3.1-7.25.0
- image: quay.io/eclipse/che-dotnet-3.1@sha256:edc458c9acf7260e951f41a52f55b072459b8016958945ca9e3aa79a3ed2abee
- # tag: quay.io/eclipse/che-dotnet-3.1:7.25.0
- - name: che-golang-1.14-7.25.0
- image: quay.io/eclipse/che-golang-1.14@sha256:85c9a7702fa62000ee743bda18ae236aa208a97520690a798fb0e522c04f5acd
- # tag: quay.io/eclipse/che-golang-1.14:7.25.0
- - name: che-java11-gradle-7.25.0
- image: quay.io/eclipse/che-java11-gradle@sha256:fcf158878ccf999ec4d0ec4b94d813c7c0b5d506c023a63b24358ac736ce3849
- # tag: quay.io/eclipse/che-java11-gradle:7.25.0
- - name: che-java11-maven-7.25.0
- image: quay.io/eclipse/che-java11-maven@sha256:edf270bd09599790072414bc36eee15ba86cbbafc7643b71e9c4de346eb1d783
- # tag: quay.io/eclipse/che-java11-maven:7.25.0
- - name: che-java8-maven-7.25.0
- image: quay.io/eclipse/che-java8-maven@sha256:9ec9cb95961ef3d022636ea701a21123aeac8ec1a829b4eb4d2ff7feceb5f800
- # tag: quay.io/eclipse/che-java8-maven:7.25.0
- - name: che-nodejs10-community-7.25.0
- image: quay.io/eclipse/che-nodejs10-community@sha256:f52281cbfbb295f5064efd83d2a0fc5f854cbc357e6f74b4da392052742b0156
- # tag: quay.io/eclipse/che-nodejs10-community:7.25.0
- - name: che-nodejs10-ubi-7.25.0
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:84d1593553b373ff0d976d792cac313dc2aeb2f4d4bf908776752cb799d13da1
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.25.0
- - name: che-nodejs12-community-7.25.0
- image: quay.io/eclipse/che-nodejs12-community@sha256:45b69cab2aff3c646ab6c756438761cae2c2a01d6d59e1ac1f3ec97d8c1c3d4f
- # tag: quay.io/eclipse/che-nodejs12-community:7.25.0
- - name: che-nodejs8-centos-7.25.0
- image: quay.io/eclipse/che-nodejs8-centos@sha256:3b2d38eb73e8e5dc351924d6e7e787394d7157effe28ae0dd402ebe7dd9c06f5
- # tag: quay.io/eclipse/che-nodejs8-centos:7.25.0
- - name: che-php-7-7.25.0
- image: quay.io/eclipse/che-php-7@sha256:bc8e69bd17a1a7b6549086c3aaacbc038ad0e523b636b947f326af93991e830b
- # tag: quay.io/eclipse/che-php-7:7.25.0
- - name: che-python-3.7-7.25.0
- image: quay.io/eclipse/che-python-3.7@sha256:a5187abba32d6bef1b23ebe55174ef892f8f59c653ee2a77594b35d37134aec5
- # tag: quay.io/eclipse/che-python-3.7:7.25.0
- - name: che-python-3.8-7.25.0
- image: quay.io/eclipse/che-python-3.8@sha256:6f289152120b737c0d1776b45419d1f659e81a9bded37985616f73a50e1faa72
- # tag: quay.io/eclipse/che-python-3.8:7.25.0
- - name: che-quarkus-7.25.0
- image: quay.io/eclipse/che-quarkus@sha256:e0e9c54749aa2fffb4f0012bb79adc0b4d05107c61a2e14c49124d673a0c78cc
- # tag: quay.io/eclipse/che-quarkus:7.25.0
- - name: che-rust-1.39-7.25.0
- image: quay.io/eclipse/che-rust-1.39@sha256:0e9af0b0818e70327f465b9ad98bdc9e9109935da9ce058013c8d8b827ad298d
- # tag: quay.io/eclipse/che-rust-1.39:7.25.0
+ - name: che-cpp-rhel7-7.25.1
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:14ae97821096a4586854df6984269ab20975a4b2e47fb6c8e60325dad403015c
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.25.1
+ - name: che-dotnet-2.2-7.25.1
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:fe17864240810045474b181fd793b79e8fb53603b825f7bc635f23962f4318ba
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.25.1
+ - name: che-dotnet-3.1-7.25.1
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:7817f03b4c13871ef93e3f44f02c840246682e12a4f31effdf7b9786cfd47699
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.25.1
+ - name: che-golang-1.14-7.25.1
+ image: quay.io/eclipse/che-golang-1.14@sha256:cfd5f667ee273bfddeb3ec3bce5c54022a01cf4cfa8cb4654494cedbb49e86d8
+ # tag: quay.io/eclipse/che-golang-1.14:7.25.1
+ - name: che-java11-gradle-7.25.1
+ image: quay.io/eclipse/che-java11-gradle@sha256:1fcbd983f34fb024ba6da9ac31a65cee1b20472802037c9d518f0f6d31d71085
+ # tag: quay.io/eclipse/che-java11-gradle:7.25.1
+ - name: che-java11-maven-7.25.1
+ image: quay.io/eclipse/che-java11-maven@sha256:dffe6149ac5d3b160e14ce3e7bff915f6069b2803590d3ed075d0b18c84a0941
+ # tag: quay.io/eclipse/che-java11-maven:7.25.1
+ - name: che-java8-maven-7.25.1
+ image: quay.io/eclipse/che-java8-maven@sha256:26c211ed1e6445948449d554a837bf64fde11b4a6cca436aec9bc0b0fb5b7cd8
+ # tag: quay.io/eclipse/che-java8-maven:7.25.1
+ - name: che-nodejs10-community-7.25.1
+ image: quay.io/eclipse/che-nodejs10-community@sha256:0902e7227c0da3cb254aa7c8db37582d93a3680cd16d91aa386181573f0ae1ac
+ # tag: quay.io/eclipse/che-nodejs10-community:7.25.1
+ - name: che-nodejs10-ubi-7.25.1
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:fdb8864bf47ed8cbeb15cfc7f86f9c4f67c8f1cdb64311f0dbae7eff4a25c7ee
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.25.1
+ - name: che-nodejs12-community-7.25.1
+ image: quay.io/eclipse/che-nodejs12-community@sha256:87b708d00ea737c0321ba7966982ce2dc2883704fe92defe96bcf2a65b96c2ea
+ # tag: quay.io/eclipse/che-nodejs12-community:7.25.1
+ - name: che-nodejs8-centos-7.25.1
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:74f68461213c708850d3323133ba86da11f02d4bf72f55a669532d4bd5f95f05
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.25.1
+ - name: che-php-7-7.25.1
+ image: quay.io/eclipse/che-php-7@sha256:32735d669e9d3e90192e20ed6a83a6414b8861983857010ed2f7f03ab6eee353
+ # tag: quay.io/eclipse/che-php-7:7.25.1
+ - name: che-python-3.7-7.25.1
+ image: quay.io/eclipse/che-python-3.7@sha256:03a94ad565397b90c6ecb30f4eaa906fb0aea84578c864c36ba13ebdd4531516
+ # tag: quay.io/eclipse/che-python-3.7:7.25.1
+ - name: che-python-3.8-7.25.1
+ image: quay.io/eclipse/che-python-3.8@sha256:88534c569717fe25f4a86d6929003523cb096ca79a718925c61cb84e08d7dace
+ # tag: quay.io/eclipse/che-python-3.8:7.25.1
+ - name: che-quarkus-7.25.1
+ image: quay.io/eclipse/che-quarkus@sha256:2a49fa6c706235277730ea8b67b3531c5e1a6a09d9e044cafb8f2c6b7bbbd580
+ # tag: quay.io/eclipse/che-quarkus:7.25.1
+ - name: che-rust-1.39-7.25.1
+ image: quay.io/eclipse/che-rust-1.39@sha256:b19cbb7fe9794a7a705dbc11be89020dc086ee0ab9774b0d7e689b2ae4181a5b
+ # tag: quay.io/eclipse/che-rust-1.39:7.25.1
- name: ubi8-minimal-8.3
image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
# tag: registry.access.redhat.com/ubi8-minimal:8.3

View File

@ -1,5 +1,5 @@
channels:
- currentCSV: eclipse-che-preview-kubernetes.v7.25.0
- currentCSV: eclipse-che-preview-kubernetes.v7.25.1
name: stable
defaultChannel: stable
packageName: eclipse-che-preview-kubernetes

View File

@ -0,0 +1,827 @@
#
# Copyright (c) 2012-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: checlusters.org.eclipse.che
spec:
group: org.eclipse.che
names:
kind: CheCluster
listKind: CheClusterList
plural: checlusters
singular: checluster
preserveUnknownFields: false
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
description: The `CheCluster` custom resource allows defining and managing a
Che server installation
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: Desired configuration of the Che installation. Based on these
settings, the operator automatically creates and maintains several config
maps that will contain the appropriate environment variables the various
components of the Che installation. These generated config maps should
NOT be updated manually.
properties:
auth:
description: Configuration settings related to the Authentication used
by the Che installation.
properties:
externalIdentityProvider:
description: 'Instructs the operator on whether or not to deploy
a dedicated Identity Provider (Keycloak or RH SSO instance). By
default a dedicated Identity Provider server is deployed as part
of the Che installation. But if `externalIdentityProvider` is
`true`, then no dedicated identity provider will be deployed by
the operator and you might need to provide details about the external
identity provider you want to use. See also all the other fields
starting with: `identityProvider`.'
type: boolean
identityProviderAdminUserName:
description: Overrides the name of the Identity Provider admin user.
Defaults to `admin`.
type: string
identityProviderClientId:
description: Name of a Identity provider (Keycloak / RH SSO) `client-id`
that should be used for Che. This is useful to override it ONLY
if you use an external Identity Provider (see the `externalIdentityProvider`
field). If omitted or left blank, it will be set to the value
of the `flavour` field suffixed with `-public`.
type: string
identityProviderContainerResources:
description: Identity provider container custom settings
properties:
limits:
description: Limits describes the maximum amount of compute
resources allowed.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
request:
description: Requests describes the minimum amount of compute
resources required.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
type: object
identityProviderImage:
description: Overrides the container image used in the Identity
Provider (Keycloak / RH SSO) deployment. This includes the image
tag. Omit it or leave it empty to use the defaut container image
provided by the operator.
type: string
identityProviderImagePullPolicy:
description: Overrides the image pull policy used in the Identity
Provider (Keycloak / RH SSO) deployment. Default value is `Always`
for `nightly` or `latest` images, and `IfNotPresent` in other
cases.
type: string
identityProviderIngress:
description: Ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
identityProviderPassword:
description: Overrides the password of Keycloak admin user. This
is useful to override it ONLY if you use an external Identity
Provider (see the `externalIdentityProvider` field). If omitted
or left blank, it will be set to an auto-generated password.
type: string
identityProviderPostgresPassword:
description: Password for The Identity Provider (Keycloak / RH SSO)
to connect to the database. This is useful to override it ONLY
if you use an external Identity Provider (see the `externalIdentityProvider`
field). If omitted or left blank, it will be set to an auto-generated
password.
type: string
identityProviderPostgresSecret:
description: 'The secret that contains `password` for The Identity
Provider (Keycloak / RH SSO) to connect to the database. If the
secret is defined then `identityProviderPostgresPassword` will
be ignored. If the value is omitted or left blank then there are
two scenarios: 1. `identityProviderPostgresPassword` is defined,
then it will be used to connect to the database. 2. `identityProviderPostgresPassword`
is not defined, then a new secret with the name `che-identity-postgres-secret`
will be created with an auto-generated value for `password`.'
type: string
identityProviderRealm:
description: Name of a Identity provider (Keycloak / RH SSO) realm
that should be used for Che. This is useful to override it ONLY
if you use an external Identity Provider (see the `externalIdentityProvider`
field). If omitted or left blank, it will be set to the value
of the `flavour` field.
type: string
identityProviderRoute:
description: Route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
identityProviderSecret:
description: 'The secret that contains `user` and `password` for
Identity Provider. If the secret is defined then `identityProviderAdminUserName`
and `identityProviderPassword` are ignored. If the value is omitted
or left blank then there are two scenarios: 1. `identityProviderAdminUserName`
and `identityProviderPassword` are defined, then they will be
used. 2. `identityProviderAdminUserName` or `identityProviderPassword`
are not defined, then a new secret with the name `che-identity-secret`
will be created with default value `admin` for `user` and with
an auto-generated value for `password`.'
type: string
identityProviderURL:
description: Public URL of the Identity Provider server (Keycloak
/ RH SSO server). You should set it ONLY if you use an external
Identity Provider (see the `externalIdentityProvider` field).
By default this will be automatically calculated and set by the
operator.
type: string
oAuthClientName:
description: Name of the OpenShift `OAuthClient` resource used to
setup identity federation on the OpenShift side. Auto-generated
if left blank. See also the `OpenShiftoAuth` field.
type: string
oAuthSecret:
description: Name of the secret set in the OpenShift `OAuthClient`
resource used to setup identity federation on the OpenShift side.
Auto-generated if left blank. See also the `OAuthClientName` field.
type: string
openShiftoAuth:
description: 'Enables the integration of the identity provider (Keycloak
/ RHSSO) with OpenShift OAuth. Empty value on the OpenShift platform
by default. If user changes this empty value to true/false, then
che-operator respect this value. Otherwise che-operator tries
to auto detect if Openshift oAuth can be enabled and change empty
value, correspondly to auto-detection result. This property allows
users to directly login with their Openshift user through the
Openshift login, and have their workspaces created under personal
OpenShift namespaces. WARNING: the `kubeadmin` user is NOT supported,
and logging through it will NOT allow accessing the Che Dashboard.'
type: boolean
updateAdminPassword:
description: Forces the default `admin` Che user to update password
on first login. Defaults to `false`.
type: boolean
type: object
database:
description: Configuration settings related to the database used by
the Che installation.
properties:
chePostgresContainerResources:
description: Postgres container custom settings
properties:
limits:
description: Limits describes the maximum amount of compute
resources allowed.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
request:
description: Requests describes the minimum amount of compute
resources required.
properties:
cpu:
description: CPU, in cores. (500m = .5 cores)
type: string
memory:
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
* 1024 * 1024)
type: string
type: object
type: object
chePostgresDb:
description: Postgres database name that the Che server uses to
connect to the DB. Defaults to `dbche`.
type: string
chePostgresHostName:
description: Postgres Database hostname that the Che server uses
to connect to. Defaults to postgres. This value should be overridden
ONLY when using an external database (see field `externalDb`).
In the default case it will be automatically set by the operator.
type: string
chePostgresPassword:
description: Postgres password that the Che server should use to
connect to the DB. If omitted or left blank, it will be set to
an auto-generated value.
type: string
chePostgresPort:
description: Postgres Database port that the Che server uses to
connect to. Defaults to 5432. This value should be overridden
ONLY when using an external database (see field `externalDb`).
In the default case it will be automatically set by the operator.
type: string
chePostgresSecret:
description: 'The secret that contains Postgres `user` and `password`
that the Che server should use to connect to the DB. If the secret
is defined then `chePostgresUser` and `chePostgresPassword` are
ignored. If the value is omitted or left blank then there are
two scenarios: 1. `chePostgresUser` and `chePostgresPassword`
are defined, then they will be used to connect to the DB. 2. `chePostgresUser`
or `chePostgresPassword` are not defined, then a new secret with
the name `che-postgres-secret` will be created with default value
of `pgche` for `user` and with an auto-generated value for `password`.'
type: string
chePostgresUser:
description: Postgres user that the Che server should use to connect
to the DB. Defaults to `pgche`.
type: string
externalDb:
description: 'Instructs the operator on whether or not to deploy
a dedicated database. By default a dedicated Postgres database
is deployed as part of the Che installation. But if `externalDb`
is `true`, then no dedicated database will be deployed by the
operator and you might need to provide connection details to the
external DB you want to use. See also all the fields starting
with: `chePostgres`.'
type: boolean
postgresImage:
description: Overrides the container image used in the Postgres
database deployment. This includes the image tag. Omit it or leave
it empty to use the defaut container image provided by the operator.
type: string
postgresImagePullPolicy:
description: Overrides the image pull policy used in the Postgres
database deployment. Default value is `Always` for `nightly` or
`latest` images, and `IfNotPresent` in other cases.
type: string
type: object
imagePuller:
description: Kubernetes Image Puller configuration
properties:
enable:
description: "Install and configure the Community Supported Kubernetes\
\ Image Puller Operator. If true and no spec is provided, it will\
\ create a default KubernetesImagePuller object to be managed\
\ by the Operator. If false, the KubernetesImagePuller object\
\ will be deleted, and the operator will be uninstalled, regardless\
\ of whether or not a spec is provided. \n Please note that while\
\ this operator and its behavior is community-supported, its payload\
\ may be commercially-supported if you use it for pulling commercially-supported\
\ images."
type: boolean
spec:
description: A KubernetesImagePullerSpec to configure the image
puller in the CheCluster
properties:
cachingCPULimit:
type: string
cachingCPURequest:
type: string
cachingIntervalHours:
type: string
cachingMemoryLimit:
type: string
cachingMemoryRequest:
type: string
configMapName:
type: string
daemonsetName:
type: string
deploymentName:
type: string
images:
type: string
nodeSelector:
type: string
type: object
type: object
k8s:
description: Configuration settings specific to Che installations made
on upstream Kubernetes.
properties:
ingressClass:
description: 'Ingress class that will define the which controler
will manage ingresses. Defaults to `nginx`. NB: This drives the
`is kubernetes.io/ingress.class` annotation on Che-related ingresses.'
type: string
ingressDomain:
description: 'Global ingress domain for a K8S cluster. This MUST
be explicitly specified: there are no defaults.'
type: string
ingressStrategy:
description: Strategy for ingress creation. This can be `multi-host`
(host is explicitly provided in ingress), `single-host` (host
is provided, path-based rules) and `default-host.*`(no host is
provided, path-based rules). Defaults to `"multi-host` Deprecated
in favor of "serverExposureStrategy" in the "server" section,
which defines this regardless of the cluster type. If both are
defined, `serverExposureStrategy` takes precedence.
type: string
securityContextFsGroup:
description: FSGroup the Che pod and Workspace pods containers should
run in. Defaults to `1724`.
type: string
securityContextRunAsUser:
description: ID of the user the Che pod and Workspace pods containers
should run as. Default to `1724`.
type: string
singleHostExposureType:
description: When the serverExposureStrategy is set to "single-host",
the way the server, registries and workspaces are exposed is further
configured by this property. The possible values are "native"
(which means that the server and workspaces are exposed using
ingresses on K8s) or "gateway" where the server and workspaces
are exposed using a custom gateway based on Traefik. All the endpoints
whether backed by the ingress or gateway "route" always point
to the subpaths on the same domain. Defaults to "native".
type: string
tlsSecretName:
description: Name of a secret that is used to set ingress TLS termination
if TLS is enabled. If the specified secret does not exist, a self-signed
certificate will be created. If the value is empty or omitted,
the default ingress controller certificate will be used. See also
the `tlsSupport` field. Note, when switching to the default ingress
controller certificate, `self-signed-certificate` secret should
be deleted manually.
type: string
type: object
metrics:
description: Configuration settings related to the metrics collection
used by the Che installation.
properties:
enable:
description: Enables `metrics` Che server endpoint. Default to `true`.
type: boolean
type: object
server:
description: General configuration settings related to the Che server
and the plugin and devfile registries
properties:
airGapContainerRegistryHostname:
description: Optional hostname (or url) to an alternate container
registry to pull images from. This value overrides the container
registry hostname defined in all the default container images
involved in a Che deployment. This is particularly useful to install
Che in an air-gapped environment.
type: string
airGapContainerRegistryOrganization:
description: Optional repository name of an alternate container
registry to pull images from. This value overrides the container
registry organization defined in all the default container images
involved in a Che deployment. This is particularly useful to install
Che in an air-gapped environment.
type: string
allowUserDefinedWorkspaceNamespaces:
description: Defines if a user is able to specify Kubernetes namespace
(or OpenShift project) different from the default. It's NOT RECOMMENDED
to configured true without OAuth configured. This property is
also used by the OpenShift infra.
type: boolean
cheClusterRoles:
description: Comma-separated list of ClusterRoles that will be assigned
to che ServiceAccount. Be aware that che-operator has to already
have all permissions in these ClusterRoles to be able to grant
them.
type: string
cheDebug:
description: Enables the debug mode for Che server. Defaults to
`false`.
type: string
cheFlavor:
description: Flavor of the installation. This is either `che` for
upstream Che installations, or `codeready` for CodeReady Workspaces
installation. In most cases the default value should not be overridden.
type: string
cheHost:
description: Public hostname of the installed Che server. If value
is omitted then it will be automatically set by the operator.
(see the `cheHostTLSSecret` field).
type: string
cheHostTLSSecret:
description: Name of a secret containing certificates to secure
ingress/route for the custom hostname of the installed Che server.
(see the `cheHost` field).
type: string
cheImage:
description: Overrides the container image used in Che deployment.
This does NOT include the container image tag. Omit it or leave
it empty to use the defaut container image provided by the operator.
type: string
cheImagePullPolicy:
description: Overrides the image pull policy used in Che deployment.
Default value is `Always` for `nightly` or `latest` images, and
`IfNotPresent` in other cases.
type: string
cheImageTag:
description: Overrides the tag of the container image used in Che
deployment. Omit it or leave it empty to use the defaut image
tag provided by the operator.
type: string
cheLogLevel:
description: 'Log level for the Che server: `INFO` or `DEBUG`. Defaults
to `INFO`.'
type: string
cheServerIngress:
description: Che server ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
cheServerRoute:
description: Che server route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
cheWorkspaceClusterRole:
description: Custom cluster role bound to the user for the Che workspaces.
The default roles are used if this is omitted or left blank.
type: string
customCheProperties:
additionalProperties:
type: string
description: Map of additional environment variables that will be
applied in the generated `che` config map to be used by the Che
server, in addition to the values already generated from other
fields of the `CheCluster` custom resource (CR). If `customCheProperties`
contains a property that would be normally generated in `che`
config map from other CR fields, then the value defined in the
`customCheProperties` will be used instead.
type: object
devfileRegistryCpuLimit:
description: Overrides the cpu limit used in the Devfile registry
deployment. In cores. (500m = .5 cores). Default to 500m.
type: string
devfileRegistryCpuRequest:
description: Overrides the cpu request used in the Devfile registry
deployment. In cores. (500m = .5 cores). Default to 100m.
type: string
devfileRegistryImage:
description: Overrides the container image used in the Devfile registry
deployment. This includes the image tag. Omit it or leave it empty
to use the defaut container image provided by the operator.
type: string
devfileRegistryIngress:
description: Devfile registry ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
devfileRegistryMemoryLimit:
description: Overrides the memory limit used in the Devfile registry
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 256Mi.
type: string
devfileRegistryMemoryRequest:
description: Overrides the memory request used in the Devfile registry
deployment In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 32Mi.
type: string
devfileRegistryPullPolicy:
description: Overrides the image pull policy used in the Devfile
registry deployment. Default value is `Always` for `nightly` or
`latest` images, and `IfNotPresent` in other cases.
type: string
devfileRegistryRoute:
description: Devfile registry route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
devfileRegistryUrl:
description: Public URL of the Devfile registry, that serves sample,
ready-to-use devfiles. You should set it ONLY if you use an external
devfile registry (see the `externalDevfileRegistry` field). By
default this will be automatically calculated by the operator.
type: string
externalDevfileRegistry:
description: Instructs the operator on whether or not to deploy
a dedicated Devfile registry server. By default a dedicated devfile
registry server is started. But if `externalDevfileRegistry` is
`true`, then no such dedicated server will be started by the operator
and you will have to manually set the `devfileRegistryUrl` field
type: boolean
externalPluginRegistry:
description: Instructs the operator on whether or not to deploy
a dedicated Plugin registry server. By default a dedicated plugin
registry server is started. But if `externalPluginRegistry` is
`true`, then no such dedicated server will be started by the operator
and you will have to manually set the `pluginRegistryUrl` field.
type: boolean
gitSelfSignedCert:
description: If enabled, then the certificate from `che-git-self-signed-cert`
config map will be propagated to the Che components and provide
particular configuration for Git.
type: boolean
nonProxyHosts:
description: 'List of hosts that should not use the configured proxy.
So specify wild card domain use the following form `.<DOMAIN>`
and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32`
Only use when configuring a proxy is required. Operator respects
OpenShift cluster wide proxy configuration and no additional configuration
is required, but defining `nonProxyHosts` in a custom resource
leads to merging non proxy hosts lists from the cluster proxy
configuration and ones defined in the custom resources. (see the
doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html)
(see also the `proxyURL` fields).'
type: string
pluginRegistryCpuLimit:
description: Overrides the cpu limit used in the Plugin registry
deployment. In cores. (500m = .5 cores). Default to 500m.
type: string
pluginRegistryCpuRequest:
description: Overrides the cpu request used in the Plugin registry
deployment. In cores. (500m = .5 cores). Default to 100m.
type: string
pluginRegistryImage:
description: Overrides the container image used in the Plugin registry
deployment. This includes the image tag. Omit it or leave it empty
to use the default container image provided by the operator.
type: string
pluginRegistryIngress:
description: Plugin registry ingress custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
pluginRegistryMemoryLimit:
description: Overrides the memory limit used in the Plugin registry
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 256Mi.
type: string
pluginRegistryMemoryRequest:
description: Overrides the memory request used in the Plugin registry
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 32Mi.
type: string
pluginRegistryPullPolicy:
description: Overrides the image pull policy used in the Plugin
registry deployment. Default value is `Always` for `nightly` or
`latest` images, and `IfNotPresent` in other cases.
type: string
pluginRegistryRoute:
description: Plugin registry route custom settings
properties:
labels:
description: Comma separated list of labels that can be used
to organize and categorize (scope and select) objects.
type: string
type: object
pluginRegistryUrl:
description: Public URL of the Plugin registry, that serves sample
ready-to-use devfiles. You should set it ONLY if you use an external
devfile registry (see the `externalPluginRegistry` field). By
default this will be automatically calculated by the operator.
type: string
proxyPassword:
description: Password of the proxy server Only use when proxy configuration
is required (see also the `proxyURL`, `proxyUser` and `proxySecret`
fields).
type: string
proxyPort:
description: Port of the proxy server. Only use when configuring
a proxy is required. (see also the `proxyURL` and `nonProxyHosts`
fields).
type: string
proxySecret:
description: The secret that contains `user` and `password` for
a proxy server. If the secret is defined then `proxyUser` and
`proxyPassword` are ignored
type: string
proxyURL:
description: URL (protocol+hostname) of the proxy server. This drives
the appropriate changes in the `JAVA_OPTS` and `https(s)_proxy`
variables in the Che server and workspaces containers. Only use
when configuring a proxy is required. Operator respects OpenShift
cluster wide proxy configuration and no additional configuration
is required, but defining `proxyUrl` in a custom resource leads
to overrides the cluster proxy configuration with fields `proxyUrl`,
`proxyPort`, `proxyUser` and `proxyPassword` from the custom resource.
(see the doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html)
(see also the `proxyPort` and `nonProxyHosts` fields).
type: string
proxyUser:
description: User name of the proxy server. Only use when configuring
a proxy is required (see also the `proxyURL`, `proxyPassword`
and `proxySecret` fields).
type: string
selfSignedCert:
description: Deprecated. The value of this flag is ignored. Che
operator will automatically detect if router certificate is self-signed.
If so it will be propagated to Che server and some other components.
type: boolean
serverCpuLimit:
description: Overrides the cpu limit used in the Che server deployment
In cores. (500m = .5 cores). Default to 1.
type: string
serverCpuRequest:
description: Overrides the cpu request used in the Che server deployment
In cores. (500m = .5 cores). Default to 100m.
type: string
serverExposureStrategy:
description: Sets the server and workspaces exposure type. Possible
values are "multi-host", "single-host", "default-host". Defaults
to "multi-host" which creates a separate ingress (or route on
OpenShift) for every required endpoint. "single-host" makes Che
exposed on a single hostname with workspaces exposed on subpaths.
Please read the docs to learn about the limitations of this approach.
Also consult the `singleHostExposureType` property to further
configure how the operator and Che server make that happen on
Kubernetes. "default-host" exposes che server on the host of the
cluster. Please read the docs to learn about the limitations of
this approach.
type: string
serverMemoryLimit:
description: Overrides the memory limit used in the Che server deployment.
In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). Defaults
to 1Gi.
type: string
serverMemoryRequest:
description: Overrides the memory request used in the Che server
deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024).
Defaults to 512Mi.
type: string
serverTrustStoreConfigMapName:
description: Name of the config-map with public certificates to
add to Java trust store of the Che server. This is usually required
when adding the OpenShift OAuth provider which has https endpoint
signed with self-signed cert. So, Che server must be aware of
its CA cert to be able to request it. This is disabled by default.
type: string
singleHostGatewayConfigMapLabels:
additionalProperties:
type: string
description: The labels that need to be present (and are put) on
the configmaps representing the gateway configuration.
type: object
singleHostGatewayConfigSidecarImage:
description: The image used for the gateway sidecar that provides
configuration to the gateway. Omit it or leave it empty to use
the defaut container image provided by the operator.
type: string
singleHostGatewayImage:
description: The image used for the gateway in the single host mode.
Omit it or leave it empty to use the defaut container image provided
by the operator.
type: string
tlsSupport:
description: Deprecated. Instructs the operator to deploy Che in
TLS mode. This is enabled by default. Disabling TLS may cause
malfunction of some Che components.
type: boolean
useInternalClusterSVCNames:
description: Use internal cluster svc names to communicate between
components to speed up the traffic and avoid proxy issues. The
default value is `true`.
type: boolean
workspaceNamespaceDefault:
description: 'Defines Kubernetes default namespace in which user''s
workspaces are created if user does not override it. It''s possible
to use <username>, <userid> and <workspaceid> placeholders (e.g.:
che-workspace-<username>). In that case, new namespace will be
created for each user (or workspace). Is used by OpenShift infra
as well to specify Project'
type: string
type: object
storage:
description: Configuration settings related to the persistent storage
used by the Che installation.
properties:
postgresPVCStorageClassName:
description: Storage class for the Persistent Volume Claim dedicated
to the Postgres database. If omitted or left blank, default storage
class is used.
type: string
preCreateSubPaths:
description: Instructs the Che server to launch a special pod to
pre-create a subpath in the Persistent Volumes. Defaults to `false`,
however it might need to enable it according to the configuration
of your K8S cluster.
type: boolean
pvcClaimSize:
description: Size of the persistent volume claim for workspaces.
Defaults to `1Gi`
type: string
pvcJobsImage:
description: Overrides the container image used to create sub-paths
in the Persistent Volumes. This includes the image tag. Omit it
or leave it empty to use the defaut container image provided by
the operator. See also the `preCreateSubPaths` field.
type: string
pvcStrategy:
description: Persistent volume claim strategy for the Che server.
This Can be:`common` (all workspaces PVCs in one volume), `per-workspace`
(one PVC per workspace for all declared volumes) and `unique`
(one PVC per declared volume). Defaults to `common`.
type: string
workspacePVCStorageClassName:
description: Storage class for the Persistent Volume Claims dedicated
to the Che workspaces. If omitted or left blank, default storage
class is used.
type: string
type: object
type: object
status:
description: CheClusterStatus defines the observed state of Che installation
properties:
cheClusterRunning:
description: Status of a Che installation. Can be `Available`, `Unavailable`,
or `Available, Rolling Update in Progress`
type: string
cheURL:
description: Public URL to the Che server
type: string
cheVersion:
description: Current installed Che version
type: string
dbProvisioned:
description: Indicates if or not a Postgres instance has been correctly
provisioned
type: boolean
devfileRegistryURL:
description: Public URL to the Devfile registry
type: string
gitHubOAuthProvisioned:
description: Indicates whether an Identity Provider instance (Keycloak
/ RH SSO) has been configured to integrate with the GitHub OAuth.
type: boolean
helpLink:
description: A URL that can point to some URL where to find help related
to the current Operator status.
type: string
keycloakProvisioned:
description: Indicates whether an Identity Provider instance (Keycloak
/ RH SSO) has been provisioned with realm, client and user
type: boolean
keycloakURL:
description: Public URL to the Identity Provider server (Keycloak /
RH SSO).
type: string
message:
description: A human readable message indicating details about why the
pod is in this condition.
type: string
openShiftoAuthProvisioned:
description: Indicates whether an Identity Provider instance (Keycloak
/ RH SSO) has been configured to integrate with the OpenShift OAuth.
type: boolean
pluginRegistryURL:
description: Public URL to the Plugin registry
type: string
reason:
description: A brief CamelCase message indicating details about why
the pod is in this state.
type: string
type: object
type: object
version: v1
versions:
- name: v1
served: true
storage: true

View File

@ -0,0 +1,492 @@
--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.25.0/eclipse-che-preview-openshift.v7.25.0.clusterserviceversion.yaml 2021-01-29 07:41:24.324094137 +0000
+++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.25.1/eclipse-che-preview-openshift.v7.25.1.clusterserviceversion.yaml 2021-01-29 08:28:21.521288986 +0000
@@ -74,14 +74,14 @@
capabilities: Seamless Upgrades
categories: Developer Tools, OpenShift Optional
certified: "false"
- containerImage: quay.io/eclipse/che-operator@sha256:22bb6fdfbcd7cca4c0b4db9fa0b50f65e5a963e93f7173c4028c30276d80ab97
- createdAt: "2021-01-26T10:46:10Z"
+ containerImage: quay.io/eclipse/che-operator@sha256:dbf5e81187901f9f78a5e55e11439578d6a5ecf3e2b4896741a55a9d2256e0c0
+ createdAt: "2021-01-29T08:27:32Z"
description: A Kube-native development solution that delivers portable and collaborative
developer workspaces in OpenShift.
operatorframework.io/suggested-namespace: eclipse-che
repository: https://github.com/eclipse/che-operator
support: Eclipse Foundation
- name: eclipse-che-preview-openshift.v7.25.0
+ name: eclipse-che-preview-openshift.v7.25.1
namespace: placeholder
spec:
apiservicedefinitions: {}
@@ -328,19 +328,19 @@
- name: OPERATOR_NAME
value: che-operator
- name: CHE_VERSION
- value: 7.25.0
+ value: 7.25.1
- name: RELATED_IMAGE_che_server
- value: quay.io/eclipse/che-server@sha256:f48b84be09094ec2b6ee5d9fad41b52e89051776110133c6b03c92e94d16d7e9
+ value: quay.io/eclipse/che-server@sha256:3ab3664f942f68ac148df4dfaa4e3817bda6bcddcaa79441c1aadf6c1b1371ce
- name: RELATED_IMAGE_plugin_registry
- value: quay.io/eclipse/che-plugin-registry@sha256:4ca8ef9eaf2f059ed936b6ae83793a98190291ea89cd99d7cb4b9ac05cef648c
+ value: quay.io/eclipse/che-plugin-registry@sha256:2578d451270f27b34f190aa27a1493f72201dfd7837a77ec93519e68f31321d3
- name: RELATED_IMAGE_devfile_registry
- value: quay.io/eclipse/che-devfile-registry@sha256:d7c13ef4ecd77c4520a8a80ba265029e8bee3d69dd2bee8ad5339814aa651230
+ value: quay.io/eclipse/che-devfile-registry@sha256:26e3403cd8a86cefe91870376733062d54ddf0a9640ffefd8004296bfd73e104
- name: RELATED_IMAGE_pvc_jobs
value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
- name: RELATED_IMAGE_postgres
value: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
- name: RELATED_IMAGE_keycloak
- value: quay.io/eclipse/che-keycloak@sha256:a7ce0f5343469b42079f0bd79dd0f4344e9de8fa439d39d94413466b96ba28af
+ value: quay.io/eclipse/che-keycloak@sha256:846350743fc027b277aa70624162a4566987c3520c17c6b192d57745002aee82
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
@@ -383,8 +383,8 @@
value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b
- name: RELATED_IMAGE_che_buildkit_base_plugin_registry_image_GAXDOLRRFVRGCY3CGA3DS___
value: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-machine-exec@sha256:7ec846d087ee1f11bc213e7a7488750611e4048f98cb0d7347b72fe7d087b616
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-machine-exec@sha256:ad6ed4044651639ce47350d11c3cefad408944f137c0e9aed79857a1d83c068a
- name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MFZWG2LJMRXWGLJVGMZTOZRYGA______
value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701
- name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MJQXUZLMFVTDCNLDGVSDM___
@@ -437,53 +437,53 @@
value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d
- name: RELATED_IMAGE_che_sidecar_workspace_data_sync_plugin_registry_image_GAXDALRR
value: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:50c4eea1fbbd0f3fab0fb5347e33dae7fd12bb8f30b3459750dd948ef2a79ac7
- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-theia@sha256:c69b4701fd65f79f80833df18c17ea34fd8876d7bd95f6a808b428e3b6cb47a0
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4a063336fb4bfb323c4533cd71fc2d08be063a089f201e050ad82554d673c914
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-theia@sha256:116e3b195ef94ef1394a0303d85e8c260040a024fa9ff20bf046a6f30aa2043f
- name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______
value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5
- name: RELATED_IMAGE_che__centos__mongodb_36_centos7_devfile_registry_image_NRQXIZLTOQWWCOJRGVSGEN3CMVRWCOBXGE4TQZTDMQ3TQNRQGA4DMOJYHFTGKODBGMZDOYJRME2GMNRVGA4DAMRVMI3DIYLCGI4GMY3DG42DEM3CGI______
value: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2
- name: RELATED_IMAGE_che__centos__mysql_57_centos7_devfile_registry_image_NRQXIZLTOQWWKMBYMVSTIZBUGNRDOMZVGY3DANZWHA2WENRZMJSGKNRTGM2WKMRXMNTDEMDDGAZDAZRTGQ2WENTDGZRTKOJUGAYDCOBTHA4DENZWGQ______
value: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-cpp-rhel7@sha256:61061f00950100441ad86124c5ef1a4a77fe44362372fe5a0925449a1f67b3ba
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-dotnet-2.2@sha256:7abad700feb5ca051d636af0003ca6c1e44c755dbf6a0b000f6fd30a4649ed39
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-dotnet-3.1@sha256:edc458c9acf7260e951f41a52f55b072459b8016958945ca9e3aa79a3ed2abee
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-golang-1.14@sha256:85c9a7702fa62000ee743bda18ae236aa208a97520690a798fb0e522c04f5acd
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-java11-gradle@sha256:fcf158878ccf999ec4d0ec4b94d813c7c0b5d506c023a63b24358ac736ce3849
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-java11-maven@sha256:edf270bd09599790072414bc36eee15ba86cbbafc7643b71e9c4de346eb1d783
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-java8-maven@sha256:9ec9cb95961ef3d022636ea701a21123aeac8ec1a829b4eb4d2ff7feceb5f800
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs10-community@sha256:f52281cbfbb295f5064efd83d2a0fc5f854cbc357e6f74b4da392052742b0156
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:84d1593553b373ff0d976d792cac313dc2aeb2f4d4bf908776752cb799d13da1
- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs12-community@sha256:45b69cab2aff3c646ab6c756438761cae2c2a01d6d59e1ac1f3ec97d8c1c3d4f
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-nodejs8-centos@sha256:3b2d38eb73e8e5dc351924d6e7e787394d7157effe28ae0dd402ebe7dd9c06f5
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-php-7@sha256:bc8e69bd17a1a7b6549086c3aaacbc038ad0e523b636b947f326af93991e830b
- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-python-3.7@sha256:a5187abba32d6bef1b23ebe55174ef892f8f59c653ee2a77594b35d37134aec5
- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-python-3.8@sha256:6f289152120b737c0d1776b45419d1f659e81a9bded37985616f73a50e1faa72
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-quarkus@sha256:e0e9c54749aa2fffb4f0012bb79adc0b4d05107c61a2e14c49124d673a0c78cc
- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENJOGA______
- value: quay.io/eclipse/che-rust-1.39@sha256:0e9af0b0818e70327f465b9ad98bdc9e9109935da9ce058013c8d8b827ad298d
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:14ae97821096a4586854df6984269ab20975a4b2e47fb6c8e60325dad403015c
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:fe17864240810045474b181fd793b79e8fb53603b825f7bc635f23962f4318ba
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:7817f03b4c13871ef93e3f44f02c840246682e12a4f31effdf7b9786cfd47699
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-golang-1.14@sha256:cfd5f667ee273bfddeb3ec3bce5c54022a01cf4cfa8cb4654494cedbb49e86d8
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-java11-gradle@sha256:1fcbd983f34fb024ba6da9ac31a65cee1b20472802037c9d518f0f6d31d71085
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-java11-maven@sha256:dffe6149ac5d3b160e14ce3e7bff915f6069b2803590d3ed075d0b18c84a0941
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-java8-maven@sha256:26c211ed1e6445948449d554a837bf64fde11b4a6cca436aec9bc0b0fb5b7cd8
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs10-community@sha256:0902e7227c0da3cb254aa7c8db37582d93a3680cd16d91aa386181573f0ae1ac
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:fdb8864bf47ed8cbeb15cfc7f86f9c4f67c8f1cdb64311f0dbae7eff4a25c7ee
+ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs12-community@sha256:87b708d00ea737c0321ba7966982ce2dc2883704fe92defe96bcf2a65b96c2ea
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:74f68461213c708850d3323133ba86da11f02d4bf72f55a669532d4bd5f95f05
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-php-7@sha256:32735d669e9d3e90192e20ed6a83a6414b8861983857010ed2f7f03ab6eee353
+ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-python-3.7@sha256:03a94ad565397b90c6ecb30f4eaa906fb0aea84578c864c36ba13ebdd4531516
+ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-python-3.8@sha256:88534c569717fe25f4a86d6929003523cb096ca79a718925c61cb84e08d7dace
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-quarkus@sha256:2a49fa6c706235277730ea8b67b3531c5e1a6a09d9e044cafb8f2c6b7bbbd580
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENJOGE______
+ value: quay.io/eclipse/che-rust-1.39@sha256:b19cbb7fe9794a7a705dbc11be89020dc086ee0ab9774b0d7e689b2ae4181a5b
- name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___
value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
- image: quay.io/eclipse/che-operator@sha256:22bb6fdfbcd7cca4c0b4db9fa0b50f65e5a963e93f7173c4028c30276d80ab97
+ image: quay.io/eclipse/che-operator@sha256:dbf5e81187901f9f78a5e55e11439578d6a5ecf3e2b4896741a55a9d2256e0c0
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 10
@@ -657,12 +657,12 @@
maturity: stable
provider:
name: Eclipse Foundation
- replaces: eclipse-che-preview-openshift.v7.24.2
- version: 7.25.0
+ replaces: eclipse-che-preview-openshift.v7.25.0
+ version: 7.25.1
relatedImages:
- - name: che-operator-7.25.0
- image: quay.io/eclipse/che-operator@sha256:22bb6fdfbcd7cca4c0b4db9fa0b50f65e5a963e93f7173c4028c30276d80ab97
- # tag: quay.io/eclipse/che-operator:7.25.0
+ - name: che-operator-7.25.1
+ image: quay.io/eclipse/che-operator@sha256:dbf5e81187901f9f78a5e55e11439578d6a5ecf3e2b4896741a55a9d2256e0c0
+ # tag: quay.io/eclipse/che-operator:7.25.1
- name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751
image: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751
# tag: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751
@@ -708,63 +708,63 @@
- name: che-buildkit-base-@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
# tag: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
- - name: che-cpp-rhel7-@sha256:61061f00950100441ad86124c5ef1a4a77fe44362372fe5a0925449a1f67b3ba
- image: quay.io/eclipse/che-cpp-rhel7@sha256:61061f00950100441ad86124c5ef1a4a77fe44362372fe5a0925449a1f67b3ba
- # tag: quay.io/eclipse/che-cpp-rhel7@sha256:61061f00950100441ad86124c5ef1a4a77fe44362372fe5a0925449a1f67b3ba
- - name: che-devfile-registry-7.25.0
- image: quay.io/eclipse/che-devfile-registry@sha256:d7c13ef4ecd77c4520a8a80ba265029e8bee3d69dd2bee8ad5339814aa651230
- # tag: quay.io/eclipse/che-devfile-registry:7.25.0
- - name: che-devfile-registry-@sha256:d7c13ef4ecd77c4520a8a80ba265029e8bee3d69dd2bee8ad5339814aa651230
- image: quay.io/eclipse/che-devfile-registry@sha256:d7c13ef4ecd77c4520a8a80ba265029e8bee3d69dd2bee8ad5339814aa651230
- # tag: quay.io/eclipse/che-devfile-registry@sha256:d7c13ef4ecd77c4520a8a80ba265029e8bee3d69dd2bee8ad5339814aa651230
- - name: che-dotnet-2.2-@sha256:7abad700feb5ca051d636af0003ca6c1e44c755dbf6a0b000f6fd30a4649ed39
- image: quay.io/eclipse/che-dotnet-2.2@sha256:7abad700feb5ca051d636af0003ca6c1e44c755dbf6a0b000f6fd30a4649ed39
- # tag: quay.io/eclipse/che-dotnet-2.2@sha256:7abad700feb5ca051d636af0003ca6c1e44c755dbf6a0b000f6fd30a4649ed39
- - name: che-dotnet-3.1-@sha256:edc458c9acf7260e951f41a52f55b072459b8016958945ca9e3aa79a3ed2abee
- image: quay.io/eclipse/che-dotnet-3.1@sha256:edc458c9acf7260e951f41a52f55b072459b8016958945ca9e3aa79a3ed2abee
- # tag: quay.io/eclipse/che-dotnet-3.1@sha256:edc458c9acf7260e951f41a52f55b072459b8016958945ca9e3aa79a3ed2abee
- - name: che-golang-1.14-@sha256:85c9a7702fa62000ee743bda18ae236aa208a97520690a798fb0e522c04f5acd
- image: quay.io/eclipse/che-golang-1.14@sha256:85c9a7702fa62000ee743bda18ae236aa208a97520690a798fb0e522c04f5acd
- # tag: quay.io/eclipse/che-golang-1.14@sha256:85c9a7702fa62000ee743bda18ae236aa208a97520690a798fb0e522c04f5acd
- - name: che-java11-gradle-@sha256:fcf158878ccf999ec4d0ec4b94d813c7c0b5d506c023a63b24358ac736ce3849
- image: quay.io/eclipse/che-java11-gradle@sha256:fcf158878ccf999ec4d0ec4b94d813c7c0b5d506c023a63b24358ac736ce3849
- # tag: quay.io/eclipse/che-java11-gradle@sha256:fcf158878ccf999ec4d0ec4b94d813c7c0b5d506c023a63b24358ac736ce3849
- - name: che-java11-maven-@sha256:edf270bd09599790072414bc36eee15ba86cbbafc7643b71e9c4de346eb1d783
- image: quay.io/eclipse/che-java11-maven@sha256:edf270bd09599790072414bc36eee15ba86cbbafc7643b71e9c4de346eb1d783
- # tag: quay.io/eclipse/che-java11-maven@sha256:edf270bd09599790072414bc36eee15ba86cbbafc7643b71e9c4de346eb1d783
- - name: che-java8-maven-@sha256:9ec9cb95961ef3d022636ea701a21123aeac8ec1a829b4eb4d2ff7feceb5f800
- image: quay.io/eclipse/che-java8-maven@sha256:9ec9cb95961ef3d022636ea701a21123aeac8ec1a829b4eb4d2ff7feceb5f800
- # tag: quay.io/eclipse/che-java8-maven@sha256:9ec9cb95961ef3d022636ea701a21123aeac8ec1a829b4eb4d2ff7feceb5f800
+ - name: che-cpp-rhel7-@sha256:14ae97821096a4586854df6984269ab20975a4b2e47fb6c8e60325dad403015c
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:14ae97821096a4586854df6984269ab20975a4b2e47fb6c8e60325dad403015c
+ # tag: quay.io/eclipse/che-cpp-rhel7@sha256:14ae97821096a4586854df6984269ab20975a4b2e47fb6c8e60325dad403015c
+ - name: che-devfile-registry-7.25.1
+ image: quay.io/eclipse/che-devfile-registry@sha256:26e3403cd8a86cefe91870376733062d54ddf0a9640ffefd8004296bfd73e104
+ # tag: quay.io/eclipse/che-devfile-registry:7.25.1
+ - name: che-devfile-registry-@sha256:26e3403cd8a86cefe91870376733062d54ddf0a9640ffefd8004296bfd73e104
+ image: quay.io/eclipse/che-devfile-registry@sha256:26e3403cd8a86cefe91870376733062d54ddf0a9640ffefd8004296bfd73e104
+ # tag: quay.io/eclipse/che-devfile-registry@sha256:26e3403cd8a86cefe91870376733062d54ddf0a9640ffefd8004296bfd73e104
+ - name: che-dotnet-2.2-@sha256:fe17864240810045474b181fd793b79e8fb53603b825f7bc635f23962f4318ba
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:fe17864240810045474b181fd793b79e8fb53603b825f7bc635f23962f4318ba
+ # tag: quay.io/eclipse/che-dotnet-2.2@sha256:fe17864240810045474b181fd793b79e8fb53603b825f7bc635f23962f4318ba
+ - name: che-dotnet-3.1-@sha256:7817f03b4c13871ef93e3f44f02c840246682e12a4f31effdf7b9786cfd47699
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:7817f03b4c13871ef93e3f44f02c840246682e12a4f31effdf7b9786cfd47699
+ # tag: quay.io/eclipse/che-dotnet-3.1@sha256:7817f03b4c13871ef93e3f44f02c840246682e12a4f31effdf7b9786cfd47699
+ - name: che-golang-1.14-@sha256:cfd5f667ee273bfddeb3ec3bce5c54022a01cf4cfa8cb4654494cedbb49e86d8
+ image: quay.io/eclipse/che-golang-1.14@sha256:cfd5f667ee273bfddeb3ec3bce5c54022a01cf4cfa8cb4654494cedbb49e86d8
+ # tag: quay.io/eclipse/che-golang-1.14@sha256:cfd5f667ee273bfddeb3ec3bce5c54022a01cf4cfa8cb4654494cedbb49e86d8
+ - name: che-java11-gradle-@sha256:1fcbd983f34fb024ba6da9ac31a65cee1b20472802037c9d518f0f6d31d71085
+ image: quay.io/eclipse/che-java11-gradle@sha256:1fcbd983f34fb024ba6da9ac31a65cee1b20472802037c9d518f0f6d31d71085
+ # tag: quay.io/eclipse/che-java11-gradle@sha256:1fcbd983f34fb024ba6da9ac31a65cee1b20472802037c9d518f0f6d31d71085
+ - name: che-java11-maven-@sha256:dffe6149ac5d3b160e14ce3e7bff915f6069b2803590d3ed075d0b18c84a0941
+ image: quay.io/eclipse/che-java11-maven@sha256:dffe6149ac5d3b160e14ce3e7bff915f6069b2803590d3ed075d0b18c84a0941
+ # tag: quay.io/eclipse/che-java11-maven@sha256:dffe6149ac5d3b160e14ce3e7bff915f6069b2803590d3ed075d0b18c84a0941
+ - name: che-java8-maven-@sha256:26c211ed1e6445948449d554a837bf64fde11b4a6cca436aec9bc0b0fb5b7cd8
+ image: quay.io/eclipse/che-java8-maven@sha256:26c211ed1e6445948449d554a837bf64fde11b4a6cca436aec9bc0b0fb5b7cd8
+ # tag: quay.io/eclipse/che-java8-maven@sha256:26c211ed1e6445948449d554a837bf64fde11b4a6cca436aec9bc0b0fb5b7cd8
- name: che-jwtproxy-0.10.0
image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
# tag: quay.io/eclipse/che-jwtproxy:0.10.0
- name: che-jwtproxy-@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
# tag: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
- - name: che-keycloak-7.25.0
- image: quay.io/eclipse/che-keycloak@sha256:a7ce0f5343469b42079f0bd79dd0f4344e9de8fa439d39d94413466b96ba28af
- # tag: quay.io/eclipse/che-keycloak:7.25.0
- - name: che-keycloak-@sha256:a7ce0f5343469b42079f0bd79dd0f4344e9de8fa439d39d94413466b96ba28af
- image: quay.io/eclipse/che-keycloak@sha256:a7ce0f5343469b42079f0bd79dd0f4344e9de8fa439d39d94413466b96ba28af
- # tag: quay.io/eclipse/che-keycloak@sha256:a7ce0f5343469b42079f0bd79dd0f4344e9de8fa439d39d94413466b96ba28af
- - name: che-machine-exec-@sha256:7ec846d087ee1f11bc213e7a7488750611e4048f98cb0d7347b72fe7d087b616
- image: quay.io/eclipse/che-machine-exec@sha256:7ec846d087ee1f11bc213e7a7488750611e4048f98cb0d7347b72fe7d087b616
- # tag: quay.io/eclipse/che-machine-exec@sha256:7ec846d087ee1f11bc213e7a7488750611e4048f98cb0d7347b72fe7d087b616
- - name: che-nodejs10-community-@sha256:f52281cbfbb295f5064efd83d2a0fc5f854cbc357e6f74b4da392052742b0156
- image: quay.io/eclipse/che-nodejs10-community@sha256:f52281cbfbb295f5064efd83d2a0fc5f854cbc357e6f74b4da392052742b0156
- # tag: quay.io/eclipse/che-nodejs10-community@sha256:f52281cbfbb295f5064efd83d2a0fc5f854cbc357e6f74b4da392052742b0156
- - name: che-nodejs10-ubi-@sha256:84d1593553b373ff0d976d792cac313dc2aeb2f4d4bf908776752cb799d13da1
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:84d1593553b373ff0d976d792cac313dc2aeb2f4d4bf908776752cb799d13da1
- # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:84d1593553b373ff0d976d792cac313dc2aeb2f4d4bf908776752cb799d13da1
- - name: che-nodejs12-community-@sha256:45b69cab2aff3c646ab6c756438761cae2c2a01d6d59e1ac1f3ec97d8c1c3d4f
- image: quay.io/eclipse/che-nodejs12-community@sha256:45b69cab2aff3c646ab6c756438761cae2c2a01d6d59e1ac1f3ec97d8c1c3d4f
- # tag: quay.io/eclipse/che-nodejs12-community@sha256:45b69cab2aff3c646ab6c756438761cae2c2a01d6d59e1ac1f3ec97d8c1c3d4f
- - name: che-nodejs8-centos-@sha256:3b2d38eb73e8e5dc351924d6e7e787394d7157effe28ae0dd402ebe7dd9c06f5
- image: quay.io/eclipse/che-nodejs8-centos@sha256:3b2d38eb73e8e5dc351924d6e7e787394d7157effe28ae0dd402ebe7dd9c06f5
- # tag: quay.io/eclipse/che-nodejs8-centos@sha256:3b2d38eb73e8e5dc351924d6e7e787394d7157effe28ae0dd402ebe7dd9c06f5
- - name: che-php-7-@sha256:bc8e69bd17a1a7b6549086c3aaacbc038ad0e523b636b947f326af93991e830b
- image: quay.io/eclipse/che-php-7@sha256:bc8e69bd17a1a7b6549086c3aaacbc038ad0e523b636b947f326af93991e830b
- # tag: quay.io/eclipse/che-php-7@sha256:bc8e69bd17a1a7b6549086c3aaacbc038ad0e523b636b947f326af93991e830b
+ - name: che-keycloak-7.25.1
+ image: quay.io/eclipse/che-keycloak@sha256:846350743fc027b277aa70624162a4566987c3520c17c6b192d57745002aee82
+ # tag: quay.io/eclipse/che-keycloak:7.25.1
+ - name: che-keycloak-@sha256:846350743fc027b277aa70624162a4566987c3520c17c6b192d57745002aee82
+ image: quay.io/eclipse/che-keycloak@sha256:846350743fc027b277aa70624162a4566987c3520c17c6b192d57745002aee82
+ # tag: quay.io/eclipse/che-keycloak@sha256:846350743fc027b277aa70624162a4566987c3520c17c6b192d57745002aee82
+ - name: che-machine-exec-@sha256:ad6ed4044651639ce47350d11c3cefad408944f137c0e9aed79857a1d83c068a
+ image: quay.io/eclipse/che-machine-exec@sha256:ad6ed4044651639ce47350d11c3cefad408944f137c0e9aed79857a1d83c068a
+ # tag: quay.io/eclipse/che-machine-exec@sha256:ad6ed4044651639ce47350d11c3cefad408944f137c0e9aed79857a1d83c068a
+ - name: che-nodejs10-community-@sha256:0902e7227c0da3cb254aa7c8db37582d93a3680cd16d91aa386181573f0ae1ac
+ image: quay.io/eclipse/che-nodejs10-community@sha256:0902e7227c0da3cb254aa7c8db37582d93a3680cd16d91aa386181573f0ae1ac
+ # tag: quay.io/eclipse/che-nodejs10-community@sha256:0902e7227c0da3cb254aa7c8db37582d93a3680cd16d91aa386181573f0ae1ac
+ - name: che-nodejs10-ubi-@sha256:fdb8864bf47ed8cbeb15cfc7f86f9c4f67c8f1cdb64311f0dbae7eff4a25c7ee
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:fdb8864bf47ed8cbeb15cfc7f86f9c4f67c8f1cdb64311f0dbae7eff4a25c7ee
+ # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:fdb8864bf47ed8cbeb15cfc7f86f9c4f67c8f1cdb64311f0dbae7eff4a25c7ee
+ - name: che-nodejs12-community-@sha256:87b708d00ea737c0321ba7966982ce2dc2883704fe92defe96bcf2a65b96c2ea
+ image: quay.io/eclipse/che-nodejs12-community@sha256:87b708d00ea737c0321ba7966982ce2dc2883704fe92defe96bcf2a65b96c2ea
+ # tag: quay.io/eclipse/che-nodejs12-community@sha256:87b708d00ea737c0321ba7966982ce2dc2883704fe92defe96bcf2a65b96c2ea
+ - name: che-nodejs8-centos-@sha256:74f68461213c708850d3323133ba86da11f02d4bf72f55a669532d4bd5f95f05
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:74f68461213c708850d3323133ba86da11f02d4bf72f55a669532d4bd5f95f05
+ # tag: quay.io/eclipse/che-nodejs8-centos@sha256:74f68461213c708850d3323133ba86da11f02d4bf72f55a669532d4bd5f95f05
+ - name: che-php-7-@sha256:32735d669e9d3e90192e20ed6a83a6414b8861983857010ed2f7f03ab6eee353
+ image: quay.io/eclipse/che-php-7@sha256:32735d669e9d3e90192e20ed6a83a6414b8861983857010ed2f7f03ab6eee353
+ # tag: quay.io/eclipse/che-php-7@sha256:32735d669e9d3e90192e20ed6a83a6414b8861983857010ed2f7f03ab6eee353
- name: che-plugin-artifacts-broker-v3.4.0
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58
# tag: quay.io/eclipse/che-plugin-artifacts-broker:v3.4.0
@@ -777,12 +777,12 @@
- name: che-plugin-metadata-broker-@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
# tag: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
- - name: che-plugin-registry-7.25.0
- image: quay.io/eclipse/che-plugin-registry@sha256:4ca8ef9eaf2f059ed936b6ae83793a98190291ea89cd99d7cb4b9ac05cef648c
- # tag: quay.io/eclipse/che-plugin-registry:7.25.0
- - name: che-plugin-registry-@sha256:4ca8ef9eaf2f059ed936b6ae83793a98190291ea89cd99d7cb4b9ac05cef648c
- image: quay.io/eclipse/che-plugin-registry@sha256:4ca8ef9eaf2f059ed936b6ae83793a98190291ea89cd99d7cb4b9ac05cef648c
- # tag: quay.io/eclipse/che-plugin-registry@sha256:4ca8ef9eaf2f059ed936b6ae83793a98190291ea89cd99d7cb4b9ac05cef648c
+ - name: che-plugin-registry-7.25.1
+ image: quay.io/eclipse/che-plugin-registry@sha256:2578d451270f27b34f190aa27a1493f72201dfd7837a77ec93519e68f31321d3
+ # tag: quay.io/eclipse/che-plugin-registry:7.25.1
+ - name: che-plugin-registry-@sha256:2578d451270f27b34f190aa27a1493f72201dfd7837a77ec93519e68f31321d3
+ image: quay.io/eclipse/che-plugin-registry@sha256:2578d451270f27b34f190aa27a1493f72201dfd7837a77ec93519e68f31321d3
+ # tag: quay.io/eclipse/che-plugin-registry@sha256:2578d451270f27b34f190aa27a1493f72201dfd7837a77ec93519e68f31321d3
- name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a
image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a
# tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a
@@ -858,33 +858,33 @@
- name: che-plugin-sidecar-@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a
image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a
# tag: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a
- - name: che-python-3.7-@sha256:a5187abba32d6bef1b23ebe55174ef892f8f59c653ee2a77594b35d37134aec5
- image: quay.io/eclipse/che-python-3.7@sha256:a5187abba32d6bef1b23ebe55174ef892f8f59c653ee2a77594b35d37134aec5
- # tag: quay.io/eclipse/che-python-3.7@sha256:a5187abba32d6bef1b23ebe55174ef892f8f59c653ee2a77594b35d37134aec5
- - name: che-python-3.8-@sha256:6f289152120b737c0d1776b45419d1f659e81a9bded37985616f73a50e1faa72
- image: quay.io/eclipse/che-python-3.8@sha256:6f289152120b737c0d1776b45419d1f659e81a9bded37985616f73a50e1faa72
- # tag: quay.io/eclipse/che-python-3.8@sha256:6f289152120b737c0d1776b45419d1f659e81a9bded37985616f73a50e1faa72
- - name: che-quarkus-@sha256:e0e9c54749aa2fffb4f0012bb79adc0b4d05107c61a2e14c49124d673a0c78cc
- image: quay.io/eclipse/che-quarkus@sha256:e0e9c54749aa2fffb4f0012bb79adc0b4d05107c61a2e14c49124d673a0c78cc
- # tag: quay.io/eclipse/che-quarkus@sha256:e0e9c54749aa2fffb4f0012bb79adc0b4d05107c61a2e14c49124d673a0c78cc
- - name: che-rust-1.39-@sha256:0e9af0b0818e70327f465b9ad98bdc9e9109935da9ce058013c8d8b827ad298d
- image: quay.io/eclipse/che-rust-1.39@sha256:0e9af0b0818e70327f465b9ad98bdc9e9109935da9ce058013c8d8b827ad298d
- # tag: quay.io/eclipse/che-rust-1.39@sha256:0e9af0b0818e70327f465b9ad98bdc9e9109935da9ce058013c8d8b827ad298d
- - name: che-server-7.25.0
- image: quay.io/eclipse/che-server@sha256:f48b84be09094ec2b6ee5d9fad41b52e89051776110133c6b03c92e94d16d7e9
- # tag: quay.io/eclipse/che-server:7.25.0
- - name: che-server-@sha256:f48b84be09094ec2b6ee5d9fad41b52e89051776110133c6b03c92e94d16d7e9
- image: quay.io/eclipse/che-server@sha256:f48b84be09094ec2b6ee5d9fad41b52e89051776110133c6b03c92e94d16d7e9
- # tag: quay.io/eclipse/che-server@sha256:f48b84be09094ec2b6ee5d9fad41b52e89051776110133c6b03c92e94d16d7e9
+ - name: che-python-3.7-@sha256:03a94ad565397b90c6ecb30f4eaa906fb0aea84578c864c36ba13ebdd4531516
+ image: quay.io/eclipse/che-python-3.7@sha256:03a94ad565397b90c6ecb30f4eaa906fb0aea84578c864c36ba13ebdd4531516
+ # tag: quay.io/eclipse/che-python-3.7@sha256:03a94ad565397b90c6ecb30f4eaa906fb0aea84578c864c36ba13ebdd4531516
+ - name: che-python-3.8-@sha256:88534c569717fe25f4a86d6929003523cb096ca79a718925c61cb84e08d7dace
+ image: quay.io/eclipse/che-python-3.8@sha256:88534c569717fe25f4a86d6929003523cb096ca79a718925c61cb84e08d7dace
+ # tag: quay.io/eclipse/che-python-3.8@sha256:88534c569717fe25f4a86d6929003523cb096ca79a718925c61cb84e08d7dace
+ - name: che-quarkus-@sha256:2a49fa6c706235277730ea8b67b3531c5e1a6a09d9e044cafb8f2c6b7bbbd580
+ image: quay.io/eclipse/che-quarkus@sha256:2a49fa6c706235277730ea8b67b3531c5e1a6a09d9e044cafb8f2c6b7bbbd580
+ # tag: quay.io/eclipse/che-quarkus@sha256:2a49fa6c706235277730ea8b67b3531c5e1a6a09d9e044cafb8f2c6b7bbbd580
+ - name: che-rust-1.39-@sha256:b19cbb7fe9794a7a705dbc11be89020dc086ee0ab9774b0d7e689b2ae4181a5b
+ image: quay.io/eclipse/che-rust-1.39@sha256:b19cbb7fe9794a7a705dbc11be89020dc086ee0ab9774b0d7e689b2ae4181a5b
+ # tag: quay.io/eclipse/che-rust-1.39@sha256:b19cbb7fe9794a7a705dbc11be89020dc086ee0ab9774b0d7e689b2ae4181a5b
+ - name: che-server-7.25.1
+ image: quay.io/eclipse/che-server@sha256:3ab3664f942f68ac148df4dfaa4e3817bda6bcddcaa79441c1aadf6c1b1371ce
+ # tag: quay.io/eclipse/che-server:7.25.1
+ - name: che-server-@sha256:3ab3664f942f68ac148df4dfaa4e3817bda6bcddcaa79441c1aadf6c1b1371ce
+ image: quay.io/eclipse/che-server@sha256:3ab3664f942f68ac148df4dfaa4e3817bda6bcddcaa79441c1aadf6c1b1371ce
+ # tag: quay.io/eclipse/che-server@sha256:3ab3664f942f68ac148df4dfaa4e3817bda6bcddcaa79441c1aadf6c1b1371ce
- name: che-sidecar-workspace-data-sync-@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
image: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
# tag: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
- - name: che-theia-endpoint-runtime-binary-@sha256:50c4eea1fbbd0f3fab0fb5347e33dae7fd12bb8f30b3459750dd948ef2a79ac7
- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:50c4eea1fbbd0f3fab0fb5347e33dae7fd12bb8f30b3459750dd948ef2a79ac7
- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:50c4eea1fbbd0f3fab0fb5347e33dae7fd12bb8f30b3459750dd948ef2a79ac7
- - name: che-theia-@sha256:c69b4701fd65f79f80833df18c17ea34fd8876d7bd95f6a808b428e3b6cb47a0
- image: quay.io/eclipse/che-theia@sha256:c69b4701fd65f79f80833df18c17ea34fd8876d7bd95f6a808b428e3b6cb47a0
- # tag: quay.io/eclipse/che-theia@sha256:c69b4701fd65f79f80833df18c17ea34fd8876d7bd95f6a808b428e3b6cb47a0
+ - name: che-theia-endpoint-runtime-binary-@sha256:4a063336fb4bfb323c4533cd71fc2d08be063a089f201e050ad82554d673c914
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4a063336fb4bfb323c4533cd71fc2d08be063a089f201e050ad82554d673c914
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4a063336fb4bfb323c4533cd71fc2d08be063a089f201e050ad82554d673c914
+ - name: che-theia-@sha256:116e3b195ef94ef1394a0303d85e8c260040a024fa9ff20bf046a6f30aa2043f
+ image: quay.io/eclipse/che-theia@sha256:116e3b195ef94ef1394a0303d85e8c260040a024fa9ff20bf046a6f30aa2043f
+ # tag: quay.io/eclipse/che-theia@sha256:116e3b195ef94ef1394a0303d85e8c260040a024fa9ff20bf046a6f30aa2043f
- name: che-tls-secret-creator-@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
image: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
# tag: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
@@ -921,9 +921,9 @@
- name: che-buildkit-base-0.7.1-bacb069
image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
# tag: quay.io/eclipse/che-buildkit-base:0.7.1-bacb069
- - name: che-machine-exec-7.25.0
- image: quay.io/eclipse/che-machine-exec@sha256:7ec846d087ee1f11bc213e7a7488750611e4048f98cb0d7347b72fe7d087b616
- # tag: quay.io/eclipse/che-machine-exec:7.25.0
+ - name: che-machine-exec-7.25.1
+ image: quay.io/eclipse/che-machine-exec@sha256:ad6ed4044651639ce47350d11c3cefad408944f137c0e9aed79857a1d83c068a
+ # tag: quay.io/eclipse/che-machine-exec:7.25.1
- name: che-plugin-sidecar-asciidoc-5337f80
image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701
# tag: quay.io/eclipse/che-plugin-sidecar:asciidoc-5337f80
@@ -1002,12 +1002,12 @@
- name: che-sidecar-workspace-data-sync-0.0.1
image: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
# tag: quay.io/eclipse/che-sidecar-workspace-data-sync:0.0.1
- - name: che-theia-endpoint-runtime-binary-7.25.0
- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:50c4eea1fbbd0f3fab0fb5347e33dae7fd12bb8f30b3459750dd948ef2a79ac7
- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.25.0
- - name: che-theia-7.25.0
- image: quay.io/eclipse/che-theia@sha256:c69b4701fd65f79f80833df18c17ea34fd8876d7bd95f6a808b428e3b6cb47a0
- # tag: quay.io/eclipse/che-theia:7.25.0
+ - name: che-theia-endpoint-runtime-binary-7.25.1
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4a063336fb4bfb323c4533cd71fc2d08be063a089f201e050ad82554d673c914
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.25.1
+ - name: che-theia-7.25.1
+ image: quay.io/eclipse/che-theia@sha256:116e3b195ef94ef1394a0303d85e8c260040a024fa9ff20bf046a6f30aa2043f
+ # tag: quay.io/eclipse/che-theia:7.25.1
- name: mta-vscode-extension-latest
image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5
# tag: quay.io/windupeng/mta-vscode-extension:latest
@@ -1017,54 +1017,54 @@
- name: che--centos--mysql-57-centos7-latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
image: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
# tag: quay.io/eclipse/che--centos--mysql-57-centos7:latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
- - name: che-cpp-rhel7-7.25.0
- image: quay.io/eclipse/che-cpp-rhel7@sha256:61061f00950100441ad86124c5ef1a4a77fe44362372fe5a0925449a1f67b3ba
- # tag: quay.io/eclipse/che-cpp-rhel7:7.25.0
- - name: che-dotnet-2.2-7.25.0
- image: quay.io/eclipse/che-dotnet-2.2@sha256:7abad700feb5ca051d636af0003ca6c1e44c755dbf6a0b000f6fd30a4649ed39
- # tag: quay.io/eclipse/che-dotnet-2.2:7.25.0
- - name: che-dotnet-3.1-7.25.0
- image: quay.io/eclipse/che-dotnet-3.1@sha256:edc458c9acf7260e951f41a52f55b072459b8016958945ca9e3aa79a3ed2abee
- # tag: quay.io/eclipse/che-dotnet-3.1:7.25.0
- - name: che-golang-1.14-7.25.0
- image: quay.io/eclipse/che-golang-1.14@sha256:85c9a7702fa62000ee743bda18ae236aa208a97520690a798fb0e522c04f5acd
- # tag: quay.io/eclipse/che-golang-1.14:7.25.0
- - name: che-java11-gradle-7.25.0
- image: quay.io/eclipse/che-java11-gradle@sha256:fcf158878ccf999ec4d0ec4b94d813c7c0b5d506c023a63b24358ac736ce3849
- # tag: quay.io/eclipse/che-java11-gradle:7.25.0
- - name: che-java11-maven-7.25.0
- image: quay.io/eclipse/che-java11-maven@sha256:edf270bd09599790072414bc36eee15ba86cbbafc7643b71e9c4de346eb1d783
- # tag: quay.io/eclipse/che-java11-maven:7.25.0
- - name: che-java8-maven-7.25.0
- image: quay.io/eclipse/che-java8-maven@sha256:9ec9cb95961ef3d022636ea701a21123aeac8ec1a829b4eb4d2ff7feceb5f800
- # tag: quay.io/eclipse/che-java8-maven:7.25.0
- - name: che-nodejs10-community-7.25.0
- image: quay.io/eclipse/che-nodejs10-community@sha256:f52281cbfbb295f5064efd83d2a0fc5f854cbc357e6f74b4da392052742b0156
- # tag: quay.io/eclipse/che-nodejs10-community:7.25.0
- - name: che-nodejs10-ubi-7.25.0
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:84d1593553b373ff0d976d792cac313dc2aeb2f4d4bf908776752cb799d13da1
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.25.0
- - name: che-nodejs12-community-7.25.0
- image: quay.io/eclipse/che-nodejs12-community@sha256:45b69cab2aff3c646ab6c756438761cae2c2a01d6d59e1ac1f3ec97d8c1c3d4f
- # tag: quay.io/eclipse/che-nodejs12-community:7.25.0
- - name: che-nodejs8-centos-7.25.0
- image: quay.io/eclipse/che-nodejs8-centos@sha256:3b2d38eb73e8e5dc351924d6e7e787394d7157effe28ae0dd402ebe7dd9c06f5
- # tag: quay.io/eclipse/che-nodejs8-centos:7.25.0
- - name: che-php-7-7.25.0
- image: quay.io/eclipse/che-php-7@sha256:bc8e69bd17a1a7b6549086c3aaacbc038ad0e523b636b947f326af93991e830b
- # tag: quay.io/eclipse/che-php-7:7.25.0
- - name: che-python-3.7-7.25.0
- image: quay.io/eclipse/che-python-3.7@sha256:a5187abba32d6bef1b23ebe55174ef892f8f59c653ee2a77594b35d37134aec5
- # tag: quay.io/eclipse/che-python-3.7:7.25.0
- - name: che-python-3.8-7.25.0
- image: quay.io/eclipse/che-python-3.8@sha256:6f289152120b737c0d1776b45419d1f659e81a9bded37985616f73a50e1faa72
- # tag: quay.io/eclipse/che-python-3.8:7.25.0
- - name: che-quarkus-7.25.0
- image: quay.io/eclipse/che-quarkus@sha256:e0e9c54749aa2fffb4f0012bb79adc0b4d05107c61a2e14c49124d673a0c78cc
- # tag: quay.io/eclipse/che-quarkus:7.25.0
- - name: che-rust-1.39-7.25.0
- image: quay.io/eclipse/che-rust-1.39@sha256:0e9af0b0818e70327f465b9ad98bdc9e9109935da9ce058013c8d8b827ad298d
- # tag: quay.io/eclipse/che-rust-1.39:7.25.0
+ - name: che-cpp-rhel7-7.25.1
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:14ae97821096a4586854df6984269ab20975a4b2e47fb6c8e60325dad403015c
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.25.1
+ - name: che-dotnet-2.2-7.25.1
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:fe17864240810045474b181fd793b79e8fb53603b825f7bc635f23962f4318ba
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.25.1
+ - name: che-dotnet-3.1-7.25.1
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:7817f03b4c13871ef93e3f44f02c840246682e12a4f31effdf7b9786cfd47699
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.25.1
+ - name: che-golang-1.14-7.25.1
+ image: quay.io/eclipse/che-golang-1.14@sha256:cfd5f667ee273bfddeb3ec3bce5c54022a01cf4cfa8cb4654494cedbb49e86d8
+ # tag: quay.io/eclipse/che-golang-1.14:7.25.1
+ - name: che-java11-gradle-7.25.1
+ image: quay.io/eclipse/che-java11-gradle@sha256:1fcbd983f34fb024ba6da9ac31a65cee1b20472802037c9d518f0f6d31d71085
+ # tag: quay.io/eclipse/che-java11-gradle:7.25.1
+ - name: che-java11-maven-7.25.1
+ image: quay.io/eclipse/che-java11-maven@sha256:dffe6149ac5d3b160e14ce3e7bff915f6069b2803590d3ed075d0b18c84a0941
+ # tag: quay.io/eclipse/che-java11-maven:7.25.1
+ - name: che-java8-maven-7.25.1
+ image: quay.io/eclipse/che-java8-maven@sha256:26c211ed1e6445948449d554a837bf64fde11b4a6cca436aec9bc0b0fb5b7cd8
+ # tag: quay.io/eclipse/che-java8-maven:7.25.1
+ - name: che-nodejs10-community-7.25.1
+ image: quay.io/eclipse/che-nodejs10-community@sha256:0902e7227c0da3cb254aa7c8db37582d93a3680cd16d91aa386181573f0ae1ac
+ # tag: quay.io/eclipse/che-nodejs10-community:7.25.1
+ - name: che-nodejs10-ubi-7.25.1
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:fdb8864bf47ed8cbeb15cfc7f86f9c4f67c8f1cdb64311f0dbae7eff4a25c7ee
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.25.1
+ - name: che-nodejs12-community-7.25.1
+ image: quay.io/eclipse/che-nodejs12-community@sha256:87b708d00ea737c0321ba7966982ce2dc2883704fe92defe96bcf2a65b96c2ea
+ # tag: quay.io/eclipse/che-nodejs12-community:7.25.1
+ - name: che-nodejs8-centos-7.25.1
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:74f68461213c708850d3323133ba86da11f02d4bf72f55a669532d4bd5f95f05
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.25.1
+ - name: che-php-7-7.25.1
+ image: quay.io/eclipse/che-php-7@sha256:32735d669e9d3e90192e20ed6a83a6414b8861983857010ed2f7f03ab6eee353
+ # tag: quay.io/eclipse/che-php-7:7.25.1
+ - name: che-python-3.7-7.25.1
+ image: quay.io/eclipse/che-python-3.7@sha256:03a94ad565397b90c6ecb30f4eaa906fb0aea84578c864c36ba13ebdd4531516
+ # tag: quay.io/eclipse/che-python-3.7:7.25.1
+ - name: che-python-3.8-7.25.1
+ image: quay.io/eclipse/che-python-3.8@sha256:88534c569717fe25f4a86d6929003523cb096ca79a718925c61cb84e08d7dace
+ # tag: quay.io/eclipse/che-python-3.8:7.25.1
+ - name: che-quarkus-7.25.1
+ image: quay.io/eclipse/che-quarkus@sha256:2a49fa6c706235277730ea8b67b3531c5e1a6a09d9e044cafb8f2c6b7bbbd580
+ # tag: quay.io/eclipse/che-quarkus:7.25.1
+ - name: che-rust-1.39-7.25.1
+ image: quay.io/eclipse/che-rust-1.39@sha256:b19cbb7fe9794a7a705dbc11be89020dc086ee0ab9774b0d7e689b2ae4181a5b
+ # tag: quay.io/eclipse/che-rust-1.39:7.25.1
- name: ubi8-minimal-8.3
image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
# tag: registry.access.redhat.com/ubi8-minimal:8.3

View File

@ -1,5 +1,5 @@
channels:
- currentCSV: eclipse-che-preview-openshift.v7.25.0
- currentCSV: eclipse-che-preview-openshift.v7.25.1
name: stable
defaultChannel: stable
packageName: eclipse-che-preview-openshift