Release version 7.18.2 (#437)
* Update defaults tags to 7.18.2 Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> * Release OLM files to 7.18.2 Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> * Revert changes in operator yaml Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>7.18.x
parent
94d021a93e
commit
211b88d36d
|
|
@ -25,7 +25,7 @@ spec:
|
|||
serviceAccountName: che-operator
|
||||
containers:
|
||||
- name: che-operator
|
||||
image: quay.io/eclipse/che-operator:7.18.1
|
||||
image: quay.io/eclipse/che-operator:7.18.2
|
||||
ports:
|
||||
- containerPort: 60000
|
||||
name: metrics
|
||||
|
|
@ -44,13 +44,13 @@ spec:
|
|||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
value: 7.18.1
|
||||
value: 7.18.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
value: quay.io/eclipse/che-server:7.18.1
|
||||
value: quay.io/eclipse/che-server:7.18.2
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
value: quay.io/eclipse/che-plugin-registry:7.18.1
|
||||
value: quay.io/eclipse/che-plugin-registry:7.18.2
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
value: quay.io/eclipse/che-devfile-registry:7.18.1
|
||||
value: quay.io/eclipse/che-devfile-registry:7.18.2
|
||||
- name: RELATED_IMAGE_che_tls_secrets_creation_job
|
||||
value: quay.io/eclipse/che-tls-secret-creator:alpine-d1ed4ad
|
||||
- name: RELATED_IMAGE_pvc_jobs
|
||||
|
|
@ -58,7 +58,7 @@ spec:
|
|||
- name: RELATED_IMAGE_postgres
|
||||
value: centos/postgresql-96-centos7:9.6
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
value: quay.io/eclipse/che-keycloak:7.18.1
|
||||
value: quay.io/eclipse/che-keycloak:7.18.2
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker:v3.3.0
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: che-operator
|
||||
image: quay.io/eclipse/che-operator:7.18.1
|
||||
image: quay.io/eclipse/che-operator:7.18.2
|
||||
ports:
|
||||
- containerPort: 60000
|
||||
name: metrics
|
||||
|
|
@ -43,13 +43,13 @@ spec:
|
|||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
value: 7.18.1
|
||||
value: 7.18.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
value: quay.io/eclipse/che-server:7.18.1
|
||||
value: quay.io/eclipse/che-server:7.18.2
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
value: quay.io/eclipse/che-plugin-registry:7.18.1
|
||||
value: quay.io/eclipse/che-plugin-registry:7.18.2
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
value: quay.io/eclipse/che-devfile-registry:7.18.1
|
||||
value: quay.io/eclipse/che-devfile-registry:7.18.2
|
||||
- name: RELATED_IMAGE_che_tls_secrets_creation_job
|
||||
value: quay.io/eclipse/che-tls-secret-creator:alpine-d1ed4ad
|
||||
- name: RELATED_IMAGE_pvc_jobs
|
||||
|
|
@ -57,7 +57,7 @@ spec:
|
|||
- name: RELATED_IMAGE_postgres
|
||||
value: centos/postgresql-96-centos7:9.6
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
value: quay.io/eclipse/che-keycloak:7.18.1
|
||||
value: quay.io/eclipse/che-keycloak:7.18.2
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker:v3.3.0
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
|
|
|
|||
|
|
@ -0,0 +1,567 @@
|
|||
#
|
||||
# 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:
|
||||
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/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/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
|
||||
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
|
||||
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
|
||||
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. Enabled by default on OpenShift.
|
||||
This will allow 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:
|
||||
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
|
||||
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`
|
||||
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
|
||||
tlsSecretName:
|
||||
description: Name of a secret that will be used to setup ingress
|
||||
TLS termination if TLS is enabled. See also the `tlsSupport` field.
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
devfileRegistryMemoryLimit:
|
||||
description: Overrides the memory limit used in the Devfile registry
|
||||
deployment. Defaults to 256Mi.
|
||||
type: string
|
||||
devfileRegistryMemoryRequest:
|
||||
description: Overrides the memory request used in the Devfile registry
|
||||
deployment. Defaults to 16Mi.
|
||||
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
|
||||
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.
|
||||
Use `|`` 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
|
||||
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 defaut container image provided by the operator.
|
||||
type: string
|
||||
pluginRegistryMemoryLimit:
|
||||
description: Overrides the memory limit used in the Plugin registry
|
||||
deployment. Defaults to 256Mi.
|
||||
type: string
|
||||
pluginRegistryMemoryRequest:
|
||||
description: Overrides the memory request used in the Plugin registry
|
||||
deployment. Defaults to 16Mi.
|
||||
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
|
||||
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
|
||||
serverMemoryLimit:
|
||||
description: Overrides the memory limit used in the Che server deployment.
|
||||
Defaults to 1Gi.
|
||||
type: string
|
||||
serverMemoryRequest:
|
||||
description: Overrides the memory request used in the Che server
|
||||
deployment. 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
|
||||
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
|
||||
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
|
||||
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
|
||||
version: v1
|
||||
versions:
|
||||
- name: v1
|
||||
served: true
|
||||
storage: true
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,312 @@
|
|||
--- /root/payload/che/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.18.1/eclipse-che-preview-kubernetes.v7.18.1.clusterserviceversion.yaml 2020-09-10 16:08:56.776574247 +0100
|
||||
+++ /root/payload/che/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.18.2/eclipse-che-preview-kubernetes.v7.18.2.clusterserviceversion.yaml 2020-09-10 16:14:45.427469051 +0100
|
||||
@@ -51,14 +51,14 @@
|
||||
capabilities: Seamless Upgrades
|
||||
categories: Developer Tools
|
||||
certified: "false"
|
||||
- containerImage: quay.io/eclipse/che-operator@sha256:60c8ca56b8ae0ade5d543520ff9402a8344fc77af83b9c56a6d66c7dfd7fe165
|
||||
- createdAt: "2020-09-09T08:35:33Z"
|
||||
+ containerImage: quay.io/eclipse/che-operator@sha256:f32bb46276437e8c7508b441cffbd9c8fe6260aa1eeefc66f5d0616dba64d40c
|
||||
+ createdAt: "2020-09-10T15:12:33Z"
|
||||
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.18.1
|
||||
+ name: eclipse-che-preview-kubernetes.v7.18.2
|
||||
namespace: placeholder
|
||||
spec:
|
||||
apiservicedefinitions: {}
|
||||
@@ -250,13 +250,13 @@
|
||||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
- value: 7.18.1
|
||||
+ value: 7.18.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
- value: quay.io/eclipse/che-server@sha256:b5838dd2dcc4ec3e19edbce46c8724107496477e9b2b79774efe2650b27b33be
|
||||
+ value: quay.io/eclipse/che-server@sha256:4216b2c15f9086b1e01c2d67497c846a2fb1834f08bcc83ff94a8caf1ada8785
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
- value: quay.io/eclipse/che-plugin-registry@sha256:21b58aeac1df88d30c76aa3508f4fa37abe008baa259491d303c624806d63fdc
|
||||
+ value: quay.io/eclipse/che-plugin-registry@sha256:a265b42a9d8e02a2b3f6a2b26de9a2e426633b11c1979951ef920bd8ffa2a79c
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
- value: quay.io/eclipse/che-devfile-registry@sha256:e68e23f0387df30a383456bd5d4807b261adfdd8dfc2ea0fb62fea40949f0168
|
||||
+ value: quay.io/eclipse/che-devfile-registry@sha256:411138bab8a5d8f52e02e16e1506faa8e31b6ac1bc62d2ae479a342c2bcaa864
|
||||
- name: RELATED_IMAGE_che_tls_secrets_creation_job
|
||||
value: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
|
||||
- name: RELATED_IMAGE_pvc_jobs
|
||||
@@ -264,7 +264,7 @@
|
||||
- name: RELATED_IMAGE_postgres
|
||||
value: docker.io/centos/postgresql-96-centos7@sha256:796c01fe6051cb5e1d75134d672d0e58f2f3f204597925284ad107edbd03182f
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
- value: quay.io/eclipse/che-keycloak@sha256:251482c4514095581bd7fda61301686419a96408c7570afe7039bed34de915a6
|
||||
+ value: quay.io/eclipse/che-keycloak@sha256:cc03221d497107ca997eccf49ee791532d43f62403fe2ef88990e4d486634d1a
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:1154eea18f1bf3fab9dc76618ebe2f00f7fe03236f2e04bfe172de339ae10796
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
@@ -329,6 +329,8 @@
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f
|
||||
- name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGE______
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b
|
||||
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76
|
||||
- name: RELATED_IMAGE_che_sidecar_bazel_plugin_registry_image_GMXDELRQFVSTGNJSMU3GE___
|
||||
value: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb
|
||||
- name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGAWTOMDGHFSDCNY_
|
||||
@@ -433,6 +435,8 @@
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9
|
||||
- name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGE______
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6
|
||||
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGA______
|
||||
value: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGE______
|
||||
@@ -455,41 +459,43 @@
|
||||
value: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGE______
|
||||
value: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24
|
||||
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117
|
||||
- name: RELATED_IMAGE_mongodb_36_centos7_devfile_registry_image_
|
||||
value: docker.io/centos/mongodb-36-centos7@sha256:d8dc24899d78b296dafbb0959b3fcb6bc48250c1830f338984ad0775aa47fe78
|
||||
- name: RELATED_IMAGE_mysql_57_centos7_devfile_registry_image_
|
||||
value: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-cpp-rhel7@sha256:bf0e0399da729e088621af680eae0c288b6d712f10bcbf75de4aa114ef6c7808
|
||||
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-2.2@sha256:858cb57fa52bb9a9a335c4481b708ed0d7d27536ac8d9c20d96d8076f8e8c26b
|
||||
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-3.1@sha256:af2a94aa686a2273a40c444399715fa14fc5fc665a5fd6167cc7df4b87cf02d9
|
||||
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-golang-1.14@sha256:b6dfdb79945d0966656681100fa44301e98e3e3c10a41fe1ca5c8a8adb7e6d85
|
||||
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-java11-gradle@sha256:4084878a10f297c1a5c73112c218b5e8b72bf1796854e4d8b9adeb2cfbf2a4fb
|
||||
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-java11-maven@sha256:333099edb675f5e196ec77c58bdb444ca21e7de5321e4783eb02e71ad664b9f0
|
||||
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-java8-maven@sha256:1c645a5f02124b4d0ddab072c17f504e4a0357c160bc1208e16fb61846e857b7
|
||||
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-community@sha256:fa22cace873f259a8740f40daedafcaa4604faa58e50807d471403965e0e5110
|
||||
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:2d853277784fec1f9ec3e90719139367c4682fe81daefce3a9311afd8bfe5949
|
||||
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-nodejs8-centos@sha256:bba83fa1257afd579b3e4f8250a3a1a1faf0d47a6ad7a5cb136e916c401398f6
|
||||
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-php-7@sha256:bb8144b79b3652c6ad49d6a1e9e34cb9862c3f58be07447feb8440eab1e51d6e
|
||||
- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-python-3.7@sha256:c04b08539abc6d462562ea83323b5ddddf07d3a5c75fa4f839895540208cc8c3
|
||||
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-quarkus@sha256:31512d6aceac728a3aa422cf4cadf0b66efa645deadb4011c9681c11d964a32c
|
||||
- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-rust-1.39@sha256:249cd722261be74638c08be0e83686e4a444f4d73852c537a62f3b90d0c817c8
|
||||
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:5c41cc656c76872a98d80ca59663b1f45c54252bdb9fbd3ae8c7530a14dc8af4
|
||||
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:d49be66d801d3ee2248166fc04477a4eaf8a9ced03c7c6feb26c9d4326f5a7d2
|
||||
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:59149f5bb98efdddd0bbaa2dbc5b656f469bd1c51bff0eaae24f2eab0e4f9da0
|
||||
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-golang-1.14@sha256:1a8623e7f2b5e1a2ac4308d99554b43a395f7a8fedff949abb0f292a9195e553
|
||||
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-java11-gradle@sha256:cd74e738ad87c88b03c61263a9a5653105ff7824bd2dd93a2205e4cdd259e9e6
|
||||
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-java11-maven@sha256:892b837af658fff273a720566dd7bfadbfc7c51bd70416ce8bc61139a6dc9d71
|
||||
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-java8-maven@sha256:f0559acd4ce3b36b186588f81369da3b9c920d4698a3ecd2d78eb17e5466a0c2
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-community@sha256:d8c7f5f59e6783b6584fb2add09fb87884952106c8c44ef3f79589c62553a97a
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:d82b4d094c9647cae05e7b18c1c0282dc16a5cab35c64d0135d3f6439c4ca501
|
||||
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:31caf7d21aa6a04231ece1660354ebb4de9a99b71016736993fb416b6cb60bd1
|
||||
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-php-7@sha256:458316664a41c3992b2783214a308c1747168cf666dc4f59b6db1ca4d871951e
|
||||
+ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-python-3.7@sha256:e98afbb388f93885b5bff83dfec29f04dec2a04b793c9edf2853a8d50ec713a9
|
||||
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-quarkus@sha256:59525d95705c0e396f13d4a7ecc4562129dc6c4d0ac5158e41595132d3678496
|
||||
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-rust-1.39@sha256:5543aa2f4579e016dedd89e2a855cefbec3d25148dcb004094a2836758353a58
|
||||
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
|
||||
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6
|
||||
- image: quay.io/eclipse/che-operator@sha256:60c8ca56b8ae0ade5d543520ff9402a8344fc77af83b9c56a6d66c7dfd7fe165
|
||||
+ image: quay.io/eclipse/che-operator@sha256:f32bb46276437e8c7508b441cffbd9c8fe6260aa1eeefc66f5d0616dba64d40c
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: che-operator
|
||||
ports:
|
||||
@@ -598,36 +604,36 @@
|
||||
maturity: stable
|
||||
provider:
|
||||
name: Eclipse Foundation
|
||||
- replaces: eclipse-che-preview-kubernetes.v7.18.0
|
||||
- version: 7.18.1
|
||||
+ replaces: eclipse-che-preview-kubernetes.v7.18.1
|
||||
+ version: 7.18.2
|
||||
relatedImages:
|
||||
- - name: che-operator-7.18.1
|
||||
- image: quay.io/eclipse/che-operator@sha256:60c8ca56b8ae0ade5d543520ff9402a8344fc77af83b9c56a6d66c7dfd7fe165
|
||||
- # tag: quay.io/eclipse/che-operator:7.18.1
|
||||
+ - name: che-operator-7.18.2
|
||||
+ image: quay.io/eclipse/che-operator@sha256:f32bb46276437e8c7508b441cffbd9c8fe6260aa1eeefc66f5d0616dba64d40c
|
||||
+ # tag: quay.io/eclipse/che-operator:7.18.2
|
||||
- name: postgresql-96-centos7-9.6
|
||||
image: docker.io/centos/postgresql-96-centos7@sha256:796c01fe6051cb5e1d75134d672d0e58f2f3f204597925284ad107edbd03182f
|
||||
# tag: centos/postgresql-96-centos7:9.6
|
||||
- - name: che-devfile-registry-7.18.1
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:e68e23f0387df30a383456bd5d4807b261adfdd8dfc2ea0fb62fea40949f0168
|
||||
- # tag: quay.io/eclipse/che-devfile-registry:7.18.1
|
||||
+ - name: che-devfile-registry-7.18.2
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:411138bab8a5d8f52e02e16e1506faa8e31b6ac1bc62d2ae479a342c2bcaa864
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry:7.18.2
|
||||
- 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.18.1
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:251482c4514095581bd7fda61301686419a96408c7570afe7039bed34de915a6
|
||||
- # tag: quay.io/eclipse/che-keycloak:7.18.1
|
||||
+ - name: che-keycloak-7.18.2
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:cc03221d497107ca997eccf49ee791532d43f62403fe2ef88990e4d486634d1a
|
||||
+ # tag: quay.io/eclipse/che-keycloak:7.18.2
|
||||
- name: che-plugin-artifacts-broker-v3.3.0
|
||||
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:f8591171ab5ac51e2af37ee9969781097c41a2e9f952de283e084f258411e5ca
|
||||
# tag: quay.io/eclipse/che-plugin-artifacts-broker:v3.3.0
|
||||
- name: che-plugin-metadata-broker-v3.3.0
|
||||
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:1154eea18f1bf3fab9dc76618ebe2f00f7fe03236f2e04bfe172de339ae10796
|
||||
# tag: quay.io/eclipse/che-plugin-metadata-broker:v3.3.0
|
||||
- - name: che-plugin-registry-7.18.1
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:21b58aeac1df88d30c76aa3508f4fa37abe008baa259491d303c624806d63fdc
|
||||
- # tag: quay.io/eclipse/che-plugin-registry:7.18.1
|
||||
- - name: che-server-7.18.1
|
||||
- image: quay.io/eclipse/che-server@sha256:b5838dd2dcc4ec3e19edbce46c8724107496477e9b2b79774efe2650b27b33be
|
||||
- # tag: quay.io/eclipse/che-server:7.18.1
|
||||
+ - name: che-plugin-registry-7.18.2
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:a265b42a9d8e02a2b3f6a2b26de9a2e426633b11c1979951ef920bd8ffa2a79c
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry:7.18.2
|
||||
+ - name: che-server-7.18.2
|
||||
+ image: quay.io/eclipse/che-server@sha256:4216b2c15f9086b1e01c2d67497c846a2fb1834f08bcc83ff94a8caf1ada8785
|
||||
+ # tag: quay.io/eclipse/che-server:7.18.2
|
||||
- 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
|
||||
@@ -694,6 +700,9 @@
|
||||
- name: che-machine-exec-7.18.1
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b
|
||||
# tag: quay.io/eclipse/che-machine-exec:7.18.1
|
||||
+ - name: che-machine-exec-7.18.2
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76
|
||||
+ # tag: quay.io/eclipse/che-machine-exec:7.18.2
|
||||
- name: che-sidecar-bazel-3.2.0-e352e6b
|
||||
image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb
|
||||
# tag: quay.io/eclipse/che-sidecar-bazel:3.2.0-e352e6b
|
||||
@@ -850,6 +859,9 @@
|
||||
- name: che-theia-endpoint-runtime-binary-7.18.1
|
||||
image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6
|
||||
# tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.1
|
||||
+ - name: che-theia-endpoint-runtime-binary-7.18.2
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.2
|
||||
- name: che-theia-7.15.0
|
||||
image: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944
|
||||
# tag: quay.io/eclipse/che-theia:7.15.0
|
||||
@@ -883,54 +895,57 @@
|
||||
- name: che-theia-7.18.1
|
||||
image: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24
|
||||
# tag: quay.io/eclipse/che-theia:7.18.1
|
||||
+ - name: che-theia-7.18.2
|
||||
+ image: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117
|
||||
+ # tag: quay.io/eclipse/che-theia:7.18.2
|
||||
- name: mongodb-36-centos7-
|
||||
image: docker.io/centos/mongodb-36-centos7@sha256:d8dc24899d78b296dafbb0959b3fcb6bc48250c1830f338984ad0775aa47fe78
|
||||
# tag: docker.io/centos/mongodb-36-centos7
|
||||
- name: mysql-57-centos7-
|
||||
image: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
# tag: docker.io/centos/mysql-57-centos7
|
||||
- - name: che-cpp-rhel7-7.18.1
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:bf0e0399da729e088621af680eae0c288b6d712f10bcbf75de4aa114ef6c7808
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7:7.18.1
|
||||
- - name: che-dotnet-2.2-7.18.1
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:858cb57fa52bb9a9a335c4481b708ed0d7d27536ac8d9c20d96d8076f8e8c26b
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2:7.18.1
|
||||
- - name: che-dotnet-3.1-7.18.1
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:af2a94aa686a2273a40c444399715fa14fc5fc665a5fd6167cc7df4b87cf02d9
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1:7.18.1
|
||||
- - name: che-golang-1.14-7.18.1
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:b6dfdb79945d0966656681100fa44301e98e3e3c10a41fe1ca5c8a8adb7e6d85
|
||||
- # tag: quay.io/eclipse/che-golang-1.14:7.18.1
|
||||
- - name: che-java11-gradle-7.18.1
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:4084878a10f297c1a5c73112c218b5e8b72bf1796854e4d8b9adeb2cfbf2a4fb
|
||||
- # tag: quay.io/eclipse/che-java11-gradle:7.18.1
|
||||
- - name: che-java11-maven-7.18.1
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:333099edb675f5e196ec77c58bdb444ca21e7de5321e4783eb02e71ad664b9f0
|
||||
- # tag: quay.io/eclipse/che-java11-maven:7.18.1
|
||||
- - name: che-java8-maven-7.18.1
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:1c645a5f02124b4d0ddab072c17f504e4a0357c160bc1208e16fb61846e857b7
|
||||
- # tag: quay.io/eclipse/che-java8-maven:7.18.1
|
||||
- - name: che-nodejs10-community-7.18.1
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:fa22cace873f259a8740f40daedafcaa4604faa58e50807d471403965e0e5110
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community:7.18.1
|
||||
- - name: che-nodejs10-ubi-7.18.1
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:2d853277784fec1f9ec3e90719139367c4682fe81daefce3a9311afd8bfe5949
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.18.1
|
||||
- - name: che-nodejs8-centos-7.18.1
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:bba83fa1257afd579b3e4f8250a3a1a1faf0d47a6ad7a5cb136e916c401398f6
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos:7.18.1
|
||||
- - name: che-php-7-7.18.1
|
||||
- image: quay.io/eclipse/che-php-7@sha256:bb8144b79b3652c6ad49d6a1e9e34cb9862c3f58be07447feb8440eab1e51d6e
|
||||
- # tag: quay.io/eclipse/che-php-7:7.18.1
|
||||
- - name: che-python-3.7-7.18.1
|
||||
- image: quay.io/eclipse/che-python-3.7@sha256:c04b08539abc6d462562ea83323b5ddddf07d3a5c75fa4f839895540208cc8c3
|
||||
- # tag: quay.io/eclipse/che-python-3.7:7.18.1
|
||||
- - name: che-quarkus-7.18.1
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:31512d6aceac728a3aa422cf4cadf0b66efa645deadb4011c9681c11d964a32c
|
||||
- # tag: quay.io/eclipse/che-quarkus:7.18.1
|
||||
- - name: che-rust-1.39-7.18.1
|
||||
- image: quay.io/eclipse/che-rust-1.39@sha256:249cd722261be74638c08be0e83686e4a444f4d73852c537a62f3b90d0c817c8
|
||||
- # tag: quay.io/eclipse/che-rust-1.39:7.18.1
|
||||
+ - name: che-cpp-rhel7-7.18.2
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:5c41cc656c76872a98d80ca59663b1f45c54252bdb9fbd3ae8c7530a14dc8af4
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.18.2
|
||||
+ - name: che-dotnet-2.2-7.18.2
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:d49be66d801d3ee2248166fc04477a4eaf8a9ced03c7c6feb26c9d4326f5a7d2
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.18.2
|
||||
+ - name: che-dotnet-3.1-7.18.2
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:59149f5bb98efdddd0bbaa2dbc5b656f469bd1c51bff0eaae24f2eab0e4f9da0
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.18.2
|
||||
+ - name: che-golang-1.14-7.18.2
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:1a8623e7f2b5e1a2ac4308d99554b43a395f7a8fedff949abb0f292a9195e553
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14:7.18.2
|
||||
+ - name: che-java11-gradle-7.18.2
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:cd74e738ad87c88b03c61263a9a5653105ff7824bd2dd93a2205e4cdd259e9e6
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle:7.18.2
|
||||
+ - name: che-java11-maven-7.18.2
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:892b837af658fff273a720566dd7bfadbfc7c51bd70416ce8bc61139a6dc9d71
|
||||
+ # tag: quay.io/eclipse/che-java11-maven:7.18.2
|
||||
+ - name: che-java8-maven-7.18.2
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:f0559acd4ce3b36b186588f81369da3b9c920d4698a3ecd2d78eb17e5466a0c2
|
||||
+ # tag: quay.io/eclipse/che-java8-maven:7.18.2
|
||||
+ - name: che-nodejs10-community-7.18.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:d8c7f5f59e6783b6584fb2add09fb87884952106c8c44ef3f79589c62553a97a
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community:7.18.2
|
||||
+ - name: che-nodejs10-ubi-7.18.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:d82b4d094c9647cae05e7b18c1c0282dc16a5cab35c64d0135d3f6439c4ca501
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.18.2
|
||||
+ - name: che-nodejs8-centos-7.18.2
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:31caf7d21aa6a04231ece1660354ebb4de9a99b71016736993fb416b6cb60bd1
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.18.2
|
||||
+ - name: che-php-7-7.18.2
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:458316664a41c3992b2783214a308c1747168cf666dc4f59b6db1ca4d871951e
|
||||
+ # tag: quay.io/eclipse/che-php-7:7.18.2
|
||||
+ - name: che-python-3.7-7.18.2
|
||||
+ image: quay.io/eclipse/che-python-3.7@sha256:e98afbb388f93885b5bff83dfec29f04dec2a04b793c9edf2853a8d50ec713a9
|
||||
+ # tag: quay.io/eclipse/che-python-3.7:7.18.2
|
||||
+ - name: che-quarkus-7.18.2
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:59525d95705c0e396f13d4a7ecc4562129dc6c4d0ac5158e41595132d3678496
|
||||
+ # tag: quay.io/eclipse/che-quarkus:7.18.2
|
||||
+ - name: che-rust-1.39-7.18.2
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:5543aa2f4579e016dedd89e2a855cefbec3d25148dcb004094a2836758353a58
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39:7.18.2
|
||||
- name: ubi-minimal-
|
||||
image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6
|
||||
# tag: registry.access.redhat.com/ubi8/ubi-minimal
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
channels:
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v9.9.9-nightly.1598450051
|
||||
name: nightly
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v7.18.1
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v7.18.2
|
||||
name: stable
|
||||
defaultChannel: stable
|
||||
packageName: eclipse-che-preview-kubernetes
|
||||
|
|
|
|||
|
|
@ -0,0 +1,569 @@
|
|||
#
|
||||
# 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:
|
||||
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/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/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
|
||||
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
|
||||
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
|
||||
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. Enabled by default on OpenShift.
|
||||
This will allow 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:
|
||||
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
|
||||
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`
|
||||
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
|
||||
tlsSecretName:
|
||||
description: Name of a secret that will be used to setup ingress
|
||||
TLS termination if TLS is enabled. See also the `tlsSupport` field.
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
devfileRegistryMemoryLimit:
|
||||
description: Overrides the memory limit used in the Devfile registry
|
||||
deployment. Defaults to 256Mi.
|
||||
type: string
|
||||
devfileRegistryMemoryRequest:
|
||||
description: Overrides the memory request used in the Devfile registry
|
||||
deployment. Defaults to 16Mi.
|
||||
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
|
||||
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.
|
||||
Use `|`` 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
|
||||
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 defaut container image provided by the operator.
|
||||
type: string
|
||||
pluginRegistryMemoryLimit:
|
||||
description: Overrides the memory limit used in the Plugin registry
|
||||
deployment. Defaults to 256Mi.
|
||||
type: string
|
||||
pluginRegistryMemoryRequest:
|
||||
description: Overrides the memory request used in the Plugin registry
|
||||
deployment. Defaults to 16Mi.
|
||||
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
|
||||
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
|
||||
serverMemoryLimit:
|
||||
description: Overrides the memory limit used in the Che server deployment.
|
||||
Defaults to 1Gi.
|
||||
type: string
|
||||
serverMemoryRequest:
|
||||
description: Overrides the memory request used in the Che server
|
||||
deployment. 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
|
||||
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
|
||||
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
|
||||
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
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,456 @@
|
|||
--- /root/payload/che/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.18.1/eclipse-che-preview-openshift.v7.18.1.clusterserviceversion.yaml 2020-09-10 16:08:56.836577013 +0100
|
||||
+++ /root/payload/che/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.18.2/eclipse-che-preview-openshift.v7.18.2.clusterserviceversion.yaml 2020-09-10 16:16:38.308585153 +0100
|
||||
@@ -48,14 +48,14 @@
|
||||
capabilities: Seamless Upgrades
|
||||
categories: Developer Tools, OpenShift Optional
|
||||
certified: "false"
|
||||
- containerImage: quay.io/eclipse/che-operator@sha256:60c8ca56b8ae0ade5d543520ff9402a8344fc77af83b9c56a6d66c7dfd7fe165
|
||||
- createdAt: "2020-09-09T08:37:39Z"
|
||||
+ containerImage: quay.io/eclipse/che-operator@sha256:f32bb46276437e8c7508b441cffbd9c8fe6260aa1eeefc66f5d0616dba64d40c
|
||||
+ createdAt: "2020-09-10T15:14:45Z"
|
||||
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.18.1
|
||||
+ name: eclipse-che-preview-openshift.v7.18.2
|
||||
namespace: placeholder
|
||||
spec:
|
||||
apiservicedefinitions: {}
|
||||
@@ -279,19 +279,19 @@
|
||||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
- value: 7.18.1
|
||||
+ value: 7.18.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
- value: quay.io/eclipse/che-server@sha256:b5838dd2dcc4ec3e19edbce46c8724107496477e9b2b79774efe2650b27b33be
|
||||
+ value: quay.io/eclipse/che-server@sha256:4216b2c15f9086b1e01c2d67497c846a2fb1834f08bcc83ff94a8caf1ada8785
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
- value: quay.io/eclipse/che-plugin-registry@sha256:21b58aeac1df88d30c76aa3508f4fa37abe008baa259491d303c624806d63fdc
|
||||
+ value: quay.io/eclipse/che-plugin-registry@sha256:a265b42a9d8e02a2b3f6a2b26de9a2e426633b11c1979951ef920bd8ffa2a79c
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
- value: quay.io/eclipse/che-devfile-registry@sha256:e68e23f0387df30a383456bd5d4807b261adfdd8dfc2ea0fb62fea40949f0168
|
||||
+ value: quay.io/eclipse/che-devfile-registry@sha256:411138bab8a5d8f52e02e16e1506faa8e31b6ac1bc62d2ae479a342c2bcaa864
|
||||
- name: RELATED_IMAGE_pvc_jobs
|
||||
value: registry.access.redhat.com/ubi8-minimal@sha256:372622021a90893d9e25c298e045c804388c7666f3e756cd48f75d20172d9e55
|
||||
- name: RELATED_IMAGE_postgres
|
||||
value: docker.io/centos/postgresql-96-centos7@sha256:796c01fe6051cb5e1d75134d672d0e58f2f3f204597925284ad107edbd03182f
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
- value: quay.io/eclipse/che-keycloak@sha256:251482c4514095581bd7fda61301686419a96408c7570afe7039bed34de915a6
|
||||
+ value: quay.io/eclipse/che-keycloak@sha256:cc03221d497107ca997eccf49ee791532d43f62403fe2ef88990e4d486634d1a
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:1154eea18f1bf3fab9dc76618ebe2f00f7fe03236f2e04bfe172de339ae10796
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
@@ -356,6 +356,8 @@
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f
|
||||
- name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGE______
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b
|
||||
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76
|
||||
- name: RELATED_IMAGE_che_sidecar_bazel_plugin_registry_image_GMXDELRQFVSTGNJSMU3GE___
|
||||
value: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb
|
||||
- name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGAWTOMDGHFSDCNY_
|
||||
@@ -460,6 +462,8 @@
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9
|
||||
- name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGE______
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6
|
||||
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGA______
|
||||
value: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGE______
|
||||
@@ -482,41 +486,43 @@
|
||||
value: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGE______
|
||||
value: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24
|
||||
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117
|
||||
- name: RELATED_IMAGE_mongodb_36_centos7_devfile_registry_image_
|
||||
value: docker.io/centos/mongodb-36-centos7@sha256:d8dc24899d78b296dafbb0959b3fcb6bc48250c1830f338984ad0775aa47fe78
|
||||
- name: RELATED_IMAGE_mysql_57_centos7_devfile_registry_image_
|
||||
value: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-cpp-rhel7@sha256:bf0e0399da729e088621af680eae0c288b6d712f10bcbf75de4aa114ef6c7808
|
||||
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-2.2@sha256:858cb57fa52bb9a9a335c4481b708ed0d7d27536ac8d9c20d96d8076f8e8c26b
|
||||
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-3.1@sha256:af2a94aa686a2273a40c444399715fa14fc5fc665a5fd6167cc7df4b87cf02d9
|
||||
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-golang-1.14@sha256:b6dfdb79945d0966656681100fa44301e98e3e3c10a41fe1ca5c8a8adb7e6d85
|
||||
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-java11-gradle@sha256:4084878a10f297c1a5c73112c218b5e8b72bf1796854e4d8b9adeb2cfbf2a4fb
|
||||
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-java11-maven@sha256:333099edb675f5e196ec77c58bdb444ca21e7de5321e4783eb02e71ad664b9f0
|
||||
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-java8-maven@sha256:1c645a5f02124b4d0ddab072c17f504e4a0357c160bc1208e16fb61846e857b7
|
||||
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-community@sha256:fa22cace873f259a8740f40daedafcaa4604faa58e50807d471403965e0e5110
|
||||
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:2d853277784fec1f9ec3e90719139367c4682fe81daefce3a9311afd8bfe5949
|
||||
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-nodejs8-centos@sha256:bba83fa1257afd579b3e4f8250a3a1a1faf0d47a6ad7a5cb136e916c401398f6
|
||||
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-php-7@sha256:bb8144b79b3652c6ad49d6a1e9e34cb9862c3f58be07447feb8440eab1e51d6e
|
||||
- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-python-3.7@sha256:c04b08539abc6d462562ea83323b5ddddf07d3a5c75fa4f839895540208cc8c3
|
||||
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-quarkus@sha256:31512d6aceac728a3aa422cf4cadf0b66efa645deadb4011c9681c11d964a32c
|
||||
- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCOBOGE______
|
||||
- value: quay.io/eclipse/che-rust-1.39@sha256:249cd722261be74638c08be0e83686e4a444f4d73852c537a62f3b90d0c817c8
|
||||
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:5c41cc656c76872a98d80ca59663b1f45c54252bdb9fbd3ae8c7530a14dc8af4
|
||||
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:d49be66d801d3ee2248166fc04477a4eaf8a9ced03c7c6feb26c9d4326f5a7d2
|
||||
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:59149f5bb98efdddd0bbaa2dbc5b656f469bd1c51bff0eaae24f2eab0e4f9da0
|
||||
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-golang-1.14@sha256:1a8623e7f2b5e1a2ac4308d99554b43a395f7a8fedff949abb0f292a9195e553
|
||||
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-java11-gradle@sha256:cd74e738ad87c88b03c61263a9a5653105ff7824bd2dd93a2205e4cdd259e9e6
|
||||
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-java11-maven@sha256:892b837af658fff273a720566dd7bfadbfc7c51bd70416ce8bc61139a6dc9d71
|
||||
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-java8-maven@sha256:f0559acd4ce3b36b186588f81369da3b9c920d4698a3ecd2d78eb17e5466a0c2
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-community@sha256:d8c7f5f59e6783b6584fb2add09fb87884952106c8c44ef3f79589c62553a97a
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:d82b4d094c9647cae05e7b18c1c0282dc16a5cab35c64d0135d3f6439c4ca501
|
||||
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:31caf7d21aa6a04231ece1660354ebb4de9a99b71016736993fb416b6cb60bd1
|
||||
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-php-7@sha256:458316664a41c3992b2783214a308c1747168cf666dc4f59b6db1ca4d871951e
|
||||
+ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-python-3.7@sha256:e98afbb388f93885b5bff83dfec29f04dec2a04b793c9edf2853a8d50ec713a9
|
||||
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-quarkus@sha256:59525d95705c0e396f13d4a7ecc4562129dc6c4d0ac5158e41595132d3678496
|
||||
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCOBOGI______
|
||||
+ value: quay.io/eclipse/che-rust-1.39@sha256:5543aa2f4579e016dedd89e2a855cefbec3d25148dcb004094a2836758353a58
|
||||
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
|
||||
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6
|
||||
- image: quay.io/eclipse/che-operator@sha256:60c8ca56b8ae0ade5d543520ff9402a8344fc77af83b9c56a6d66c7dfd7fe165
|
||||
+ image: quay.io/eclipse/che-operator@sha256:f32bb46276437e8c7508b441cffbd9c8fe6260aa1eeefc66f5d0616dba64d40c
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: che-operator
|
||||
ports:
|
||||
@@ -631,12 +637,12 @@
|
||||
maturity: stable
|
||||
provider:
|
||||
name: Eclipse Foundation
|
||||
- replaces: eclipse-che-preview-openshift.v7.18.0
|
||||
- version: 7.18.1
|
||||
+ replaces: eclipse-che-preview-openshift.v7.18.1
|
||||
+ version: 7.18.2
|
||||
relatedImages:
|
||||
- - name: che-operator-7.18.1
|
||||
- image: quay.io/eclipse/che-operator@sha256:60c8ca56b8ae0ade5d543520ff9402a8344fc77af83b9c56a6d66c7dfd7fe165
|
||||
- # tag: quay.io/eclipse/che-operator:7.18.1
|
||||
+ - name: che-operator-7.18.2
|
||||
+ image: quay.io/eclipse/che-operator@sha256:f32bb46276437e8c7508b441cffbd9c8fe6260aa1eeefc66f5d0616dba64d40c
|
||||
+ # tag: quay.io/eclipse/che-operator:7.18.2
|
||||
- name: postgresql-96-centos7-9.6
|
||||
image: docker.io/centos/postgresql-96-centos7@sha256:796c01fe6051cb5e1d75134d672d0e58f2f3f204597925284ad107edbd03182f
|
||||
# tag: centos/postgresql-96-centos7:9.6
|
||||
@@ -676,45 +682,48 @@
|
||||
- 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:bf0e0399da729e088621af680eae0c288b6d712f10bcbf75de4aa114ef6c7808
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:bf0e0399da729e088621af680eae0c288b6d712f10bcbf75de4aa114ef6c7808
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7@sha256:bf0e0399da729e088621af680eae0c288b6d712f10bcbf75de4aa114ef6c7808
|
||||
- - name: che-devfile-registry-7.18.1
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:e68e23f0387df30a383456bd5d4807b261adfdd8dfc2ea0fb62fea40949f0168
|
||||
- # tag: quay.io/eclipse/che-devfile-registry:7.18.1
|
||||
- - name: che-devfile-registry-@sha256:e68e23f0387df30a383456bd5d4807b261adfdd8dfc2ea0fb62fea40949f0168
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:e68e23f0387df30a383456bd5d4807b261adfdd8dfc2ea0fb62fea40949f0168
|
||||
- # tag: quay.io/eclipse/che-devfile-registry@sha256:e68e23f0387df30a383456bd5d4807b261adfdd8dfc2ea0fb62fea40949f0168
|
||||
- - name: che-dotnet-2.2-@sha256:858cb57fa52bb9a9a335c4481b708ed0d7d27536ac8d9c20d96d8076f8e8c26b
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:858cb57fa52bb9a9a335c4481b708ed0d7d27536ac8d9c20d96d8076f8e8c26b
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2@sha256:858cb57fa52bb9a9a335c4481b708ed0d7d27536ac8d9c20d96d8076f8e8c26b
|
||||
- - name: che-dotnet-3.1-@sha256:af2a94aa686a2273a40c444399715fa14fc5fc665a5fd6167cc7df4b87cf02d9
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:af2a94aa686a2273a40c444399715fa14fc5fc665a5fd6167cc7df4b87cf02d9
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1@sha256:af2a94aa686a2273a40c444399715fa14fc5fc665a5fd6167cc7df4b87cf02d9
|
||||
- - name: che-golang-1.14-@sha256:b6dfdb79945d0966656681100fa44301e98e3e3c10a41fe1ca5c8a8adb7e6d85
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:b6dfdb79945d0966656681100fa44301e98e3e3c10a41fe1ca5c8a8adb7e6d85
|
||||
- # tag: quay.io/eclipse/che-golang-1.14@sha256:b6dfdb79945d0966656681100fa44301e98e3e3c10a41fe1ca5c8a8adb7e6d85
|
||||
- - name: che-java11-gradle-@sha256:4084878a10f297c1a5c73112c218b5e8b72bf1796854e4d8b9adeb2cfbf2a4fb
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:4084878a10f297c1a5c73112c218b5e8b72bf1796854e4d8b9adeb2cfbf2a4fb
|
||||
- # tag: quay.io/eclipse/che-java11-gradle@sha256:4084878a10f297c1a5c73112c218b5e8b72bf1796854e4d8b9adeb2cfbf2a4fb
|
||||
- - name: che-java11-maven-@sha256:333099edb675f5e196ec77c58bdb444ca21e7de5321e4783eb02e71ad664b9f0
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:333099edb675f5e196ec77c58bdb444ca21e7de5321e4783eb02e71ad664b9f0
|
||||
- # tag: quay.io/eclipse/che-java11-maven@sha256:333099edb675f5e196ec77c58bdb444ca21e7de5321e4783eb02e71ad664b9f0
|
||||
- - name: che-java8-maven-@sha256:1c645a5f02124b4d0ddab072c17f504e4a0357c160bc1208e16fb61846e857b7
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:1c645a5f02124b4d0ddab072c17f504e4a0357c160bc1208e16fb61846e857b7
|
||||
- # tag: quay.io/eclipse/che-java8-maven@sha256:1c645a5f02124b4d0ddab072c17f504e4a0357c160bc1208e16fb61846e857b7
|
||||
+ - name: che-cpp-rhel7-@sha256:5c41cc656c76872a98d80ca59663b1f45c54252bdb9fbd3ae8c7530a14dc8af4
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:5c41cc656c76872a98d80ca59663b1f45c54252bdb9fbd3ae8c7530a14dc8af4
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7@sha256:5c41cc656c76872a98d80ca59663b1f45c54252bdb9fbd3ae8c7530a14dc8af4
|
||||
+ - name: che-devfile-registry-7.18.2
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:411138bab8a5d8f52e02e16e1506faa8e31b6ac1bc62d2ae479a342c2bcaa864
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry:7.18.2
|
||||
+ - name: che-devfile-registry-@sha256:411138bab8a5d8f52e02e16e1506faa8e31b6ac1bc62d2ae479a342c2bcaa864
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:411138bab8a5d8f52e02e16e1506faa8e31b6ac1bc62d2ae479a342c2bcaa864
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry@sha256:411138bab8a5d8f52e02e16e1506faa8e31b6ac1bc62d2ae479a342c2bcaa864
|
||||
+ - name: che-dotnet-2.2-@sha256:d49be66d801d3ee2248166fc04477a4eaf8a9ced03c7c6feb26c9d4326f5a7d2
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:d49be66d801d3ee2248166fc04477a4eaf8a9ced03c7c6feb26c9d4326f5a7d2
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2@sha256:d49be66d801d3ee2248166fc04477a4eaf8a9ced03c7c6feb26c9d4326f5a7d2
|
||||
+ - name: che-dotnet-3.1-@sha256:59149f5bb98efdddd0bbaa2dbc5b656f469bd1c51bff0eaae24f2eab0e4f9da0
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:59149f5bb98efdddd0bbaa2dbc5b656f469bd1c51bff0eaae24f2eab0e4f9da0
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1@sha256:59149f5bb98efdddd0bbaa2dbc5b656f469bd1c51bff0eaae24f2eab0e4f9da0
|
||||
+ - name: che-golang-1.14-@sha256:1a8623e7f2b5e1a2ac4308d99554b43a395f7a8fedff949abb0f292a9195e553
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:1a8623e7f2b5e1a2ac4308d99554b43a395f7a8fedff949abb0f292a9195e553
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14@sha256:1a8623e7f2b5e1a2ac4308d99554b43a395f7a8fedff949abb0f292a9195e553
|
||||
+ - name: che-java11-gradle-@sha256:cd74e738ad87c88b03c61263a9a5653105ff7824bd2dd93a2205e4cdd259e9e6
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:cd74e738ad87c88b03c61263a9a5653105ff7824bd2dd93a2205e4cdd259e9e6
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle@sha256:cd74e738ad87c88b03c61263a9a5653105ff7824bd2dd93a2205e4cdd259e9e6
|
||||
+ - name: che-java11-maven-@sha256:892b837af658fff273a720566dd7bfadbfc7c51bd70416ce8bc61139a6dc9d71
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:892b837af658fff273a720566dd7bfadbfc7c51bd70416ce8bc61139a6dc9d71
|
||||
+ # tag: quay.io/eclipse/che-java11-maven@sha256:892b837af658fff273a720566dd7bfadbfc7c51bd70416ce8bc61139a6dc9d71
|
||||
+ - name: che-java8-maven-@sha256:f0559acd4ce3b36b186588f81369da3b9c920d4698a3ecd2d78eb17e5466a0c2
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:f0559acd4ce3b36b186588f81369da3b9c920d4698a3ecd2d78eb17e5466a0c2
|
||||
+ # tag: quay.io/eclipse/che-java8-maven@sha256:f0559acd4ce3b36b186588f81369da3b9c920d4698a3ecd2d78eb17e5466a0c2
|
||||
- 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.18.1
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:251482c4514095581bd7fda61301686419a96408c7570afe7039bed34de915a6
|
||||
- # tag: quay.io/eclipse/che-keycloak:7.18.1
|
||||
- - name: che-keycloak-@sha256:251482c4514095581bd7fda61301686419a96408c7570afe7039bed34de915a6
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:251482c4514095581bd7fda61301686419a96408c7570afe7039bed34de915a6
|
||||
- # tag: quay.io/eclipse/che-keycloak@sha256:251482c4514095581bd7fda61301686419a96408c7570afe7039bed34de915a6
|
||||
+ - name: che-keycloak-7.18.2
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:cc03221d497107ca997eccf49ee791532d43f62403fe2ef88990e4d486634d1a
|
||||
+ # tag: quay.io/eclipse/che-keycloak:7.18.2
|
||||
+ - name: che-keycloak-@sha256:cc03221d497107ca997eccf49ee791532d43f62403fe2ef88990e4d486634d1a
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:cc03221d497107ca997eccf49ee791532d43f62403fe2ef88990e4d486634d1a
|
||||
+ # tag: quay.io/eclipse/che-keycloak@sha256:cc03221d497107ca997eccf49ee791532d43f62403fe2ef88990e4d486634d1a
|
||||
+ - name: che-machine-exec-@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76
|
||||
+ # tag: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76
|
||||
- name: che-machine-exec-@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583
|
||||
# tag: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583
|
||||
@@ -748,18 +757,18 @@
|
||||
- name: che-machine-exec-@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06
|
||||
# tag: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06
|
||||
- - name: che-nodejs10-community-@sha256:fa22cace873f259a8740f40daedafcaa4604faa58e50807d471403965e0e5110
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:fa22cace873f259a8740f40daedafcaa4604faa58e50807d471403965e0e5110
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community@sha256:fa22cace873f259a8740f40daedafcaa4604faa58e50807d471403965e0e5110
|
||||
- - name: che-nodejs10-ubi-@sha256:2d853277784fec1f9ec3e90719139367c4682fe81daefce3a9311afd8bfe5949
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:2d853277784fec1f9ec3e90719139367c4682fe81daefce3a9311afd8bfe5949
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:2d853277784fec1f9ec3e90719139367c4682fe81daefce3a9311afd8bfe5949
|
||||
- - name: che-nodejs8-centos-@sha256:bba83fa1257afd579b3e4f8250a3a1a1faf0d47a6ad7a5cb136e916c401398f6
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:bba83fa1257afd579b3e4f8250a3a1a1faf0d47a6ad7a5cb136e916c401398f6
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos@sha256:bba83fa1257afd579b3e4f8250a3a1a1faf0d47a6ad7a5cb136e916c401398f6
|
||||
- - name: che-php-7-@sha256:bb8144b79b3652c6ad49d6a1e9e34cb9862c3f58be07447feb8440eab1e51d6e
|
||||
- image: quay.io/eclipse/che-php-7@sha256:bb8144b79b3652c6ad49d6a1e9e34cb9862c3f58be07447feb8440eab1e51d6e
|
||||
- # tag: quay.io/eclipse/che-php-7@sha256:bb8144b79b3652c6ad49d6a1e9e34cb9862c3f58be07447feb8440eab1e51d6e
|
||||
+ - name: che-nodejs10-community-@sha256:d8c7f5f59e6783b6584fb2add09fb87884952106c8c44ef3f79589c62553a97a
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:d8c7f5f59e6783b6584fb2add09fb87884952106c8c44ef3f79589c62553a97a
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community@sha256:d8c7f5f59e6783b6584fb2add09fb87884952106c8c44ef3f79589c62553a97a
|
||||
+ - name: che-nodejs10-ubi-@sha256:d82b4d094c9647cae05e7b18c1c0282dc16a5cab35c64d0135d3f6439c4ca501
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:d82b4d094c9647cae05e7b18c1c0282dc16a5cab35c64d0135d3f6439c4ca501
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:d82b4d094c9647cae05e7b18c1c0282dc16a5cab35c64d0135d3f6439c4ca501
|
||||
+ - name: che-nodejs8-centos-@sha256:31caf7d21aa6a04231ece1660354ebb4de9a99b71016736993fb416b6cb60bd1
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:31caf7d21aa6a04231ece1660354ebb4de9a99b71016736993fb416b6cb60bd1
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos@sha256:31caf7d21aa6a04231ece1660354ebb4de9a99b71016736993fb416b6cb60bd1
|
||||
+ - name: che-php-7-@sha256:458316664a41c3992b2783214a308c1747168cf666dc4f59b6db1ca4d871951e
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:458316664a41c3992b2783214a308c1747168cf666dc4f59b6db1ca4d871951e
|
||||
+ # tag: quay.io/eclipse/che-php-7@sha256:458316664a41c3992b2783214a308c1747168cf666dc4f59b6db1ca4d871951e
|
||||
- name: che-plugin-artifacts-broker-@sha256:f8591171ab5ac51e2af37ee9969781097c41a2e9f952de283e084f258411e5ca
|
||||
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:f8591171ab5ac51e2af37ee9969781097c41a2e9f952de283e084f258411e5ca
|
||||
# tag: quay.io/eclipse/che-plugin-artifacts-broker@sha256:f8591171ab5ac51e2af37ee9969781097c41a2e9f952de283e084f258411e5ca
|
||||
@@ -772,27 +781,27 @@
|
||||
- name: che-plugin-metadata-broker-v3.3.0
|
||||
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:1154eea18f1bf3fab9dc76618ebe2f00f7fe03236f2e04bfe172de339ae10796
|
||||
# tag: quay.io/eclipse/che-plugin-metadata-broker:v3.3.0
|
||||
- - name: che-plugin-registry-7.18.1
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:21b58aeac1df88d30c76aa3508f4fa37abe008baa259491d303c624806d63fdc
|
||||
- # tag: quay.io/eclipse/che-plugin-registry:7.18.1
|
||||
- - name: che-plugin-registry-@sha256:21b58aeac1df88d30c76aa3508f4fa37abe008baa259491d303c624806d63fdc
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:21b58aeac1df88d30c76aa3508f4fa37abe008baa259491d303c624806d63fdc
|
||||
- # tag: quay.io/eclipse/che-plugin-registry@sha256:21b58aeac1df88d30c76aa3508f4fa37abe008baa259491d303c624806d63fdc
|
||||
- - name: che-python-3.7-@sha256:c04b08539abc6d462562ea83323b5ddddf07d3a5c75fa4f839895540208cc8c3
|
||||
- image: quay.io/eclipse/che-python-3.7@sha256:c04b08539abc6d462562ea83323b5ddddf07d3a5c75fa4f839895540208cc8c3
|
||||
- # tag: quay.io/eclipse/che-python-3.7@sha256:c04b08539abc6d462562ea83323b5ddddf07d3a5c75fa4f839895540208cc8c3
|
||||
- - name: che-quarkus-@sha256:31512d6aceac728a3aa422cf4cadf0b66efa645deadb4011c9681c11d964a32c
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:31512d6aceac728a3aa422cf4cadf0b66efa645deadb4011c9681c11d964a32c
|
||||
- # tag: quay.io/eclipse/che-quarkus@sha256:31512d6aceac728a3aa422cf4cadf0b66efa645deadb4011c9681c11d964a32c
|
||||
- - name: che-rust-1.39-@sha256:249cd722261be74638c08be0e83686e4a444f4d73852c537a62f3b90d0c817c8
|
||||
- image: quay.io/eclipse/che-rust-1.39@sha256:249cd722261be74638c08be0e83686e4a444f4d73852c537a62f3b90d0c817c8
|
||||
- # tag: quay.io/eclipse/che-rust-1.39@sha256:249cd722261be74638c08be0e83686e4a444f4d73852c537a62f3b90d0c817c8
|
||||
- - name: che-server-7.18.1
|
||||
- image: quay.io/eclipse/che-server@sha256:b5838dd2dcc4ec3e19edbce46c8724107496477e9b2b79774efe2650b27b33be
|
||||
- # tag: quay.io/eclipse/che-server:7.18.1
|
||||
- - name: che-server-@sha256:b5838dd2dcc4ec3e19edbce46c8724107496477e9b2b79774efe2650b27b33be
|
||||
- image: quay.io/eclipse/che-server@sha256:b5838dd2dcc4ec3e19edbce46c8724107496477e9b2b79774efe2650b27b33be
|
||||
- # tag: quay.io/eclipse/che-server@sha256:b5838dd2dcc4ec3e19edbce46c8724107496477e9b2b79774efe2650b27b33be
|
||||
+ - name: che-plugin-registry-7.18.2
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:a265b42a9d8e02a2b3f6a2b26de9a2e426633b11c1979951ef920bd8ffa2a79c
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry:7.18.2
|
||||
+ - name: che-plugin-registry-@sha256:a265b42a9d8e02a2b3f6a2b26de9a2e426633b11c1979951ef920bd8ffa2a79c
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:a265b42a9d8e02a2b3f6a2b26de9a2e426633b11c1979951ef920bd8ffa2a79c
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry@sha256:a265b42a9d8e02a2b3f6a2b26de9a2e426633b11c1979951ef920bd8ffa2a79c
|
||||
+ - name: che-python-3.7-@sha256:e98afbb388f93885b5bff83dfec29f04dec2a04b793c9edf2853a8d50ec713a9
|
||||
+ image: quay.io/eclipse/che-python-3.7@sha256:e98afbb388f93885b5bff83dfec29f04dec2a04b793c9edf2853a8d50ec713a9
|
||||
+ # tag: quay.io/eclipse/che-python-3.7@sha256:e98afbb388f93885b5bff83dfec29f04dec2a04b793c9edf2853a8d50ec713a9
|
||||
+ - name: che-quarkus-@sha256:59525d95705c0e396f13d4a7ecc4562129dc6c4d0ac5158e41595132d3678496
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:59525d95705c0e396f13d4a7ecc4562129dc6c4d0ac5158e41595132d3678496
|
||||
+ # tag: quay.io/eclipse/che-quarkus@sha256:59525d95705c0e396f13d4a7ecc4562129dc6c4d0ac5158e41595132d3678496
|
||||
+ - name: che-rust-1.39-@sha256:5543aa2f4579e016dedd89e2a855cefbec3d25148dcb004094a2836758353a58
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:5543aa2f4579e016dedd89e2a855cefbec3d25148dcb004094a2836758353a58
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39@sha256:5543aa2f4579e016dedd89e2a855cefbec3d25148dcb004094a2836758353a58
|
||||
+ - name: che-server-7.18.2
|
||||
+ image: quay.io/eclipse/che-server@sha256:4216b2c15f9086b1e01c2d67497c846a2fb1834f08bcc83ff94a8caf1ada8785
|
||||
+ # tag: quay.io/eclipse/che-server:7.18.2
|
||||
+ - name: che-server-@sha256:4216b2c15f9086b1e01c2d67497c846a2fb1834f08bcc83ff94a8caf1ada8785
|
||||
+ image: quay.io/eclipse/che-server@sha256:4216b2c15f9086b1e01c2d67497c846a2fb1834f08bcc83ff94a8caf1ada8785
|
||||
+ # tag: quay.io/eclipse/che-server@sha256:4216b2c15f9086b1e01c2d67497c846a2fb1834f08bcc83ff94a8caf1ada8785
|
||||
- name: che-sidecar-bazel-@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb
|
||||
image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb
|
||||
# tag: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb
|
||||
@@ -940,6 +949,9 @@
|
||||
- name: che-theia-endpoint-runtime-binary-@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0
|
||||
image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0
|
||||
# tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0
|
||||
+ - name: che-theia-endpoint-runtime-binary-@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1
|
||||
- name: che-theia-endpoint-runtime-binary-@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6
|
||||
image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6
|
||||
# tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6
|
||||
@@ -952,6 +964,9 @@
|
||||
- name: che-theia-@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad
|
||||
image: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad
|
||||
# tag: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad
|
||||
+ - name: che-theia-@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117
|
||||
+ image: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117
|
||||
+ # tag: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117
|
||||
- name: che-theia-@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24
|
||||
image: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24
|
||||
# tag: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24
|
||||
@@ -1054,6 +1069,9 @@
|
||||
- name: che-machine-exec-7.18.1
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b
|
||||
# tag: quay.io/eclipse/che-machine-exec:7.18.1
|
||||
+ - name: che-machine-exec-7.18.2
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76
|
||||
+ # tag: quay.io/eclipse/che-machine-exec:7.18.2
|
||||
- name: che-sidecar-bazel-3.2.0-e352e6b
|
||||
image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb
|
||||
# tag: quay.io/eclipse/che-sidecar-bazel:3.2.0-e352e6b
|
||||
@@ -1210,6 +1228,9 @@
|
||||
- name: che-theia-endpoint-runtime-binary-7.18.1
|
||||
image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6
|
||||
# tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.1
|
||||
+ - name: che-theia-endpoint-runtime-binary-7.18.2
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.2
|
||||
- name: che-theia-7.15.0
|
||||
image: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944
|
||||
# tag: quay.io/eclipse/che-theia:7.15.0
|
||||
@@ -1243,54 +1264,57 @@
|
||||
- name: che-theia-7.18.1
|
||||
image: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24
|
||||
# tag: quay.io/eclipse/che-theia:7.18.1
|
||||
+ - name: che-theia-7.18.2
|
||||
+ image: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117
|
||||
+ # tag: quay.io/eclipse/che-theia:7.18.2
|
||||
- name: mongodb-36-centos7-
|
||||
image: docker.io/centos/mongodb-36-centos7@sha256:d8dc24899d78b296dafbb0959b3fcb6bc48250c1830f338984ad0775aa47fe78
|
||||
# tag: docker.io/centos/mongodb-36-centos7
|
||||
- name: mysql-57-centos7-
|
||||
image: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
# tag: docker.io/centos/mysql-57-centos7
|
||||
- - name: che-cpp-rhel7-7.18.1
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:bf0e0399da729e088621af680eae0c288b6d712f10bcbf75de4aa114ef6c7808
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7:7.18.1
|
||||
- - name: che-dotnet-2.2-7.18.1
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:858cb57fa52bb9a9a335c4481b708ed0d7d27536ac8d9c20d96d8076f8e8c26b
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2:7.18.1
|
||||
- - name: che-dotnet-3.1-7.18.1
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:af2a94aa686a2273a40c444399715fa14fc5fc665a5fd6167cc7df4b87cf02d9
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1:7.18.1
|
||||
- - name: che-golang-1.14-7.18.1
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:b6dfdb79945d0966656681100fa44301e98e3e3c10a41fe1ca5c8a8adb7e6d85
|
||||
- # tag: quay.io/eclipse/che-golang-1.14:7.18.1
|
||||
- - name: che-java11-gradle-7.18.1
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:4084878a10f297c1a5c73112c218b5e8b72bf1796854e4d8b9adeb2cfbf2a4fb
|
||||
- # tag: quay.io/eclipse/che-java11-gradle:7.18.1
|
||||
- - name: che-java11-maven-7.18.1
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:333099edb675f5e196ec77c58bdb444ca21e7de5321e4783eb02e71ad664b9f0
|
||||
- # tag: quay.io/eclipse/che-java11-maven:7.18.1
|
||||
- - name: che-java8-maven-7.18.1
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:1c645a5f02124b4d0ddab072c17f504e4a0357c160bc1208e16fb61846e857b7
|
||||
- # tag: quay.io/eclipse/che-java8-maven:7.18.1
|
||||
- - name: che-nodejs10-community-7.18.1
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:fa22cace873f259a8740f40daedafcaa4604faa58e50807d471403965e0e5110
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community:7.18.1
|
||||
- - name: che-nodejs10-ubi-7.18.1
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:2d853277784fec1f9ec3e90719139367c4682fe81daefce3a9311afd8bfe5949
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.18.1
|
||||
- - name: che-nodejs8-centos-7.18.1
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:bba83fa1257afd579b3e4f8250a3a1a1faf0d47a6ad7a5cb136e916c401398f6
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos:7.18.1
|
||||
- - name: che-php-7-7.18.1
|
||||
- image: quay.io/eclipse/che-php-7@sha256:bb8144b79b3652c6ad49d6a1e9e34cb9862c3f58be07447feb8440eab1e51d6e
|
||||
- # tag: quay.io/eclipse/che-php-7:7.18.1
|
||||
- - name: che-python-3.7-7.18.1
|
||||
- image: quay.io/eclipse/che-python-3.7@sha256:c04b08539abc6d462562ea83323b5ddddf07d3a5c75fa4f839895540208cc8c3
|
||||
- # tag: quay.io/eclipse/che-python-3.7:7.18.1
|
||||
- - name: che-quarkus-7.18.1
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:31512d6aceac728a3aa422cf4cadf0b66efa645deadb4011c9681c11d964a32c
|
||||
- # tag: quay.io/eclipse/che-quarkus:7.18.1
|
||||
- - name: che-rust-1.39-7.18.1
|
||||
- image: quay.io/eclipse/che-rust-1.39@sha256:249cd722261be74638c08be0e83686e4a444f4d73852c537a62f3b90d0c817c8
|
||||
- # tag: quay.io/eclipse/che-rust-1.39:7.18.1
|
||||
+ - name: che-cpp-rhel7-7.18.2
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:5c41cc656c76872a98d80ca59663b1f45c54252bdb9fbd3ae8c7530a14dc8af4
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.18.2
|
||||
+ - name: che-dotnet-2.2-7.18.2
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:d49be66d801d3ee2248166fc04477a4eaf8a9ced03c7c6feb26c9d4326f5a7d2
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.18.2
|
||||
+ - name: che-dotnet-3.1-7.18.2
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:59149f5bb98efdddd0bbaa2dbc5b656f469bd1c51bff0eaae24f2eab0e4f9da0
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.18.2
|
||||
+ - name: che-golang-1.14-7.18.2
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:1a8623e7f2b5e1a2ac4308d99554b43a395f7a8fedff949abb0f292a9195e553
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14:7.18.2
|
||||
+ - name: che-java11-gradle-7.18.2
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:cd74e738ad87c88b03c61263a9a5653105ff7824bd2dd93a2205e4cdd259e9e6
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle:7.18.2
|
||||
+ - name: che-java11-maven-7.18.2
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:892b837af658fff273a720566dd7bfadbfc7c51bd70416ce8bc61139a6dc9d71
|
||||
+ # tag: quay.io/eclipse/che-java11-maven:7.18.2
|
||||
+ - name: che-java8-maven-7.18.2
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:f0559acd4ce3b36b186588f81369da3b9c920d4698a3ecd2d78eb17e5466a0c2
|
||||
+ # tag: quay.io/eclipse/che-java8-maven:7.18.2
|
||||
+ - name: che-nodejs10-community-7.18.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:d8c7f5f59e6783b6584fb2add09fb87884952106c8c44ef3f79589c62553a97a
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community:7.18.2
|
||||
+ - name: che-nodejs10-ubi-7.18.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:d82b4d094c9647cae05e7b18c1c0282dc16a5cab35c64d0135d3f6439c4ca501
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.18.2
|
||||
+ - name: che-nodejs8-centos-7.18.2
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:31caf7d21aa6a04231ece1660354ebb4de9a99b71016736993fb416b6cb60bd1
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.18.2
|
||||
+ - name: che-php-7-7.18.2
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:458316664a41c3992b2783214a308c1747168cf666dc4f59b6db1ca4d871951e
|
||||
+ # tag: quay.io/eclipse/che-php-7:7.18.2
|
||||
+ - name: che-python-3.7-7.18.2
|
||||
+ image: quay.io/eclipse/che-python-3.7@sha256:e98afbb388f93885b5bff83dfec29f04dec2a04b793c9edf2853a8d50ec713a9
|
||||
+ # tag: quay.io/eclipse/che-python-3.7:7.18.2
|
||||
+ - name: che-quarkus-7.18.2
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:59525d95705c0e396f13d4a7ecc4562129dc6c4d0ac5158e41595132d3678496
|
||||
+ # tag: quay.io/eclipse/che-quarkus:7.18.2
|
||||
+ - name: che-rust-1.39-7.18.2
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:5543aa2f4579e016dedd89e2a855cefbec3d25148dcb004094a2836758353a58
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39:7.18.2
|
||||
- name: ubi-minimal-
|
||||
image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6
|
||||
# tag: registry.access.redhat.com/ubi8/ubi-minimal
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
channels:
|
||||
- currentCSV: eclipse-che-preview-openshift.v9.9.9-nightly.1598450052
|
||||
name: nightly
|
||||
- currentCSV: eclipse-che-preview-openshift.v7.18.1
|
||||
- currentCSV: eclipse-che-preview-openshift.v7.18.2
|
||||
name: stable
|
||||
defaultChannel: stable
|
||||
packageName: eclipse-che-preview-openshift
|
||||
|
|
|
|||
Loading…
Reference in New Issue