Release version 7.17.2 (#413)
* Update defaults tags to 7.17.2 Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> * Release OLM files to 7.17.2 Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>7.17.x
parent
ded7a5ab44
commit
325343afb0
|
|
@ -25,7 +25,7 @@ spec:
|
|||
serviceAccountName: che-operator
|
||||
containers:
|
||||
- name: che-operator
|
||||
image: quay.io/eclipse/che-operator:7.17.1
|
||||
image: quay.io/eclipse/che-operator:7.17.2
|
||||
ports:
|
||||
- containerPort: 60000
|
||||
name: metrics
|
||||
|
|
@ -44,13 +44,13 @@ spec:
|
|||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
value: 7.17.1
|
||||
value: 7.17.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
value: quay.io/eclipse/che-server:7.17.1
|
||||
value: quay.io/eclipse/che-server:7.17.2
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
value: quay.io/eclipse/che-plugin-registry:7.17.1
|
||||
value: quay.io/eclipse/che-plugin-registry:7.17.2
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
value: quay.io/eclipse/che-devfile-registry:7.17.1
|
||||
value: quay.io/eclipse/che-devfile-registry:7.17.2
|
||||
- name: RELATED_IMAGE_che_tls_secrets_creation_job
|
||||
value: quay.io/eclipse/che-tls-secret-creator:alpine-3029769
|
||||
- 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.17.1
|
||||
value: quay.io/eclipse/che-keycloak:7.17.2
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker:v3.2.0
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: che-operator
|
||||
image: quay.io/eclipse/che-operator:7.17.1
|
||||
image: quay.io/eclipse/che-operator:7.17.2
|
||||
ports:
|
||||
- containerPort: 60000
|
||||
name: metrics
|
||||
|
|
@ -43,13 +43,13 @@ spec:
|
|||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
value: 7.17.1
|
||||
value: 7.17.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
value: quay.io/eclipse/che-server:7.17.1
|
||||
value: quay.io/eclipse/che-server:7.17.2
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
value: quay.io/eclipse/che-plugin-registry:7.17.1
|
||||
value: quay.io/eclipse/che-plugin-registry:7.17.2
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
value: quay.io/eclipse/che-devfile-registry:7.17.1
|
||||
value: quay.io/eclipse/che-devfile-registry:7.17.2
|
||||
- name: RELATED_IMAGE_che_tls_secrets_creation_job
|
||||
value: quay.io/eclipse/che-tls-secret-creator:alpine-3029769
|
||||
- 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.17.1
|
||||
value: quay.io/eclipse/che-keycloak:7.17.2
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker:v3.2.0
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
|
|
|
|||
|
|
@ -0,0 +1,562 @@
|
|||
#
|
||||
# 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 overriden.
|
||||
type: string
|
||||
cheHost:
|
||||
description: Public hostname of the installed Che server. This will
|
||||
be automatically set by the operator. In most cases the default
|
||||
value set by the operator should not be overriden.
|
||||
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,318 @@
|
|||
--- /root/payload/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.17.1/eclipse-che-preview-kubernetes.v7.17.1.clusterserviceversion.yaml 2020-08-19 21:59:59.789018467 +0100
|
||||
+++ /root/payload/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.17.2/eclipse-che-preview-kubernetes.v7.17.2.clusterserviceversion.yaml 2020-08-19 22:05:19.326232568 +0100
|
||||
@@ -51,14 +51,14 @@
|
||||
capabilities: Seamless Upgrades
|
||||
categories: Developer Tools
|
||||
certified: "false"
|
||||
- containerImage: quay.io/eclipse/che-operator@sha256:e6f5c42f76693d73b9bde100ebd170c655bff020d5c8fa6f8c81289a99585992
|
||||
- createdAt: "2020-08-18T13:45:40Z"
|
||||
+ containerImage: quay.io/eclipse/che-operator@sha256:003aa1dfe17f1671342da9c4e453688b8e571a99ebe88ad0da1fd28da14f3dfc
|
||||
+ createdAt: "2020-08-19T21:03:40Z"
|
||||
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.17.1
|
||||
+ name: eclipse-che-preview-kubernetes.v7.17.2
|
||||
namespace: placeholder
|
||||
spec:
|
||||
apiservicedefinitions: {}
|
||||
@@ -250,13 +250,13 @@
|
||||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
- value: 7.17.1
|
||||
+ value: 7.17.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
- value: quay.io/eclipse/che-server@sha256:26188dc1f878c2e35f2be55b2a01f923cc4966426c932e95f3ae3c501965aa05
|
||||
+ value: quay.io/eclipse/che-server@sha256:3177bd19d27c84e4b5d30ca3231a35bec8ee26bc8a31e5c54b0d37e5b9ed94b1
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
- value: quay.io/eclipse/che-plugin-registry@sha256:1176941ab8a7689139357a284b51bed77e9aca5dab2ff2436626744d2ddb8ec7
|
||||
+ value: quay.io/eclipse/che-plugin-registry@sha256:eeb0f9018f95a43cd2a33bd2a79ef39596b1bbf198104e3292e97fd3a698deb1
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
- value: quay.io/eclipse/che-devfile-registry@sha256:f89699b952e0ec3ea361f85048ed7831a30757b39e0c2ffbf2370a3d4c5ed788
|
||||
+ value: quay.io/eclipse/che-devfile-registry@sha256:641ae17fd3ce36aab524df21eb81a90cb825a081539eb7567cc8976c1a076913
|
||||
- name: RELATED_IMAGE_che_tls_secrets_creation_job
|
||||
value: quay.io/eclipse/che-tls-secret-creator@sha256:881d32131d31a88ce650d959c06d5f393533877d47077993b0740549eee4cfd5
|
||||
- name: RELATED_IMAGE_pvc_jobs
|
||||
@@ -264,7 +264,7 @@
|
||||
- name: RELATED_IMAGE_postgres
|
||||
value: docker.io/centos/postgresql-96-centos7@sha256:92f729201947eada816bfba0cd8a0a020734d083678a5e477aa58d17995a3a7d
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
- value: quay.io/eclipse/che-keycloak@sha256:f1ace9404aca36084a353fa7d2b77b3abba30655323d6d2936d1a006a98d0dcf
|
||||
+ value: quay.io/eclipse/che-keycloak@sha256:1ecb8a2784f9af1c6e47dc1dd2cdf6adf3716828cee758b03b27c60d812a6123
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:5dc11a7cb6bad79219644377f42e5f9fbcd5a75fec76662b9804e56789558cc6
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
@@ -323,8 +323,10 @@
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2
|
||||
- name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGE______
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972
|
||||
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06
|
||||
- name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_NZUWO2DUNR4Q____
|
||||
- value: quay.io/eclipse/che-machine-exec@sha256:e9bbeeb6225fc111b71bb51a85d660922b1891006e1cce95545358007c3b6a60
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:ad4f8e587e0218141ecc278b0483ea639e897556cc4302850f491d77c652642b
|
||||
- name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGAWTOMDGHFSDCNY_
|
||||
value: quay.io/eclipse/che-sidecar-camelk@sha256:244c2eea2a9bde83a8a5b67a645f60e344ae3a939a66d0d5d780ac6594e1a244
|
||||
- name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGAWWINJZHA4WENQ_
|
||||
@@ -403,6 +405,8 @@
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1
|
||||
- name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGE______
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8
|
||||
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb
|
||||
- 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______
|
||||
@@ -419,41 +423,43 @@
|
||||
value: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGE______
|
||||
value: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441
|
||||
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822
|
||||
- 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_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-cpp-rhel7@sha256:8c8b9cbcba17f5db2a4fdf5d180d49d73f232d7617087809acc695499f0e2a0d
|
||||
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-2.2@sha256:3a84ab1f312cea4c5dad70d7605531c7ccbdda879062d3b00f69319ac807c99d
|
||||
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-3.1@sha256:c89025f5a01729cc69871a1a4e97c738650dfce7ab9e79f483f02b80a7e6d44b
|
||||
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-golang-1.14@sha256:8b9d0534b0aab7cd0e04c5638edc2cad709a9b23f3c31c8f968d1755dd8ca0ac
|
||||
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-java11-gradle@sha256:35a946f17d0e1435958c4e2fae65e616e5a7d096610e16f75eef78d8b85644af
|
||||
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-java11-maven@sha256:5e2c3e23f43775e7a2d23d58ed11a9571a147dbc5ebb60a15066943079b259e9
|
||||
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-java8-maven@sha256:4c7a2f543b37f9a090fc6656ff3d37a82ee6093c161f9b0e425644782fec113a
|
||||
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-community@sha256:ec25ac5af19096dabc3a9199f819d00ec319c6d469a7d3b49a945d68083e5ce1
|
||||
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:6d0fda5c67493f2f3091c81ad2c48ede8138beefda278a84656ab9b67afe631c
|
||||
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-nodejs8-centos@sha256:50b949658749b8253dd31d1a08c99a1343d9a7e8afee072ddd7139d5670410d5
|
||||
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-php-7@sha256:7b805dbae6868d969f6e7b26edfbbffb0327d867db39fa325f5cde8987ba468a
|
||||
- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-python-3.7@sha256:759ccb69f68dc3cef20049ee34288863e34bbb1206d1afcd56d3fc5cd0f6118d
|
||||
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-quarkus@sha256:f105c6499eb4a84f59df839c8a0b06f5bd3b5e035f741dd88f36d116a313029e
|
||||
- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-rust-1.39@sha256:bdec3ecf2c0c808928fbebb7727cadf4235fb22bac60409185f8506ff7dfbc7b
|
||||
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:5a4876cd873fce286e5a5cd67b71fc7b1f1873479f4ebfeb4d14549433759b20
|
||||
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:67f9611fd73a7bf9baaf1353611f92d7b76f8c75c74780022dc770cfcb34e6bd
|
||||
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:89a32e00fe5b9887be44b5a3ee2a841000f397428ef476d09c8a7d741cc9701a
|
||||
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-golang-1.14@sha256:a76e2580c8ace552b14b94797ad1aed98f40dd0c39f5033061235e0ff96bc74d
|
||||
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-java11-gradle@sha256:968cdd17787438a7606a1b76db696a35a8c0b598c6e1af4ca9a169639825e881
|
||||
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-java11-maven@sha256:db6e8c64df119b43345195572ea3604384711d4091acb7abd7b06ae3f8599957
|
||||
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-java8-maven@sha256:f30d3ff03a8aa46e74ff860fde5df15ebcdcf85b8f65cfc6acf3cbd31a7cb46f
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-community@sha256:0ea0b7529c2adbdf96c68754df98e529b4d0e1d18651642c1b93707391bd0c25
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:f64611b71b33e50ecb5856bf09574685cca9b0dcc32ffbd9d73f231a2c683cdd
|
||||
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:d4e9c1d07858133fb6c046c7b48bc4b5b22c1763f5e2d17bf467d78621f82235
|
||||
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-php-7@sha256:42c841344695c84252b2bb1fdbe57379f53df9e065a79a4dd9c9ed8ee8072ab5
|
||||
+ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-python-3.7@sha256:bf76275b221651ca97477c07cca36d949145645c8632a90c91aec69d0f1cd92e
|
||||
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-quarkus@sha256:2bbf8514041c85a00634302cf8ba7bf647cab9a5a85cbc6d0738b6f6ac45be8c
|
||||
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-rust-1.39@sha256:1263ec41219f2309d9decf22fb400f76194128ae1a42a5e5ec63e641c6058a88
|
||||
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
|
||||
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:372622021a90893d9e25c298e045c804388c7666f3e756cd48f75d20172d9e55
|
||||
- image: quay.io/eclipse/che-operator@sha256:e6f5c42f76693d73b9bde100ebd170c655bff020d5c8fa6f8c81289a99585992
|
||||
+ image: quay.io/eclipse/che-operator@sha256:003aa1dfe17f1671342da9c4e453688b8e571a99ebe88ad0da1fd28da14f3dfc
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: che-operator
|
||||
ports:
|
||||
@@ -562,36 +568,36 @@
|
||||
maturity: stable
|
||||
provider:
|
||||
name: Eclipse Foundation
|
||||
- replaces: eclipse-che-preview-kubernetes.v7.17.0
|
||||
- version: 7.17.1
|
||||
+ replaces: eclipse-che-preview-kubernetes.v7.17.1
|
||||
+ version: 7.17.2
|
||||
relatedImages:
|
||||
- - name: che-operator-7.17.1
|
||||
- image: quay.io/eclipse/che-operator@sha256:e6f5c42f76693d73b9bde100ebd170c655bff020d5c8fa6f8c81289a99585992
|
||||
- # tag: quay.io/eclipse/che-operator:7.17.1
|
||||
+ - name: che-operator-7.17.2
|
||||
+ image: quay.io/eclipse/che-operator@sha256:003aa1dfe17f1671342da9c4e453688b8e571a99ebe88ad0da1fd28da14f3dfc
|
||||
+ # tag: quay.io/eclipse/che-operator:7.17.2
|
||||
- name: postgresql-96-centos7-9.6
|
||||
image: docker.io/centos/postgresql-96-centos7@sha256:92f729201947eada816bfba0cd8a0a020734d083678a5e477aa58d17995a3a7d
|
||||
# tag: centos/postgresql-96-centos7:9.6
|
||||
- - name: che-devfile-registry-7.17.1
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:f89699b952e0ec3ea361f85048ed7831a30757b39e0c2ffbf2370a3d4c5ed788
|
||||
- # tag: quay.io/eclipse/che-devfile-registry:7.17.1
|
||||
+ - name: che-devfile-registry-7.17.2
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:641ae17fd3ce36aab524df21eb81a90cb825a081539eb7567cc8976c1a076913
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry:7.17.2
|
||||
- name: che-jwtproxy-fd94e60
|
||||
image: quay.io/eclipse/che-jwtproxy@sha256:eb2c1707be990a9928bc2cab08c2b5f421659c5d65240f73cde192bf6378cecd
|
||||
# tag: quay.io/eclipse/che-jwtproxy:fd94e60
|
||||
- - name: che-keycloak-7.17.1
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:f1ace9404aca36084a353fa7d2b77b3abba30655323d6d2936d1a006a98d0dcf
|
||||
- # tag: quay.io/eclipse/che-keycloak:7.17.1
|
||||
+ - name: che-keycloak-7.17.2
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:1ecb8a2784f9af1c6e47dc1dd2cdf6adf3716828cee758b03b27c60d812a6123
|
||||
+ # tag: quay.io/eclipse/che-keycloak:7.17.2
|
||||
- name: che-plugin-artifacts-broker-v3.2.0
|
||||
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:ff18c43697fcae7467abf081a0edef7406576a5e1ea8ed68f08c1d7060d250e6
|
||||
# tag: quay.io/eclipse/che-plugin-artifacts-broker:v3.2.0
|
||||
- name: che-plugin-metadata-broker-v3.2.0
|
||||
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:5dc11a7cb6bad79219644377f42e5f9fbcd5a75fec76662b9804e56789558cc6
|
||||
# tag: quay.io/eclipse/che-plugin-metadata-broker:v3.2.0
|
||||
- - name: che-plugin-registry-7.17.1
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:1176941ab8a7689139357a284b51bed77e9aca5dab2ff2436626744d2ddb8ec7
|
||||
- # tag: quay.io/eclipse/che-plugin-registry:7.17.1
|
||||
- - name: che-server-7.17.1
|
||||
- image: quay.io/eclipse/che-server@sha256:26188dc1f878c2e35f2be55b2a01f923cc4966426c932e95f3ae3c501965aa05
|
||||
- # tag: quay.io/eclipse/che-server:7.17.1
|
||||
+ - name: che-plugin-registry-7.17.2
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:eeb0f9018f95a43cd2a33bd2a79ef39596b1bbf198104e3292e97fd3a698deb1
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry:7.17.2
|
||||
+ - name: che-server-7.17.2
|
||||
+ image: quay.io/eclipse/che-server@sha256:3177bd19d27c84e4b5d30ca3231a35bec8ee26bc8a31e5c54b0d37e5b9ed94b1
|
||||
+ # tag: quay.io/eclipse/che-server:7.17.2
|
||||
- name: che-tls-secret-creator-alpine-3029769
|
||||
image: quay.io/eclipse/che-tls-secret-creator@sha256:881d32131d31a88ce650d959c06d5f393533877d47077993b0740549eee4cfd5
|
||||
# tag: quay.io/eclipse/che-tls-secret-creator:alpine-3029769
|
||||
@@ -649,8 +655,11 @@
|
||||
- name: che-machine-exec-7.17.1
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972
|
||||
# tag: quay.io/eclipse/che-machine-exec:7.17.1
|
||||
+ - name: che-machine-exec-7.17.2
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06
|
||||
+ # tag: quay.io/eclipse/che-machine-exec:7.17.2
|
||||
- name: che-machine-exec-nightly
|
||||
- image: quay.io/eclipse/che-machine-exec@sha256:e9bbeeb6225fc111b71bb51a85d660922b1891006e1cce95545358007c3b6a60
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:ad4f8e587e0218141ecc278b0483ea639e897556cc4302850f491d77c652642b
|
||||
# tag: quay.io/eclipse/che-machine-exec:nightly
|
||||
- name: che-sidecar-camelk-0.0.10-70f9d17
|
||||
image: quay.io/eclipse/che-sidecar-camelk@sha256:244c2eea2a9bde83a8a5b67a645f60e344ae3a939a66d0d5d780ac6594e1a244
|
||||
@@ -769,6 +778,9 @@
|
||||
- name: che-theia-endpoint-runtime-binary-7.17.1
|
||||
image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8
|
||||
# tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.1
|
||||
+ - name: che-theia-endpoint-runtime-binary-7.17.2
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.2
|
||||
- name: che-theia-7.15.0
|
||||
image: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944
|
||||
# tag: quay.io/eclipse/che-theia:7.15.0
|
||||
@@ -793,54 +805,57 @@
|
||||
- name: che-theia-7.17.1
|
||||
image: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441
|
||||
# tag: quay.io/eclipse/che-theia:7.17.1
|
||||
+ - name: che-theia-7.17.2
|
||||
+ image: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822
|
||||
+ # tag: quay.io/eclipse/che-theia:7.17.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.17.1
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:8c8b9cbcba17f5db2a4fdf5d180d49d73f232d7617087809acc695499f0e2a0d
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7:7.17.1
|
||||
- - name: che-dotnet-2.2-7.17.1
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:3a84ab1f312cea4c5dad70d7605531c7ccbdda879062d3b00f69319ac807c99d
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2:7.17.1
|
||||
- - name: che-dotnet-3.1-7.17.1
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:c89025f5a01729cc69871a1a4e97c738650dfce7ab9e79f483f02b80a7e6d44b
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1:7.17.1
|
||||
- - name: che-golang-1.14-7.17.1
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:8b9d0534b0aab7cd0e04c5638edc2cad709a9b23f3c31c8f968d1755dd8ca0ac
|
||||
- # tag: quay.io/eclipse/che-golang-1.14:7.17.1
|
||||
- - name: che-java11-gradle-7.17.1
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:35a946f17d0e1435958c4e2fae65e616e5a7d096610e16f75eef78d8b85644af
|
||||
- # tag: quay.io/eclipse/che-java11-gradle:7.17.1
|
||||
- - name: che-java11-maven-7.17.1
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:5e2c3e23f43775e7a2d23d58ed11a9571a147dbc5ebb60a15066943079b259e9
|
||||
- # tag: quay.io/eclipse/che-java11-maven:7.17.1
|
||||
- - name: che-java8-maven-7.17.1
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:4c7a2f543b37f9a090fc6656ff3d37a82ee6093c161f9b0e425644782fec113a
|
||||
- # tag: quay.io/eclipse/che-java8-maven:7.17.1
|
||||
- - name: che-nodejs10-community-7.17.1
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:ec25ac5af19096dabc3a9199f819d00ec319c6d469a7d3b49a945d68083e5ce1
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community:7.17.1
|
||||
- - name: che-nodejs10-ubi-7.17.1
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:6d0fda5c67493f2f3091c81ad2c48ede8138beefda278a84656ab9b67afe631c
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.17.1
|
||||
- - name: che-nodejs8-centos-7.17.1
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:50b949658749b8253dd31d1a08c99a1343d9a7e8afee072ddd7139d5670410d5
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos:7.17.1
|
||||
- - name: che-php-7-7.17.1
|
||||
- image: quay.io/eclipse/che-php-7@sha256:7b805dbae6868d969f6e7b26edfbbffb0327d867db39fa325f5cde8987ba468a
|
||||
- # tag: quay.io/eclipse/che-php-7:7.17.1
|
||||
- - name: che-python-3.7-7.17.1
|
||||
- image: quay.io/eclipse/che-python-3.7@sha256:759ccb69f68dc3cef20049ee34288863e34bbb1206d1afcd56d3fc5cd0f6118d
|
||||
- # tag: quay.io/eclipse/che-python-3.7:7.17.1
|
||||
- - name: che-quarkus-7.17.1
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:f105c6499eb4a84f59df839c8a0b06f5bd3b5e035f741dd88f36d116a313029e
|
||||
- # tag: quay.io/eclipse/che-quarkus:7.17.1
|
||||
- - name: che-rust-1.39-7.17.1
|
||||
- image: quay.io/eclipse/che-rust-1.39@sha256:bdec3ecf2c0c808928fbebb7727cadf4235fb22bac60409185f8506ff7dfbc7b
|
||||
- # tag: quay.io/eclipse/che-rust-1.39:7.17.1
|
||||
+ - name: che-cpp-rhel7-7.17.2
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:5a4876cd873fce286e5a5cd67b71fc7b1f1873479f4ebfeb4d14549433759b20
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.17.2
|
||||
+ - name: che-dotnet-2.2-7.17.2
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:67f9611fd73a7bf9baaf1353611f92d7b76f8c75c74780022dc770cfcb34e6bd
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.17.2
|
||||
+ - name: che-dotnet-3.1-7.17.2
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:89a32e00fe5b9887be44b5a3ee2a841000f397428ef476d09c8a7d741cc9701a
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.17.2
|
||||
+ - name: che-golang-1.14-7.17.2
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:a76e2580c8ace552b14b94797ad1aed98f40dd0c39f5033061235e0ff96bc74d
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14:7.17.2
|
||||
+ - name: che-java11-gradle-7.17.2
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:968cdd17787438a7606a1b76db696a35a8c0b598c6e1af4ca9a169639825e881
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle:7.17.2
|
||||
+ - name: che-java11-maven-7.17.2
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:db6e8c64df119b43345195572ea3604384711d4091acb7abd7b06ae3f8599957
|
||||
+ # tag: quay.io/eclipse/che-java11-maven:7.17.2
|
||||
+ - name: che-java8-maven-7.17.2
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:f30d3ff03a8aa46e74ff860fde5df15ebcdcf85b8f65cfc6acf3cbd31a7cb46f
|
||||
+ # tag: quay.io/eclipse/che-java8-maven:7.17.2
|
||||
+ - name: che-nodejs10-community-7.17.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:0ea0b7529c2adbdf96c68754df98e529b4d0e1d18651642c1b93707391bd0c25
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community:7.17.2
|
||||
+ - name: che-nodejs10-ubi-7.17.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:f64611b71b33e50ecb5856bf09574685cca9b0dcc32ffbd9d73f231a2c683cdd
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.17.2
|
||||
+ - name: che-nodejs8-centos-7.17.2
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:d4e9c1d07858133fb6c046c7b48bc4b5b22c1763f5e2d17bf467d78621f82235
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.17.2
|
||||
+ - name: che-php-7-7.17.2
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:42c841344695c84252b2bb1fdbe57379f53df9e065a79a4dd9c9ed8ee8072ab5
|
||||
+ # tag: quay.io/eclipse/che-php-7:7.17.2
|
||||
+ - name: che-python-3.7-7.17.2
|
||||
+ image: quay.io/eclipse/che-python-3.7@sha256:bf76275b221651ca97477c07cca36d949145645c8632a90c91aec69d0f1cd92e
|
||||
+ # tag: quay.io/eclipse/che-python-3.7:7.17.2
|
||||
+ - name: che-quarkus-7.17.2
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:2bbf8514041c85a00634302cf8ba7bf647cab9a5a85cbc6d0738b6f6ac45be8c
|
||||
+ # tag: quay.io/eclipse/che-quarkus:7.17.2
|
||||
+ - name: che-rust-1.39-7.17.2
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:1263ec41219f2309d9decf22fb400f76194128ae1a42a5e5ec63e641c6058a88
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39:7.17.2
|
||||
- name: ubi-minimal-
|
||||
image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:372622021a90893d9e25c298e045c804388c7666f3e756cd48f75d20172d9e55
|
||||
# tag: registry.access.redhat.com/ubi8/ubi-minimal
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
channels:
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v9.9.9-nightly.1596725014
|
||||
name: nightly
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v7.17.1
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v7.17.2
|
||||
name: stable
|
||||
defaultChannel: stable
|
||||
packageName: eclipse-che-preview-kubernetes
|
||||
|
|
|
|||
|
|
@ -0,0 +1,564 @@
|
|||
#
|
||||
# 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 overriden.
|
||||
type: string
|
||||
cheHost:
|
||||
description: Public hostname of the installed Che server. This will
|
||||
be automatically set by the operator. In most cases the default
|
||||
value set by the operator should not be overriden.
|
||||
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,475 @@
|
|||
--- /root/payload/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.17.1/eclipse-che-preview-openshift.v7.17.1.clusterserviceversion.yaml 2020-08-19 21:59:59.843020840 +0100
|
||||
+++ /root/payload/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.17.2/eclipse-che-preview-openshift.v7.17.2.clusterserviceversion.yaml 2020-08-19 22:06:56.549508025 +0100
|
||||
@@ -48,14 +48,14 @@
|
||||
capabilities: Seamless Upgrades
|
||||
categories: Developer Tools, OpenShift Optional
|
||||
certified: "false"
|
||||
- containerImage: quay.io/eclipse/che-operator@sha256:e6f5c42f76693d73b9bde100ebd170c655bff020d5c8fa6f8c81289a99585992
|
||||
- createdAt: "2020-08-18T13:47:32Z"
|
||||
+ containerImage: quay.io/eclipse/che-operator@sha256:003aa1dfe17f1671342da9c4e453688b8e571a99ebe88ad0da1fd28da14f3dfc
|
||||
+ createdAt: "2020-08-19T21:05:19Z"
|
||||
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.17.1
|
||||
+ name: eclipse-che-preview-openshift.v7.17.2
|
||||
namespace: placeholder
|
||||
spec:
|
||||
apiservicedefinitions: {}
|
||||
@@ -279,19 +279,19 @@
|
||||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
- value: 7.17.1
|
||||
+ value: 7.17.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
- value: quay.io/eclipse/che-server@sha256:26188dc1f878c2e35f2be55b2a01f923cc4966426c932e95f3ae3c501965aa05
|
||||
+ value: quay.io/eclipse/che-server@sha256:3177bd19d27c84e4b5d30ca3231a35bec8ee26bc8a31e5c54b0d37e5b9ed94b1
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
- value: quay.io/eclipse/che-plugin-registry@sha256:1176941ab8a7689139357a284b51bed77e9aca5dab2ff2436626744d2ddb8ec7
|
||||
+ value: quay.io/eclipse/che-plugin-registry@sha256:eeb0f9018f95a43cd2a33bd2a79ef39596b1bbf198104e3292e97fd3a698deb1
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
- value: quay.io/eclipse/che-devfile-registry@sha256:f89699b952e0ec3ea361f85048ed7831a30757b39e0c2ffbf2370a3d4c5ed788
|
||||
+ value: quay.io/eclipse/che-devfile-registry@sha256:641ae17fd3ce36aab524df21eb81a90cb825a081539eb7567cc8976c1a076913
|
||||
- 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:92f729201947eada816bfba0cd8a0a020734d083678a5e477aa58d17995a3a7d
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
- value: quay.io/eclipse/che-keycloak@sha256:f1ace9404aca36084a353fa7d2b77b3abba30655323d6d2936d1a006a98d0dcf
|
||||
+ value: quay.io/eclipse/che-keycloak@sha256:1ecb8a2784f9af1c6e47dc1dd2cdf6adf3716828cee758b03b27c60d812a6123
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:5dc11a7cb6bad79219644377f42e5f9fbcd5a75fec76662b9804e56789558cc6
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
@@ -350,8 +350,10 @@
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2
|
||||
- name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGE______
|
||||
value: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972
|
||||
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06
|
||||
- name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_NZUWO2DUNR4Q____
|
||||
- value: quay.io/eclipse/che-machine-exec@sha256:e9bbeeb6225fc111b71bb51a85d660922b1891006e1cce95545358007c3b6a60
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:ad4f8e587e0218141ecc278b0483ea639e897556cc4302850f491d77c652642b
|
||||
- name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGAWTOMDGHFSDCNY_
|
||||
value: quay.io/eclipse/che-sidecar-camelk@sha256:244c2eea2a9bde83a8a5b67a645f60e344ae3a939a66d0d5d780ac6594e1a244
|
||||
- name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGAWWINJZHA4WENQ_
|
||||
@@ -430,6 +432,8 @@
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1
|
||||
- name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGE______
|
||||
value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8
|
||||
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb
|
||||
- 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______
|
||||
@@ -446,41 +450,43 @@
|
||||
value: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f
|
||||
- name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGE______
|
||||
value: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441
|
||||
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822
|
||||
- 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_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-cpp-rhel7@sha256:8c8b9cbcba17f5db2a4fdf5d180d49d73f232d7617087809acc695499f0e2a0d
|
||||
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-2.2@sha256:3a84ab1f312cea4c5dad70d7605531c7ccbdda879062d3b00f69319ac807c99d
|
||||
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-dotnet-3.1@sha256:c89025f5a01729cc69871a1a4e97c738650dfce7ab9e79f483f02b80a7e6d44b
|
||||
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-golang-1.14@sha256:8b9d0534b0aab7cd0e04c5638edc2cad709a9b23f3c31c8f968d1755dd8ca0ac
|
||||
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-java11-gradle@sha256:35a946f17d0e1435958c4e2fae65e616e5a7d096610e16f75eef78d8b85644af
|
||||
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-java11-maven@sha256:5e2c3e23f43775e7a2d23d58ed11a9571a147dbc5ebb60a15066943079b259e9
|
||||
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-java8-maven@sha256:4c7a2f543b37f9a090fc6656ff3d37a82ee6093c161f9b0e425644782fec113a
|
||||
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-community@sha256:ec25ac5af19096dabc3a9199f819d00ec319c6d469a7d3b49a945d68083e5ce1
|
||||
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:6d0fda5c67493f2f3091c81ad2c48ede8138beefda278a84656ab9b67afe631c
|
||||
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-nodejs8-centos@sha256:50b949658749b8253dd31d1a08c99a1343d9a7e8afee072ddd7139d5670410d5
|
||||
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-php-7@sha256:7b805dbae6868d969f6e7b26edfbbffb0327d867db39fa325f5cde8987ba468a
|
||||
- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-python-3.7@sha256:759ccb69f68dc3cef20049ee34288863e34bbb1206d1afcd56d3fc5cd0f6118d
|
||||
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-quarkus@sha256:f105c6499eb4a84f59df839c8a0b06f5bd3b5e035f741dd88f36d116a313029e
|
||||
- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCNZOGE______
|
||||
- value: quay.io/eclipse/che-rust-1.39@sha256:bdec3ecf2c0c808928fbebb7727cadf4235fb22bac60409185f8506ff7dfbc7b
|
||||
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:5a4876cd873fce286e5a5cd67b71fc7b1f1873479f4ebfeb4d14549433759b20
|
||||
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:67f9611fd73a7bf9baaf1353611f92d7b76f8c75c74780022dc770cfcb34e6bd
|
||||
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:89a32e00fe5b9887be44b5a3ee2a841000f397428ef476d09c8a7d741cc9701a
|
||||
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-golang-1.14@sha256:a76e2580c8ace552b14b94797ad1aed98f40dd0c39f5033061235e0ff96bc74d
|
||||
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-java11-gradle@sha256:968cdd17787438a7606a1b76db696a35a8c0b598c6e1af4ca9a169639825e881
|
||||
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-java11-maven@sha256:db6e8c64df119b43345195572ea3604384711d4091acb7abd7b06ae3f8599957
|
||||
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-java8-maven@sha256:f30d3ff03a8aa46e74ff860fde5df15ebcdcf85b8f65cfc6acf3cbd31a7cb46f
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-community@sha256:0ea0b7529c2adbdf96c68754df98e529b4d0e1d18651642c1b93707391bd0c25
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:f64611b71b33e50ecb5856bf09574685cca9b0dcc32ffbd9d73f231a2c683cdd
|
||||
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:d4e9c1d07858133fb6c046c7b48bc4b5b22c1763f5e2d17bf467d78621f82235
|
||||
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-php-7@sha256:42c841344695c84252b2bb1fdbe57379f53df9e065a79a4dd9c9ed8ee8072ab5
|
||||
+ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-python-3.7@sha256:bf76275b221651ca97477c07cca36d949145645c8632a90c91aec69d0f1cd92e
|
||||
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-quarkus@sha256:2bbf8514041c85a00634302cf8ba7bf647cab9a5a85cbc6d0738b6f6ac45be8c
|
||||
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDCNZOGI______
|
||||
+ value: quay.io/eclipse/che-rust-1.39@sha256:1263ec41219f2309d9decf22fb400f76194128ae1a42a5e5ec63e641c6058a88
|
||||
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
|
||||
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:372622021a90893d9e25c298e045c804388c7666f3e756cd48f75d20172d9e55
|
||||
- image: quay.io/eclipse/che-operator@sha256:e6f5c42f76693d73b9bde100ebd170c655bff020d5c8fa6f8c81289a99585992
|
||||
+ image: quay.io/eclipse/che-operator@sha256:003aa1dfe17f1671342da9c4e453688b8e571a99ebe88ad0da1fd28da14f3dfc
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: che-operator
|
||||
ports:
|
||||
@@ -594,12 +600,12 @@
|
||||
maturity: stable
|
||||
provider:
|
||||
name: Eclipse Foundation
|
||||
- replaces: eclipse-che-preview-openshift.v7.17.0
|
||||
- version: 7.17.1
|
||||
+ replaces: eclipse-che-preview-openshift.v7.17.1
|
||||
+ version: 7.17.2
|
||||
relatedImages:
|
||||
- - name: che-operator-7.17.1
|
||||
- image: quay.io/eclipse/che-operator@sha256:e6f5c42f76693d73b9bde100ebd170c655bff020d5c8fa6f8c81289a99585992
|
||||
- # tag: quay.io/eclipse/che-operator:7.17.1
|
||||
+ - name: che-operator-7.17.2
|
||||
+ image: quay.io/eclipse/che-operator@sha256:003aa1dfe17f1671342da9c4e453688b8e571a99ebe88ad0da1fd28da14f3dfc
|
||||
+ # tag: quay.io/eclipse/che-operator:7.17.2
|
||||
- name: postgresql-96-centos7-9.6
|
||||
image: docker.io/centos/postgresql-96-centos7@sha256:92f729201947eada816bfba0cd8a0a020734d083678a5e477aa58d17995a3a7d
|
||||
# tag: centos/postgresql-96-centos7:9.6
|
||||
@@ -639,45 +645,45 @@
|
||||
- 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:8c8b9cbcba17f5db2a4fdf5d180d49d73f232d7617087809acc695499f0e2a0d
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:8c8b9cbcba17f5db2a4fdf5d180d49d73f232d7617087809acc695499f0e2a0d
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7@sha256:8c8b9cbcba17f5db2a4fdf5d180d49d73f232d7617087809acc695499f0e2a0d
|
||||
- - name: che-devfile-registry-7.17.1
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:f89699b952e0ec3ea361f85048ed7831a30757b39e0c2ffbf2370a3d4c5ed788
|
||||
- # tag: quay.io/eclipse/che-devfile-registry:7.17.1
|
||||
- - name: che-devfile-registry-@sha256:f89699b952e0ec3ea361f85048ed7831a30757b39e0c2ffbf2370a3d4c5ed788
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:f89699b952e0ec3ea361f85048ed7831a30757b39e0c2ffbf2370a3d4c5ed788
|
||||
- # tag: quay.io/eclipse/che-devfile-registry@sha256:f89699b952e0ec3ea361f85048ed7831a30757b39e0c2ffbf2370a3d4c5ed788
|
||||
- - name: che-dotnet-2.2-@sha256:3a84ab1f312cea4c5dad70d7605531c7ccbdda879062d3b00f69319ac807c99d
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:3a84ab1f312cea4c5dad70d7605531c7ccbdda879062d3b00f69319ac807c99d
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2@sha256:3a84ab1f312cea4c5dad70d7605531c7ccbdda879062d3b00f69319ac807c99d
|
||||
- - name: che-dotnet-3.1-@sha256:c89025f5a01729cc69871a1a4e97c738650dfce7ab9e79f483f02b80a7e6d44b
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:c89025f5a01729cc69871a1a4e97c738650dfce7ab9e79f483f02b80a7e6d44b
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1@sha256:c89025f5a01729cc69871a1a4e97c738650dfce7ab9e79f483f02b80a7e6d44b
|
||||
- - name: che-golang-1.14-@sha256:8b9d0534b0aab7cd0e04c5638edc2cad709a9b23f3c31c8f968d1755dd8ca0ac
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:8b9d0534b0aab7cd0e04c5638edc2cad709a9b23f3c31c8f968d1755dd8ca0ac
|
||||
- # tag: quay.io/eclipse/che-golang-1.14@sha256:8b9d0534b0aab7cd0e04c5638edc2cad709a9b23f3c31c8f968d1755dd8ca0ac
|
||||
- - name: che-java11-gradle-@sha256:35a946f17d0e1435958c4e2fae65e616e5a7d096610e16f75eef78d8b85644af
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:35a946f17d0e1435958c4e2fae65e616e5a7d096610e16f75eef78d8b85644af
|
||||
- # tag: quay.io/eclipse/che-java11-gradle@sha256:35a946f17d0e1435958c4e2fae65e616e5a7d096610e16f75eef78d8b85644af
|
||||
- - name: che-java11-maven-@sha256:5e2c3e23f43775e7a2d23d58ed11a9571a147dbc5ebb60a15066943079b259e9
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:5e2c3e23f43775e7a2d23d58ed11a9571a147dbc5ebb60a15066943079b259e9
|
||||
- # tag: quay.io/eclipse/che-java11-maven@sha256:5e2c3e23f43775e7a2d23d58ed11a9571a147dbc5ebb60a15066943079b259e9
|
||||
- - name: che-java8-maven-@sha256:4c7a2f543b37f9a090fc6656ff3d37a82ee6093c161f9b0e425644782fec113a
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:4c7a2f543b37f9a090fc6656ff3d37a82ee6093c161f9b0e425644782fec113a
|
||||
- # tag: quay.io/eclipse/che-java8-maven@sha256:4c7a2f543b37f9a090fc6656ff3d37a82ee6093c161f9b0e425644782fec113a
|
||||
+ - name: che-cpp-rhel7-@sha256:5a4876cd873fce286e5a5cd67b71fc7b1f1873479f4ebfeb4d14549433759b20
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:5a4876cd873fce286e5a5cd67b71fc7b1f1873479f4ebfeb4d14549433759b20
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7@sha256:5a4876cd873fce286e5a5cd67b71fc7b1f1873479f4ebfeb4d14549433759b20
|
||||
+ - name: che-devfile-registry-7.17.2
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:641ae17fd3ce36aab524df21eb81a90cb825a081539eb7567cc8976c1a076913
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry:7.17.2
|
||||
+ - name: che-devfile-registry-@sha256:641ae17fd3ce36aab524df21eb81a90cb825a081539eb7567cc8976c1a076913
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:641ae17fd3ce36aab524df21eb81a90cb825a081539eb7567cc8976c1a076913
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry@sha256:641ae17fd3ce36aab524df21eb81a90cb825a081539eb7567cc8976c1a076913
|
||||
+ - name: che-dotnet-2.2-@sha256:67f9611fd73a7bf9baaf1353611f92d7b76f8c75c74780022dc770cfcb34e6bd
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:67f9611fd73a7bf9baaf1353611f92d7b76f8c75c74780022dc770cfcb34e6bd
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2@sha256:67f9611fd73a7bf9baaf1353611f92d7b76f8c75c74780022dc770cfcb34e6bd
|
||||
+ - name: che-dotnet-3.1-@sha256:89a32e00fe5b9887be44b5a3ee2a841000f397428ef476d09c8a7d741cc9701a
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:89a32e00fe5b9887be44b5a3ee2a841000f397428ef476d09c8a7d741cc9701a
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1@sha256:89a32e00fe5b9887be44b5a3ee2a841000f397428ef476d09c8a7d741cc9701a
|
||||
+ - name: che-golang-1.14-@sha256:a76e2580c8ace552b14b94797ad1aed98f40dd0c39f5033061235e0ff96bc74d
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:a76e2580c8ace552b14b94797ad1aed98f40dd0c39f5033061235e0ff96bc74d
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14@sha256:a76e2580c8ace552b14b94797ad1aed98f40dd0c39f5033061235e0ff96bc74d
|
||||
+ - name: che-java11-gradle-@sha256:968cdd17787438a7606a1b76db696a35a8c0b598c6e1af4ca9a169639825e881
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:968cdd17787438a7606a1b76db696a35a8c0b598c6e1af4ca9a169639825e881
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle@sha256:968cdd17787438a7606a1b76db696a35a8c0b598c6e1af4ca9a169639825e881
|
||||
+ - name: che-java11-maven-@sha256:db6e8c64df119b43345195572ea3604384711d4091acb7abd7b06ae3f8599957
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:db6e8c64df119b43345195572ea3604384711d4091acb7abd7b06ae3f8599957
|
||||
+ # tag: quay.io/eclipse/che-java11-maven@sha256:db6e8c64df119b43345195572ea3604384711d4091acb7abd7b06ae3f8599957
|
||||
+ - name: che-java8-maven-@sha256:f30d3ff03a8aa46e74ff860fde5df15ebcdcf85b8f65cfc6acf3cbd31a7cb46f
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:f30d3ff03a8aa46e74ff860fde5df15ebcdcf85b8f65cfc6acf3cbd31a7cb46f
|
||||
+ # tag: quay.io/eclipse/che-java8-maven@sha256:f30d3ff03a8aa46e74ff860fde5df15ebcdcf85b8f65cfc6acf3cbd31a7cb46f
|
||||
- name: che-jwtproxy-fd94e60
|
||||
image: quay.io/eclipse/che-jwtproxy@sha256:eb2c1707be990a9928bc2cab08c2b5f421659c5d65240f73cde192bf6378cecd
|
||||
# tag: quay.io/eclipse/che-jwtproxy:fd94e60
|
||||
- name: che-jwtproxy-@sha256:eb2c1707be990a9928bc2cab08c2b5f421659c5d65240f73cde192bf6378cecd
|
||||
image: quay.io/eclipse/che-jwtproxy@sha256:eb2c1707be990a9928bc2cab08c2b5f421659c5d65240f73cde192bf6378cecd
|
||||
# tag: quay.io/eclipse/che-jwtproxy@sha256:eb2c1707be990a9928bc2cab08c2b5f421659c5d65240f73cde192bf6378cecd
|
||||
- - name: che-keycloak-7.17.1
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:f1ace9404aca36084a353fa7d2b77b3abba30655323d6d2936d1a006a98d0dcf
|
||||
- # tag: quay.io/eclipse/che-keycloak:7.17.1
|
||||
- - name: che-keycloak-@sha256:f1ace9404aca36084a353fa7d2b77b3abba30655323d6d2936d1a006a98d0dcf
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:f1ace9404aca36084a353fa7d2b77b3abba30655323d6d2936d1a006a98d0dcf
|
||||
- # tag: quay.io/eclipse/che-keycloak@sha256:f1ace9404aca36084a353fa7d2b77b3abba30655323d6d2936d1a006a98d0dcf
|
||||
+ - name: che-keycloak-7.17.2
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:1ecb8a2784f9af1c6e47dc1dd2cdf6adf3716828cee758b03b27c60d812a6123
|
||||
+ # tag: quay.io/eclipse/che-keycloak:7.17.2
|
||||
+ - name: che-keycloak-@sha256:1ecb8a2784f9af1c6e47dc1dd2cdf6adf3716828cee758b03b27c60d812a6123
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:1ecb8a2784f9af1c6e47dc1dd2cdf6adf3716828cee758b03b27c60d812a6123
|
||||
+ # tag: quay.io/eclipse/che-keycloak@sha256:1ecb8a2784f9af1c6e47dc1dd2cdf6adf3716828cee758b03b27c60d812a6123
|
||||
- name: che-machine-exec-@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583
|
||||
# tag: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583
|
||||
@@ -690,6 +696,9 @@
|
||||
- name: che-machine-exec-@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972
|
||||
# tag: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972
|
||||
+ - name: che-machine-exec-@sha256:ad4f8e587e0218141ecc278b0483ea639e897556cc4302850f491d77c652642b
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:ad4f8e587e0218141ecc278b0483ea639e897556cc4302850f491d77c652642b
|
||||
+ # tag: quay.io/eclipse/che-machine-exec@sha256:ad4f8e587e0218141ecc278b0483ea639e897556cc4302850f491d77c652642b
|
||||
- name: che-machine-exec-@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a
|
||||
# tag: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a
|
||||
@@ -702,21 +711,21 @@
|
||||
- name: che-machine-exec-@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f
|
||||
# tag: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f
|
||||
- - name: che-machine-exec-@sha256:e9bbeeb6225fc111b71bb51a85d660922b1891006e1cce95545358007c3b6a60
|
||||
- image: quay.io/eclipse/che-machine-exec@sha256:e9bbeeb6225fc111b71bb51a85d660922b1891006e1cce95545358007c3b6a60
|
||||
- # tag: quay.io/eclipse/che-machine-exec@sha256:e9bbeeb6225fc111b71bb51a85d660922b1891006e1cce95545358007c3b6a60
|
||||
- - name: che-nodejs10-community-@sha256:ec25ac5af19096dabc3a9199f819d00ec319c6d469a7d3b49a945d68083e5ce1
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:ec25ac5af19096dabc3a9199f819d00ec319c6d469a7d3b49a945d68083e5ce1
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community@sha256:ec25ac5af19096dabc3a9199f819d00ec319c6d469a7d3b49a945d68083e5ce1
|
||||
- - name: che-nodejs10-ubi-@sha256:6d0fda5c67493f2f3091c81ad2c48ede8138beefda278a84656ab9b67afe631c
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:6d0fda5c67493f2f3091c81ad2c48ede8138beefda278a84656ab9b67afe631c
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:6d0fda5c67493f2f3091c81ad2c48ede8138beefda278a84656ab9b67afe631c
|
||||
- - name: che-nodejs8-centos-@sha256:50b949658749b8253dd31d1a08c99a1343d9a7e8afee072ddd7139d5670410d5
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:50b949658749b8253dd31d1a08c99a1343d9a7e8afee072ddd7139d5670410d5
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos@sha256:50b949658749b8253dd31d1a08c99a1343d9a7e8afee072ddd7139d5670410d5
|
||||
- - name: che-php-7-@sha256:7b805dbae6868d969f6e7b26edfbbffb0327d867db39fa325f5cde8987ba468a
|
||||
- image: quay.io/eclipse/che-php-7@sha256:7b805dbae6868d969f6e7b26edfbbffb0327d867db39fa325f5cde8987ba468a
|
||||
- # tag: quay.io/eclipse/che-php-7@sha256:7b805dbae6868d969f6e7b26edfbbffb0327d867db39fa325f5cde8987ba468a
|
||||
+ - 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:0ea0b7529c2adbdf96c68754df98e529b4d0e1d18651642c1b93707391bd0c25
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:0ea0b7529c2adbdf96c68754df98e529b4d0e1d18651642c1b93707391bd0c25
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community@sha256:0ea0b7529c2adbdf96c68754df98e529b4d0e1d18651642c1b93707391bd0c25
|
||||
+ - name: che-nodejs10-ubi-@sha256:f64611b71b33e50ecb5856bf09574685cca9b0dcc32ffbd9d73f231a2c683cdd
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:f64611b71b33e50ecb5856bf09574685cca9b0dcc32ffbd9d73f231a2c683cdd
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:f64611b71b33e50ecb5856bf09574685cca9b0dcc32ffbd9d73f231a2c683cdd
|
||||
+ - name: che-nodejs8-centos-@sha256:d4e9c1d07858133fb6c046c7b48bc4b5b22c1763f5e2d17bf467d78621f82235
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:d4e9c1d07858133fb6c046c7b48bc4b5b22c1763f5e2d17bf467d78621f82235
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos@sha256:d4e9c1d07858133fb6c046c7b48bc4b5b22c1763f5e2d17bf467d78621f82235
|
||||
+ - name: che-php-7-@sha256:42c841344695c84252b2bb1fdbe57379f53df9e065a79a4dd9c9ed8ee8072ab5
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:42c841344695c84252b2bb1fdbe57379f53df9e065a79a4dd9c9ed8ee8072ab5
|
||||
+ # tag: quay.io/eclipse/che-php-7@sha256:42c841344695c84252b2bb1fdbe57379f53df9e065a79a4dd9c9ed8ee8072ab5
|
||||
- name: che-plugin-artifacts-broker-@sha256:ff18c43697fcae7467abf081a0edef7406576a5e1ea8ed68f08c1d7060d250e6
|
||||
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:ff18c43697fcae7467abf081a0edef7406576a5e1ea8ed68f08c1d7060d250e6
|
||||
# tag: quay.io/eclipse/che-plugin-artifacts-broker@sha256:ff18c43697fcae7467abf081a0edef7406576a5e1ea8ed68f08c1d7060d250e6
|
||||
@@ -729,27 +738,27 @@
|
||||
- name: che-plugin-metadata-broker-v3.2.0
|
||||
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:5dc11a7cb6bad79219644377f42e5f9fbcd5a75fec76662b9804e56789558cc6
|
||||
# tag: quay.io/eclipse/che-plugin-metadata-broker:v3.2.0
|
||||
- - name: che-plugin-registry-7.17.1
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:1176941ab8a7689139357a284b51bed77e9aca5dab2ff2436626744d2ddb8ec7
|
||||
- # tag: quay.io/eclipse/che-plugin-registry:7.17.1
|
||||
- - name: che-plugin-registry-@sha256:1176941ab8a7689139357a284b51bed77e9aca5dab2ff2436626744d2ddb8ec7
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:1176941ab8a7689139357a284b51bed77e9aca5dab2ff2436626744d2ddb8ec7
|
||||
- # tag: quay.io/eclipse/che-plugin-registry@sha256:1176941ab8a7689139357a284b51bed77e9aca5dab2ff2436626744d2ddb8ec7
|
||||
- - name: che-python-3.7-@sha256:759ccb69f68dc3cef20049ee34288863e34bbb1206d1afcd56d3fc5cd0f6118d
|
||||
- image: quay.io/eclipse/che-python-3.7@sha256:759ccb69f68dc3cef20049ee34288863e34bbb1206d1afcd56d3fc5cd0f6118d
|
||||
- # tag: quay.io/eclipse/che-python-3.7@sha256:759ccb69f68dc3cef20049ee34288863e34bbb1206d1afcd56d3fc5cd0f6118d
|
||||
- - name: che-quarkus-@sha256:f105c6499eb4a84f59df839c8a0b06f5bd3b5e035f741dd88f36d116a313029e
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:f105c6499eb4a84f59df839c8a0b06f5bd3b5e035f741dd88f36d116a313029e
|
||||
- # tag: quay.io/eclipse/che-quarkus@sha256:f105c6499eb4a84f59df839c8a0b06f5bd3b5e035f741dd88f36d116a313029e
|
||||
- - name: che-rust-1.39-@sha256:bdec3ecf2c0c808928fbebb7727cadf4235fb22bac60409185f8506ff7dfbc7b
|
||||
- image: quay.io/eclipse/che-rust-1.39@sha256:bdec3ecf2c0c808928fbebb7727cadf4235fb22bac60409185f8506ff7dfbc7b
|
||||
- # tag: quay.io/eclipse/che-rust-1.39@sha256:bdec3ecf2c0c808928fbebb7727cadf4235fb22bac60409185f8506ff7dfbc7b
|
||||
- - name: che-server-7.17.1
|
||||
- image: quay.io/eclipse/che-server@sha256:26188dc1f878c2e35f2be55b2a01f923cc4966426c932e95f3ae3c501965aa05
|
||||
- # tag: quay.io/eclipse/che-server:7.17.1
|
||||
- - name: che-server-@sha256:26188dc1f878c2e35f2be55b2a01f923cc4966426c932e95f3ae3c501965aa05
|
||||
- image: quay.io/eclipse/che-server@sha256:26188dc1f878c2e35f2be55b2a01f923cc4966426c932e95f3ae3c501965aa05
|
||||
- # tag: quay.io/eclipse/che-server@sha256:26188dc1f878c2e35f2be55b2a01f923cc4966426c932e95f3ae3c501965aa05
|
||||
+ - name: che-plugin-registry-7.17.2
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:eeb0f9018f95a43cd2a33bd2a79ef39596b1bbf198104e3292e97fd3a698deb1
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry:7.17.2
|
||||
+ - name: che-plugin-registry-@sha256:eeb0f9018f95a43cd2a33bd2a79ef39596b1bbf198104e3292e97fd3a698deb1
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:eeb0f9018f95a43cd2a33bd2a79ef39596b1bbf198104e3292e97fd3a698deb1
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry@sha256:eeb0f9018f95a43cd2a33bd2a79ef39596b1bbf198104e3292e97fd3a698deb1
|
||||
+ - name: che-python-3.7-@sha256:bf76275b221651ca97477c07cca36d949145645c8632a90c91aec69d0f1cd92e
|
||||
+ image: quay.io/eclipse/che-python-3.7@sha256:bf76275b221651ca97477c07cca36d949145645c8632a90c91aec69d0f1cd92e
|
||||
+ # tag: quay.io/eclipse/che-python-3.7@sha256:bf76275b221651ca97477c07cca36d949145645c8632a90c91aec69d0f1cd92e
|
||||
+ - name: che-quarkus-@sha256:2bbf8514041c85a00634302cf8ba7bf647cab9a5a85cbc6d0738b6f6ac45be8c
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:2bbf8514041c85a00634302cf8ba7bf647cab9a5a85cbc6d0738b6f6ac45be8c
|
||||
+ # tag: quay.io/eclipse/che-quarkus@sha256:2bbf8514041c85a00634302cf8ba7bf647cab9a5a85cbc6d0738b6f6ac45be8c
|
||||
+ - name: che-rust-1.39-@sha256:1263ec41219f2309d9decf22fb400f76194128ae1a42a5e5ec63e641c6058a88
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:1263ec41219f2309d9decf22fb400f76194128ae1a42a5e5ec63e641c6058a88
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39@sha256:1263ec41219f2309d9decf22fb400f76194128ae1a42a5e5ec63e641c6058a88
|
||||
+ - name: che-server-7.17.2
|
||||
+ image: quay.io/eclipse/che-server@sha256:3177bd19d27c84e4b5d30ca3231a35bec8ee26bc8a31e5c54b0d37e5b9ed94b1
|
||||
+ # tag: quay.io/eclipse/che-server:7.17.2
|
||||
+ - name: che-server-@sha256:3177bd19d27c84e4b5d30ca3231a35bec8ee26bc8a31e5c54b0d37e5b9ed94b1
|
||||
+ image: quay.io/eclipse/che-server@sha256:3177bd19d27c84e4b5d30ca3231a35bec8ee26bc8a31e5c54b0d37e5b9ed94b1
|
||||
+ # tag: quay.io/eclipse/che-server@sha256:3177bd19d27c84e4b5d30ca3231a35bec8ee26bc8a31e5c54b0d37e5b9ed94b1
|
||||
- name: che-sidecar-camelk-@sha256:244c2eea2a9bde83a8a5b67a645f60e344ae3a939a66d0d5d780ac6594e1a244
|
||||
image: quay.io/eclipse/che-sidecar-camelk@sha256:244c2eea2a9bde83a8a5b67a645f60e344ae3a939a66d0d5d780ac6594e1a244
|
||||
# tag: quay.io/eclipse/che-sidecar-camelk@sha256:244c2eea2a9bde83a8a5b67a645f60e344ae3a939a66d0d5d780ac6594e1a244
|
||||
@@ -858,6 +867,9 @@
|
||||
- name: che-theia-endpoint-runtime-binary-@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f
|
||||
image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f
|
||||
# tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f
|
||||
+ - name: che-theia-endpoint-runtime-binary-@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb
|
||||
- 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
|
||||
@@ -879,6 +891,9 @@
|
||||
- name: che-theia-@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0
|
||||
image: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0
|
||||
# tag: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0
|
||||
+ - name: che-theia-@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822
|
||||
+ image: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822
|
||||
+ # tag: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822
|
||||
- name: che-theia-@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441
|
||||
image: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441
|
||||
# tag: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441
|
||||
@@ -954,8 +969,11 @@
|
||||
- name: che-machine-exec-7.17.1
|
||||
image: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972
|
||||
# tag: quay.io/eclipse/che-machine-exec:7.17.1
|
||||
+ - name: che-machine-exec-7.17.2
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06
|
||||
+ # tag: quay.io/eclipse/che-machine-exec:7.17.2
|
||||
- name: che-machine-exec-nightly
|
||||
- image: quay.io/eclipse/che-machine-exec@sha256:e9bbeeb6225fc111b71bb51a85d660922b1891006e1cce95545358007c3b6a60
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:ad4f8e587e0218141ecc278b0483ea639e897556cc4302850f491d77c652642b
|
||||
# tag: quay.io/eclipse/che-machine-exec:nightly
|
||||
- name: che-sidecar-camelk-0.0.10-70f9d17
|
||||
image: quay.io/eclipse/che-sidecar-camelk@sha256:244c2eea2a9bde83a8a5b67a645f60e344ae3a939a66d0d5d780ac6594e1a244
|
||||
@@ -1074,6 +1092,9 @@
|
||||
- name: che-theia-endpoint-runtime-binary-7.17.1
|
||||
image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8
|
||||
# tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.1
|
||||
+ - name: che-theia-endpoint-runtime-binary-7.17.2
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.2
|
||||
- name: che-theia-7.15.0
|
||||
image: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944
|
||||
# tag: quay.io/eclipse/che-theia:7.15.0
|
||||
@@ -1098,54 +1119,57 @@
|
||||
- name: che-theia-7.17.1
|
||||
image: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441
|
||||
# tag: quay.io/eclipse/che-theia:7.17.1
|
||||
+ - name: che-theia-7.17.2
|
||||
+ image: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822
|
||||
+ # tag: quay.io/eclipse/che-theia:7.17.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.17.1
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:8c8b9cbcba17f5db2a4fdf5d180d49d73f232d7617087809acc695499f0e2a0d
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7:7.17.1
|
||||
- - name: che-dotnet-2.2-7.17.1
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:3a84ab1f312cea4c5dad70d7605531c7ccbdda879062d3b00f69319ac807c99d
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2:7.17.1
|
||||
- - name: che-dotnet-3.1-7.17.1
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:c89025f5a01729cc69871a1a4e97c738650dfce7ab9e79f483f02b80a7e6d44b
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1:7.17.1
|
||||
- - name: che-golang-1.14-7.17.1
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:8b9d0534b0aab7cd0e04c5638edc2cad709a9b23f3c31c8f968d1755dd8ca0ac
|
||||
- # tag: quay.io/eclipse/che-golang-1.14:7.17.1
|
||||
- - name: che-java11-gradle-7.17.1
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:35a946f17d0e1435958c4e2fae65e616e5a7d096610e16f75eef78d8b85644af
|
||||
- # tag: quay.io/eclipse/che-java11-gradle:7.17.1
|
||||
- - name: che-java11-maven-7.17.1
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:5e2c3e23f43775e7a2d23d58ed11a9571a147dbc5ebb60a15066943079b259e9
|
||||
- # tag: quay.io/eclipse/che-java11-maven:7.17.1
|
||||
- - name: che-java8-maven-7.17.1
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:4c7a2f543b37f9a090fc6656ff3d37a82ee6093c161f9b0e425644782fec113a
|
||||
- # tag: quay.io/eclipse/che-java8-maven:7.17.1
|
||||
- - name: che-nodejs10-community-7.17.1
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:ec25ac5af19096dabc3a9199f819d00ec319c6d469a7d3b49a945d68083e5ce1
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community:7.17.1
|
||||
- - name: che-nodejs10-ubi-7.17.1
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:6d0fda5c67493f2f3091c81ad2c48ede8138beefda278a84656ab9b67afe631c
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.17.1
|
||||
- - name: che-nodejs8-centos-7.17.1
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:50b949658749b8253dd31d1a08c99a1343d9a7e8afee072ddd7139d5670410d5
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos:7.17.1
|
||||
- - name: che-php-7-7.17.1
|
||||
- image: quay.io/eclipse/che-php-7@sha256:7b805dbae6868d969f6e7b26edfbbffb0327d867db39fa325f5cde8987ba468a
|
||||
- # tag: quay.io/eclipse/che-php-7:7.17.1
|
||||
- - name: che-python-3.7-7.17.1
|
||||
- image: quay.io/eclipse/che-python-3.7@sha256:759ccb69f68dc3cef20049ee34288863e34bbb1206d1afcd56d3fc5cd0f6118d
|
||||
- # tag: quay.io/eclipse/che-python-3.7:7.17.1
|
||||
- - name: che-quarkus-7.17.1
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:f105c6499eb4a84f59df839c8a0b06f5bd3b5e035f741dd88f36d116a313029e
|
||||
- # tag: quay.io/eclipse/che-quarkus:7.17.1
|
||||
- - name: che-rust-1.39-7.17.1
|
||||
- image: quay.io/eclipse/che-rust-1.39@sha256:bdec3ecf2c0c808928fbebb7727cadf4235fb22bac60409185f8506ff7dfbc7b
|
||||
- # tag: quay.io/eclipse/che-rust-1.39:7.17.1
|
||||
+ - name: che-cpp-rhel7-7.17.2
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:5a4876cd873fce286e5a5cd67b71fc7b1f1873479f4ebfeb4d14549433759b20
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.17.2
|
||||
+ - name: che-dotnet-2.2-7.17.2
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:67f9611fd73a7bf9baaf1353611f92d7b76f8c75c74780022dc770cfcb34e6bd
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.17.2
|
||||
+ - name: che-dotnet-3.1-7.17.2
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:89a32e00fe5b9887be44b5a3ee2a841000f397428ef476d09c8a7d741cc9701a
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.17.2
|
||||
+ - name: che-golang-1.14-7.17.2
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:a76e2580c8ace552b14b94797ad1aed98f40dd0c39f5033061235e0ff96bc74d
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14:7.17.2
|
||||
+ - name: che-java11-gradle-7.17.2
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:968cdd17787438a7606a1b76db696a35a8c0b598c6e1af4ca9a169639825e881
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle:7.17.2
|
||||
+ - name: che-java11-maven-7.17.2
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:db6e8c64df119b43345195572ea3604384711d4091acb7abd7b06ae3f8599957
|
||||
+ # tag: quay.io/eclipse/che-java11-maven:7.17.2
|
||||
+ - name: che-java8-maven-7.17.2
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:f30d3ff03a8aa46e74ff860fde5df15ebcdcf85b8f65cfc6acf3cbd31a7cb46f
|
||||
+ # tag: quay.io/eclipse/che-java8-maven:7.17.2
|
||||
+ - name: che-nodejs10-community-7.17.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:0ea0b7529c2adbdf96c68754df98e529b4d0e1d18651642c1b93707391bd0c25
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community:7.17.2
|
||||
+ - name: che-nodejs10-ubi-7.17.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:f64611b71b33e50ecb5856bf09574685cca9b0dcc32ffbd9d73f231a2c683cdd
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.17.2
|
||||
+ - name: che-nodejs8-centos-7.17.2
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:d4e9c1d07858133fb6c046c7b48bc4b5b22c1763f5e2d17bf467d78621f82235
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.17.2
|
||||
+ - name: che-php-7-7.17.2
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:42c841344695c84252b2bb1fdbe57379f53df9e065a79a4dd9c9ed8ee8072ab5
|
||||
+ # tag: quay.io/eclipse/che-php-7:7.17.2
|
||||
+ - name: che-python-3.7-7.17.2
|
||||
+ image: quay.io/eclipse/che-python-3.7@sha256:bf76275b221651ca97477c07cca36d949145645c8632a90c91aec69d0f1cd92e
|
||||
+ # tag: quay.io/eclipse/che-python-3.7:7.17.2
|
||||
+ - name: che-quarkus-7.17.2
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:2bbf8514041c85a00634302cf8ba7bf647cab9a5a85cbc6d0738b6f6ac45be8c
|
||||
+ # tag: quay.io/eclipse/che-quarkus:7.17.2
|
||||
+ - name: che-rust-1.39-7.17.2
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:1263ec41219f2309d9decf22fb400f76194128ae1a42a5e5ec63e641c6058a88
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39:7.17.2
|
||||
- name: ubi-minimal-
|
||||
image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:372622021a90893d9e25c298e045c804388c7666f3e756cd48f75d20172d9e55
|
||||
# tag: registry.access.redhat.com/ubi8/ubi-minimal
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
channels:
|
||||
- currentCSV: eclipse-che-preview-openshift.v9.9.9-nightly.1596725015
|
||||
name: nightly
|
||||
- currentCSV: eclipse-che-preview-openshift.v7.17.1
|
||||
- currentCSV: eclipse-che-preview-openshift.v7.17.2
|
||||
name: stable
|
||||
defaultChannel: stable
|
||||
packageName: eclipse-che-preview-openshift
|
||||
|
|
|
|||
Loading…
Reference in New Issue