Copy 7.26.2 csv to master (#688)
Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com> Co-authored-by: Mykhailo Kuznietsov <mkuznets@redhat.com>pull/691/head
parent
9ee19c9ef2
commit
febf5307bf
|
|
@ -0,0 +1,817 @@
|
|||
#
|
||||
# Copyright (c) 2012-2020 Red Hat, Inc.
|
||||
# This program and the accompanying materials are made
|
||||
# available under the terms of the Eclipse Public License 2.0
|
||||
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
||||
#
|
||||
# SPDX-License-Identifier: EPL-2.0
|
||||
#
|
||||
# Contributors:
|
||||
# Red Hat, Inc. - initial API and implementation
|
||||
apiVersion: apiextensions.k8s.io/v1beta1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: checlusters.org.eclipse.che
|
||||
spec:
|
||||
group: org.eclipse.che
|
||||
names:
|
||||
kind: CheCluster
|
||||
listKind: CheClusterList
|
||||
plural: checlusters
|
||||
singular: checluster
|
||||
scope: Namespaced
|
||||
subresources:
|
||||
status: {}
|
||||
validation:
|
||||
openAPIV3Schema:
|
||||
description: The `CheCluster` custom resource allows defining and managing a
|
||||
Che server installation
|
||||
properties:
|
||||
apiVersion:
|
||||
description: 'APIVersion defines the versioned schema of this representation
|
||||
of an object. Servers should convert recognized schemas to the latest
|
||||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
||||
type: string
|
||||
kind:
|
||||
description: 'Kind is a string value representing the REST resource this
|
||||
object represents. Servers may infer this from the endpoint the client
|
||||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
||||
type: string
|
||||
metadata:
|
||||
type: object
|
||||
spec:
|
||||
description: Desired configuration of the Che installation. Based on these
|
||||
settings, the Operator automatically creates and maintains several ConfigMaps
|
||||
that will contain the appropriate environment variables the various components
|
||||
of the Che installation. These generated ConfigMaps must 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 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. When `externalIdentityProvider` is `true`, no
|
||||
dedicated identity provider will be deployed by the Operator and
|
||||
you will need to provide details about the external identity provider
|
||||
you are about to use. See also all the other fields starting with:
|
||||
`identityProvider`.'
|
||||
type: boolean
|
||||
identityProviderAdminUserName:
|
||||
description: Overrides the name of the Identity Provider administrator
|
||||
user. Defaults to `admin`.
|
||||
type: string
|
||||
identityProviderClientId:
|
||||
description: Name of a Identity provider, Keycloak or RH-SSO, `client-id`
|
||||
that is used for Che. This is useful to override it ONLY if you
|
||||
use an external Identity Provider. See the `externalIdentityProvider`
|
||||
field. When omitted or left blank, it is set to the value of the
|
||||
`flavour` field suffixed with `-public`.
|
||||
type: string
|
||||
identityProviderContainerResources:
|
||||
description: Identity provider container custom settings.
|
||||
properties:
|
||||
limits:
|
||||
description: Limits describes the maximum amount of compute
|
||||
resources allowed.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
request:
|
||||
description: Requests describes the minimum amount of compute
|
||||
resources required.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
identityProviderImage:
|
||||
description: Overrides the container image used in the Identity
|
||||
Provider, Keycloak or RH-SSO, deployment. This includes the image
|
||||
tag. Omit it or leave it empty to use the default container image
|
||||
provided by the Operator.
|
||||
type: string
|
||||
identityProviderImagePullPolicy:
|
||||
description: Overrides the image pull policy used in the Identity
|
||||
Provider, Keycloak or RH-SSO, deployment. Default value is `Always`
|
||||
for `nightly` or `latest` images, and `IfNotPresent` in other
|
||||
cases.
|
||||
type: string
|
||||
identityProviderIngress:
|
||||
description: Ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
identityProviderPassword:
|
||||
description: Overrides the password of Keycloak administrator user.
|
||||
This is useful to override it ONLY if you use an external Identity
|
||||
Provider. See the `externalIdentityProvider` field. When omitted
|
||||
or left blank, it is set to an auto-generated password.
|
||||
type: string
|
||||
identityProviderPostgresPassword:
|
||||
description: Password for a Identity Provider, Keycloak or 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. When omitted or left blank, it is set to an auto-generated
|
||||
password.
|
||||
type: string
|
||||
identityProviderPostgresSecret:
|
||||
description: 'The secret that contains `password` for the Identity
|
||||
Provider, Keycloak or RH-SSO, to connect to the database. When
|
||||
the secret is defined, the `identityProviderPostgresPassword`
|
||||
is ignored. When the value is omitted or left blank, the one of
|
||||
following scenarios applies: 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 or RH-SSO, realm
|
||||
that is used for Che. This is useful to override it ONLY if you
|
||||
use an external Identity Provider. See the `externalIdentityProvider`
|
||||
field. When omitted or left blank, it is set to the value of the
|
||||
`flavour` field.
|
||||
type: string
|
||||
identityProviderRoute:
|
||||
description: Route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
identityProviderSecret:
|
||||
description: 'The secret that contains `user` and `password` for
|
||||
Identity Provider. When the secret is defined, the `identityProviderAdminUserName`
|
||||
and `identityProviderPassword` are ignored. When the value is
|
||||
omitted or left blank, the one of following scenarios applies:
|
||||
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). Set this ONLY when a use of an external Identity
|
||||
Provider is needed. See the `externalIdentityProvider` field.
|
||||
By default, this will be automatically calculated and set by the
|
||||
Operator.
|
||||
type: string
|
||||
oAuthClientName:
|
||||
description: Name of the OpenShift `OAuthClient` resource used to
|
||||
setup identity federation on the OpenShift side. Auto-generated
|
||||
if left blank. See also the `OpenShiftoAuth` field.
|
||||
type: string
|
||||
oAuthSecret:
|
||||
description: Name of the secret set in the OpenShift `OAuthClient`
|
||||
resource used to setup identity federation on the OpenShift side.
|
||||
Auto-generated if left blank. See also the `OAuthClientName` field.
|
||||
type: string
|
||||
openShiftoAuth:
|
||||
description: 'Enables the integration of the identity provider (Keycloak
|
||||
/ RHSSO) with OpenShift OAuth. Empty value on OpenShift by default.
|
||||
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:
|
||||
chePostgresContainerResources:
|
||||
description: PostgreSQL container custom settings
|
||||
properties:
|
||||
limits:
|
||||
description: Limits describes the maximum amount of compute
|
||||
resources allowed.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
request:
|
||||
description: Requests describes the minimum amount of compute
|
||||
resources required.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
chePostgresDb:
|
||||
description: PostgreSQL database name that the Che server uses to
|
||||
connect to the DB. Defaults to `dbche`.
|
||||
type: string
|
||||
chePostgresHostName:
|
||||
description: PostgreSQL Database host name that the Che server uses
|
||||
to connect to. Defaults to postgres. Override this value 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: PostgreSQL password that the Che server uses to connect
|
||||
to the DB. When omitted or left blank, it will be set to an automatically
|
||||
generated value.
|
||||
type: string
|
||||
chePostgresPort:
|
||||
description: PostgreSQL Database port that the Che server uses to
|
||||
connect to. Defaults to 5432. Override this value 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 PosgreSQL`user` and `password`
|
||||
that the Che server uses to connect to the DB. When the secret
|
||||
is defined, the `chePostgresUser` and `chePostgresPassword` are
|
||||
ignored. When the value is omitted or left blank, the one of following
|
||||
scenarios applies: 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: PostgreSQL user that the Che server uses to connect
|
||||
to the DB. Defaults to `pgche`.
|
||||
type: string
|
||||
externalDb:
|
||||
description: 'Instructs the Operator on whether to deploy a dedicated
|
||||
database. By default, a dedicated PostgreSQL database is deployed
|
||||
as part of the Che installation. When `externalDb` is `true`,
|
||||
no dedicated database will be deployed by the Operator and you
|
||||
will need to provide connection details to the external DB you
|
||||
are about to use. See also all the fields starting with: `chePostgres`.'
|
||||
type: boolean
|
||||
postgresImage:
|
||||
description: Overrides the container image used in the PosgreSQL
|
||||
database deployment. This includes the image tag. Omit it or leave
|
||||
it empty to use the default container image provided by the Operator.
|
||||
type: string
|
||||
postgresImagePullPolicy:
|
||||
description: Overrides the image pull policy used in the PosgreSQL
|
||||
database deployment. Default value is `Always` for `nightly` or
|
||||
`latest` images, and `IfNotPresent` in other cases.
|
||||
type: string
|
||||
type: object
|
||||
imagePuller:
|
||||
description: Kubernetes Image Puller configuration
|
||||
properties:
|
||||
enable:
|
||||
description: "Install and configure the Community Supported Kubernetes
|
||||
Image Puller Operator. If true and no spec is provided, it will
|
||||
create a default KubernetesImagePuller object to be managed by
|
||||
the Operator. If false, the KubernetesImagePuller object will
|
||||
be deleted, and the Operator will be uninstalled, regardless of
|
||||
whether a spec is provided. \n Note that while this the Operator
|
||||
and its behavior is community-supported, its payload may be commercially-supported
|
||||
if you use it for pulling commercially-supported images."
|
||||
type: boolean
|
||||
spec:
|
||||
description: A KubernetesImagePullerSpec to configure the image
|
||||
puller in the CheCluster
|
||||
properties:
|
||||
cachingCPULimit:
|
||||
type: string
|
||||
cachingCPURequest:
|
||||
type: string
|
||||
cachingIntervalHours:
|
||||
type: string
|
||||
cachingMemoryLimit:
|
||||
type: string
|
||||
cachingMemoryRequest:
|
||||
type: string
|
||||
configMapName:
|
||||
type: string
|
||||
daemonsetName:
|
||||
type: string
|
||||
deploymentName:
|
||||
type: string
|
||||
images:
|
||||
type: string
|
||||
nodeSelector:
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
k8s:
|
||||
description: Configuration settings specific to Che installations made
|
||||
on upstream Kubernetes.
|
||||
properties:
|
||||
ingressClass:
|
||||
description: 'Ingress class that will define the which controller
|
||||
will manage ingresses. Defaults to `nginx`. NB: This drives the
|
||||
`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. Options are: `multi-host`
|
||||
(host is explicitly provided in ingress), `single-host` (host
|
||||
is provided, path-based rules) and `default-host` (no host is
|
||||
provided, path-based rules). Defaults to `multi-host` Deprecated
|
||||
in favor of `serverExposureStrategy` in the `server` section,
|
||||
which defines this regardless of the cluster type. When both are
|
||||
defined, the `serverExposureStrategy` option takes precedence.'
|
||||
type: string
|
||||
securityContextFsGroup:
|
||||
description: The FSGroup in which the Che Pod and workspace Pods
|
||||
containers runs in. Default value is `1724`.
|
||||
type: string
|
||||
securityContextRunAsUser:
|
||||
description: ID of the user the Che Pod and workspace Pods containers
|
||||
run as. Default value is `1724`.
|
||||
type: string
|
||||
singleHostExposureType:
|
||||
description: When the serverExposureStrategy is set to `single-host`,
|
||||
the way the server, registries and workspaces are exposed is further
|
||||
configured by this property. The possible values are `native`,
|
||||
which means that the server and workspaces are exposed using ingresses
|
||||
on K8s or `gateway` where the server and workspaces are exposed
|
||||
using a custom gateway based on Traefik. All the endpoints whether
|
||||
backed by the ingress or gateway `route` always point to the subpaths
|
||||
on the same domain. Defaults to `native`.
|
||||
type: string
|
||||
tlsSecretName:
|
||||
description: Name of a secret that will be used to setup ingress
|
||||
TLS termination when TLS is enabled. When the field is empty string,
|
||||
the default cluster certificate will be used. 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` the 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 host name, or URL, to an alternate container
|
||||
registry to pull images from. This value overrides the container
|
||||
registry host name defined in all the default container images
|
||||
involved in a Che deployment. This is particularly useful to install
|
||||
Che in a restricted 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
|
||||
Eclipse Che in a restricted environment.
|
||||
type: string
|
||||
allowUserDefinedWorkspaceNamespaces:
|
||||
description: Defines that a user is allowed to specify a Kubernetes
|
||||
namespace, or an OpenShift project, which differs from the default.
|
||||
It's NOT RECOMMENDED to set to `true` without OpenShift OAuth
|
||||
configured. The OpenShift infrastructure also uses this property.
|
||||
type: boolean
|
||||
cheClusterRoles:
|
||||
description: A comma-separated list of ClusterRoles that will be
|
||||
assigned to Che ServiceAccount. Be aware that the Che Operator
|
||||
has to already have all permissions in these ClusterRoles to grant
|
||||
them.
|
||||
type: string
|
||||
cheDebug:
|
||||
description: Enables the debug mode for Che server. Defaults to
|
||||
`false`.
|
||||
type: string
|
||||
cheFlavor:
|
||||
description: Specifies a variation of the installation. The options
|
||||
are `che` for upstream Che installations, or `codeready` for CodeReady
|
||||
Workspaces installation. If not necessary, do not override the
|
||||
default value.
|
||||
type: string
|
||||
cheHost:
|
||||
description: Public host name of the installed Che server. When
|
||||
value is omitted, the value it will be automatically set by the
|
||||
Operator. See the `cheHostTLSSecret` field.
|
||||
type: string
|
||||
cheHostTLSSecret:
|
||||
description: Name of a secret containing certificates to secure
|
||||
ingress or route for the custom host name of the installed Che
|
||||
server. See the `cheHost` field.
|
||||
type: string
|
||||
cheImage:
|
||||
description: Overrides the container image used in Che deployment.
|
||||
This does NOT include the container image tag. Omit it or leave
|
||||
it empty to use the default 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 default image
|
||||
tag provided by the Operator.
|
||||
type: string
|
||||
cheLogLevel:
|
||||
description: 'Log level for the Che server: `INFO` or `DEBUG`. Defaults
|
||||
to `INFO`.'
|
||||
type: string
|
||||
cheServerIngress:
|
||||
description: The Che server ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
cheServerRoute:
|
||||
description: The Che server route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
cheWorkspaceClusterRole:
|
||||
description: Custom cluster role bound to the user for the Che workspaces.
|
||||
The default roles are used if this is omitted or left blank.
|
||||
type: string
|
||||
customCheProperties:
|
||||
additionalProperties:
|
||||
type: string
|
||||
description: Map of additional environment variables that will be
|
||||
applied in the generated `che` configMap to be used by the Che
|
||||
server, in addition to the values already generated from other
|
||||
fields of the `CheCluster` custom resource (CR). When `customCheProperties`
|
||||
contains a property that would be normally generated in `che`
|
||||
configMap from other CR fields, the value defined in the `customCheProperties`
|
||||
is used instead.
|
||||
type: object
|
||||
devfileRegistryCpuLimit:
|
||||
description: Overrides the CPU limit used in the devfile registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 500m.
|
||||
type: string
|
||||
devfileRegistryCpuRequest:
|
||||
description: Overrides the CPU request used in the devfile registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 100m.
|
||||
type: string
|
||||
devfileRegistryImage:
|
||||
description: Overrides the container image used in the devfile registry
|
||||
deployment. This includes the image tag. Omit it or leave it empty
|
||||
to use the default container image provided by the Operator.
|
||||
type: string
|
||||
devfileRegistryIngress:
|
||||
description: The devfile registry ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
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
|
||||
devfileRegistryRoute:
|
||||
description: The devfile registry route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
devfileRegistryUrl:
|
||||
description: Public URL of the devfile registry, that serves sample,
|
||||
ready-to-use devfiles. Set this ONLY when a use of an external
|
||||
devfile registry is needed. See the `externalDevfileRegistry`
|
||||
field. By default, this will be automatically calculated by the
|
||||
Operator.
|
||||
type: string
|
||||
externalDevfileRegistry:
|
||||
description: Instructs the Operator on whether to deploy a dedicated
|
||||
devfile registry server. By default, a dedicated devfile registry
|
||||
server is started. When `externalDevfileRegistry` is `true`, 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 to deploy a dedicated
|
||||
plugin registry server. By default, a dedicated plugin registry
|
||||
server is started. When `externalPluginRegistry` is `true`, no
|
||||
such dedicated server will be started by the Operator and you
|
||||
will have to manually set the `pluginRegistryUrl` field.
|
||||
type: boolean
|
||||
gitSelfSignedCert:
|
||||
description: When enabled, the certificate from `che-git-self-signed-cert`
|
||||
configMap will be propagated to the Che components and provide
|
||||
particular configuration for Git.
|
||||
type: boolean
|
||||
nonProxyHosts:
|
||||
description: 'List of hosts that will be reached directly, bypassing
|
||||
the proxy. Specify wild card domain use the following form `.<DOMAIN>`
|
||||
and `|` as delimiter, for example: `localhost|.my.host.com|123.42.12.32`
|
||||
Only use when configuring a proxy is required. Operator respects
|
||||
OpenShift cluster wide proxy configuration and no additional configuration
|
||||
is required, but defining `nonProxyHosts` in a custom resource
|
||||
leads to merging non proxy hosts lists from the cluster proxy
|
||||
configuration and ones defined in the custom resources. See the
|
||||
doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html).
|
||||
See also the `proxyURL` fields.'
|
||||
type: string
|
||||
pluginRegistryCpuLimit:
|
||||
description: Overrides the CPU limit used in the plugin registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 500m.
|
||||
type: string
|
||||
pluginRegistryCpuRequest:
|
||||
description: Overrides the CPU request used in the plugin registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 100m.
|
||||
type: string
|
||||
pluginRegistryImage:
|
||||
description: Overrides the container image used in the plugin registry
|
||||
deployment. This includes the image tag. Omit it or leave it empty
|
||||
to use the default container image provided by the Operator.
|
||||
type: string
|
||||
pluginRegistryIngress:
|
||||
description: Plugin registry ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
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
|
||||
pluginRegistryRoute:
|
||||
description: Plugin registry route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
pluginRegistryUrl:
|
||||
description: Public URL of the plugin registry that serves sample
|
||||
ready-to-use devfiles. Set this ONLY if a use of an external devfile
|
||||
registry is needed. 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 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. When the secret is defined, the `proxyUser` and
|
||||
`proxyPassword` are ignored.
|
||||
type: string
|
||||
proxyURL:
|
||||
description: URL (protocol+host name) 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. The
|
||||
Che Operator will automatically detect if the router certificate
|
||||
is self-signed and propagate it to other components, such as the
|
||||
Che server.
|
||||
type: boolean
|
||||
serverCpuLimit:
|
||||
description: Overrides the CPU limit used in the Che server deployment
|
||||
In cores. (500m = .5 cores). Default to 1.
|
||||
type: string
|
||||
serverCpuRequest:
|
||||
description: Overrides the CPU request used in the Che server deployment
|
||||
In cores. (500m = .5 cores). Default to 100m.
|
||||
type: string
|
||||
serverExposureStrategy:
|
||||
description: Sets the server and workspaces exposure type. Possible
|
||||
values are `multi-host`, `single-host`, `default-host`. Defaults
|
||||
to `multi-host`, which creates a separate ingress, or OpenShift
|
||||
routes, for every required endpoint. `single-host` makes Che exposed
|
||||
on a single host name with workspaces exposed on subpaths. Read
|
||||
the docs to learn about the limitations of this approach. Also
|
||||
consult the `singleHostExposureType` property to further configure
|
||||
how the Operator and the Che server make that happen on Kubernetes.
|
||||
`default-host` exposes the Che server on the host of the cluster.
|
||||
Read the docs to learn about the limitations of this approach.
|
||||
type: string
|
||||
serverMemoryLimit:
|
||||
description: Overrides the memory limit used in the Che server deployment.
|
||||
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 configMap with public certificates to add
|
||||
to Java trust store of the Che server. This is often required
|
||||
when adding the OpenShift OAuth provider, which has HTTPS endpoint
|
||||
signed with self-signed cert. The Che server must be aware of
|
||||
its CA cert to be able to request it. This is disabled by default.
|
||||
type: string
|
||||
singleHostGatewayConfigMapLabels:
|
||||
additionalProperties:
|
||||
type: string
|
||||
description: The labels that need to be present in the configMaps
|
||||
representing the gateway configuration.
|
||||
type: object
|
||||
singleHostGatewayConfigSidecarImage:
|
||||
description: The image used for the gateway sidecar that provides
|
||||
configuration to the gateway. Omit it or leave it empty to use
|
||||
the default container image provided by the Operator.
|
||||
type: string
|
||||
singleHostGatewayImage:
|
||||
description: The image used for the gateway in the single host mode.
|
||||
Omit it or leave it empty to use the default container image provided
|
||||
by the Operator.
|
||||
type: string
|
||||
tlsSupport:
|
||||
description: Deprecated. Instructs the Operator to deploy Che in
|
||||
TLS mode. This is enabled by default. Disabling TLS sometimes
|
||||
cause malfunction of some Che components.
|
||||
type: boolean
|
||||
useInternalClusterSVCNames:
|
||||
description: Use internal cluster SVC names to communicate between
|
||||
components to speed up the traffic and avoid proxy issues. The
|
||||
default value is `false`.
|
||||
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,
|
||||
such as che-workspace-<username>. In that case, a new namespace
|
||||
will be created for each user or workspace. Is used by OpenShift
|
||||
infrastructure 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 PosgreSQL database. When omitted or left blank, a default
|
||||
storage class is used.
|
||||
type: string
|
||||
preCreateSubPaths:
|
||||
description: Instructs the Che server to start a special Pod to
|
||||
pre-create a sub-path in the Persistent Volumes. Defaults to `false`,
|
||||
however it will 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 default 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. When omitted or left blank, a 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 that a PosgreSQL instance has been correctly
|
||||
provisioned or not.
|
||||
type: boolean
|
||||
devfileRegistryURL:
|
||||
description: Public URL to the devfile registry.
|
||||
type: string
|
||||
gitHubOAuthProvisioned:
|
||||
description: Indicates whether an Identity Provider instance, Keycloak
|
||||
or RH-SSO, has been configured to integrate with the GitHub OAuth.
|
||||
type: boolean
|
||||
helpLink:
|
||||
description: A URL that points to some URL where to find help related
|
||||
to the current Operator status.
|
||||
type: string
|
||||
keycloakProvisioned:
|
||||
description: Indicates whether an Identity Provider instance, Keycloak
|
||||
or RH-SSO, has been provisioned with realm, client and user.
|
||||
type: boolean
|
||||
keycloakURL:
|
||||
description: Public URL to the Identity Provider server, Keycloak or
|
||||
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
|
||||
or 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,327 @@
|
|||
--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.1/eclipse-che-preview-kubernetes.v7.26.1.clusterserviceversion.yaml 2021-02-24 12:33:01.005622588 +0000
|
||||
+++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.2/eclipse-che-preview-kubernetes.v7.26.2.clusterserviceversion.yaml 2021-02-24 12:59:36.945760770 +0000
|
||||
@@ -83,14 +83,14 @@
|
||||
capabilities: Seamless Upgrades
|
||||
categories: Developer Tools
|
||||
certified: "false"
|
||||
- containerImage: quay.io/eclipse/che-operator@sha256:9dfaf85fa68129c08276d222003fbfa512598592993eadc0a9779751f41f46b0
|
||||
- createdAt: "2021-02-18T13:33:24Z"
|
||||
+ containerImage: quay.io/eclipse/che-operator@sha256:24c73101890325b907e26572850519c9fada7c27fa9a5e49d1bf4c360b89d6f6
|
||||
+ createdAt: "2021-02-24T12:58:29Z"
|
||||
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.26.1
|
||||
+ name: eclipse-che-preview-kubernetes.v7.26.2
|
||||
namespace: placeholder
|
||||
spec:
|
||||
apiservicedefinitions: {}
|
||||
@@ -463,13 +463,13 @@
|
||||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
- value: 7.26.1
|
||||
+ value: 7.26.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
- value: quay.io/eclipse/che-server@sha256:ba472af65542a3cc795e7352ae333330f1fd23492f040998b2288d3a98d3043d
|
||||
+ value: quay.io/eclipse/che-server@sha256:31761827f7059c26cbf6802d336c06fac3393ea052fd8440b4fd9d3af7902240
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
- value: quay.io/eclipse/che-plugin-registry@sha256:a1aada18f4b170152582e4b3fda3f28f6f95a2282e1a03afb2bc6ce2af513f8d
|
||||
+ value: quay.io/eclipse/che-plugin-registry@sha256:012f507619f94b34908db2c39555bf379e754bd329107775d6f53841dcf51e9b
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
- value: quay.io/eclipse/che-devfile-registry@sha256:9de83732950da0d991e90ef688b6883924d814b3681d6633d50cbd3203c3e2c7
|
||||
+ value: quay.io/eclipse/che-devfile-registry@sha256:075db7fd2ad1a9eb4b666fcb2e0aa43c661207ca1659dd845cf261259ec319e4
|
||||
- name: RELATED_IMAGE_che_tls_secrets_creation_job
|
||||
value: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
|
||||
- name: RELATED_IMAGE_pvc_jobs
|
||||
@@ -477,7 +477,7 @@
|
||||
- name: RELATED_IMAGE_postgres
|
||||
value: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
- value: quay.io/eclipse/che-keycloak@sha256:d3eb98172cb6f9196497998351902b0c07899e6c1a09ada7a1c5b84b490d690d
|
||||
+ value: quay.io/eclipse/che-keycloak@sha256:22c3b7d937e9373aa9163ceddc3927569d151f642bf28395540b7c704ef32f4d
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
@@ -586,10 +586,10 @@
|
||||
value: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165
|
||||
- name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____
|
||||
value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
- - name: RELATED_IMAGE_che_theia_plugin_registry_image_IBZWQYJSGU3DUMJRG4YWGYLCGIYGGMRRGI3WIODCGRSTOOBRHE2GINTBGBTGIOJUHAYDOZJYGI3TIMBWGBSTQZRRGZRTGYJWHBSWMNBSGE2GMMZTGYYA____
|
||||
- value: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUYLBGM2GCMTCGEYDAOLDGFSTGMBUGYYTMZJYGJSDGYLCGA3WKYJQMRSDMMDDGE2DIZRZMVQTSMJTGQ2TKODGGZSTQZBXG42WIZDEGJTA____
|
||||
- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_IBZWQYJSGU3DUMDFMZRTSNDBGE3WCMDDGY2TKYRTG5SDSMDGGVQTEOLFME4DONTDG44GCZRZMY4WEZLCMMZGENBUHE2GEMJQGYYDOMRTMIYDOYZWMY4Q____
|
||||
+ value: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUNJVME3TIMDBGNQTMYZWMU3WKMRTMY4TMZTEGBSDQZRSGNRGEYJVG4ZWCNBSME4TIYLCMUYDCYZWGY4TMZBTGIYDINLCME4DGM3CME3Q____
|
||||
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
- name: RELATED_IMAGE_che_editor_jupyter_plugin_registry_image_IBZWQYJSGU3DUOBTGQZTSYLFHFSWIY3BMEZWCOJXGUZTMNZUGIZTCNLBG44TCMTGHEZWKNBZHFTDIOJYGQ3WIYJQHE2GGNBYGAYDGMLFMFSTIYTBGQ3Q____
|
||||
value: index.docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
- name: RELATED_IMAGE_dirigible_openshift_plugin_registry_image_IBZWQYJSGU3DUMZTGY2TMMZVMQYWKMBUGAZTMOJXMRSWCMBWG42GEYTCMRRTONBZMM2GEZJSMRRDEOJYGE4GCOJTMI4GKMLFGUZWGM3DGUYTINBRGEZQ____
|
||||
@@ -606,47 +606,49 @@
|
||||
value: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
- name: RELATED_IMAGE_che_sidecar_workspace_data_sync_plugin_registry_image_IBZWQYJSGU3DUOBYMQYDCMRVHAZTOZBVME2TOY3CGI2GEYRTMVSDQMLFGZQTQZRUGEYTSYJVGA2DGYRXHEZDMYTEGJRGIMBRG4YTAOBVGRRTINDGGEYA____
|
||||
value: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_IBZWQYJSGU3DUNZZMI2DEY3FGVSDIMDGMVSDIYJTMZSTSZJYGE3DEYZQGE4DQNBWMJSTQODGGA3DQZLBMQ4WMZBXMQ3WKNDEG4ZWINBRMVRDQMBVME3A____
|
||||
- value: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_IBZWQYJSGU3DUOBSGAZWGNBXG5SDMZRWMM3DMNBYG4ZWKMRZHE3WMZJQMNRWKZBUMIYTKZJYMEZGGYZVMU4DIMJZGFTDOY3CGEZTSZBQHA4GGZJUGFSA____
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
- name: RELATED_IMAGE_che_buildkit_base_plugin_registry_image_IBZWQYJSGU3DUZLGMZQTSODEMQZGGZLEGMYGENJSGBRDENLBMZTGMMLBHA4DAZBRGIYWGZRWMIZWMODBMI2DEYJVGE2DSZLBMRQTINTCME3TSM3DMU4Q____
|
||||
value: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
- name: RELATED_IMAGE_che__centos__mongodb_36_centos7_devfile_registry_image_NRQXIZLTOQWWCOJRGVSGEN3CMVRWCOBXGE4TQZTDMQ3TQNRQGA4DMOJYHFTGKODBGMZDOYJRME2GMNRVGA4DAMRVMI3DIYLCGI4GMY3DG42DEM3CGI______
|
||||
value: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2
|
||||
- name: RELATED_IMAGE_che__centos__mysql_57_centos7_devfile_registry_image_NRQXIZLTOQWWKMBYMVSTIZBUGNRDOMZVGY3DANZWHA2WENRZMJSGKNRTGM2WKMRXMNTDEMDDGAZDAZRTGQ2WENTDGZRTKOJUGAYDCOBTHA4DENZWGQ______
|
||||
value: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-cpp-rhel7@sha256:700f67d4a49c47b2f95c6bcdcc972ae8c4b79f60659984786678ff44338222c7
|
||||
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-dotnet-2.2@sha256:8bb912df01ca1418ea2b7dd6528f8ae49b3531b2c013ed32618a63480b031ebb
|
||||
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-dotnet-3.1@sha256:89fb61d724bef0294eeee5675a9a24cfb3f61940867ac6ac28bc26b21c122e61
|
||||
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-golang-1.14@sha256:0980e21161b52fe5b8029f326bd6c45c697db696c7a4423b311923e1918d35c9
|
||||
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-java11-gradle@sha256:cba122da46dfb56eaf2878473861c3cbf071a66e8751e5087d58f96cedc54bb5
|
||||
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-java11-maven@sha256:49a517401dc845b4414888705117a3e3824126c8fb3ea9c0ff82a9fd9a828db2
|
||||
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-java8-maven@sha256:070094fe29ed6e6fc81999d8cc0b9297cbabdd9f37d69d97b07c5d571d0bc9ff
|
||||
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-community@sha256:80ac6a66649765df29d631351ee2c680aae5d45d71f49adbfb100b5f49625549
|
||||
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:ca5cff354b465c9faa02e7003beaf814447d9ac52a5f44e587cea46ae582cba3
|
||||
- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs12-community@sha256:50895327418fdebfe507f397b59f7d66a19139e63dffd3847280d24267f53f64
|
||||
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs8-centos@sha256:df7d45e997c30f65aa54b4885051741d93e82e7684cb800ba1da361899bb6554
|
||||
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-php-7@sha256:a731df64adb6887e26104a29d45ea9db2aa37b06ee4f3af81f35f9ece52158df
|
||||
- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-python-3.8@sha256:3e1088613be91fa3d8ddd83f604c638a7b8cf78d84864ef8914d9ed1fc86110c
|
||||
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-quarkus@sha256:044872aa85fcf282bdbaf2e4c14a5ce3a0472605328dd76027567b003df84f25
|
||||
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:414873fe612f9db17efdf550d93d78a7cfeaf267e03eac967ebc78b96b079dd1
|
||||
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:f4be8dbcd5ee75778a3779665cb19298c62cdce60e3ac329ee4aa4afb0705159
|
||||
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:5e184d0ff4c9d41d8111761d70e3bed6ac169ece3c618d2c3c85e69be8622644
|
||||
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-golang-1.14@sha256:518abbe0a51dacb349b2270aff797ad926aed0bb20d1466b35f7e50e6342d808
|
||||
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-java11-gradle@sha256:a9b423a015c06b6c9458d1222c8be93b2f599129001a443b8a11964fe3c0d2aa
|
||||
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-java11-maven@sha256:c4a4cb0e3230c4cbfa27cb0cf9e63a89ff3d3b40d999164bee1cbbb0b9d90318
|
||||
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-java8-maven@sha256:1cbbfda18b5abfc032ae5ec1c4acdf9f65579919ff28efbb8ce6a028013935b8
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-community@sha256:b45f931abc2cbb6020817f70cb5ac5cb7bb395b9f8ec4feb54b690f0abdae6f3
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:c41a264fc4122f25b7cfebc96da6479121b23588a8d15d64849e83b31e37c565
|
||||
+ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs12-community@sha256:4b12e2eb9922e08da455f4e38ef06f6aab0f1c63761c0bfa9f0f971ad919c876
|
||||
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:2ef2bbaf41511d238dff0660602a3306a11e512f0f34bb4d5e61667c351c6a8a
|
||||
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-php-7@sha256:7d5fd133148223602f399723bac266954922fe9dabbd368c36c011f12de733a3
|
||||
+ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-python-3.8@sha256:387bd6f57ac5bb8acd70f285518fcea0e56705070f5228ef6cd9083d1a09f6d3
|
||||
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-quarkus@sha256:982ef32360aad4eb3224366df0efee3ce025ea7682cdc2681f033686d48731f8
|
||||
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-rust-1.39@sha256:c5c38d025b1cca59e3544fc74861949d0aaba0590cbb265b596414282299fd1f
|
||||
- name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___
|
||||
value: registry.access.redhat.com/ubi8-minimal@sha256:fdfb0770bff33e0f97d78583efd68b546a19d0a4b0ac23eef25ef261bca3e975
|
||||
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
|
||||
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:fdfb0770bff33e0f97d78583efd68b546a19d0a4b0ac23eef25ef261bca3e975
|
||||
- image: quay.io/eclipse/che-operator@sha256:9dfaf85fa68129c08276d222003fbfa512598592993eadc0a9779751f41f46b0
|
||||
+ image: quay.io/eclipse/che-operator@sha256:24c73101890325b907e26572850519c9fada7c27fa9a5e49d1bf4c360b89d6f6
|
||||
imagePullPolicy: IfNotPresent
|
||||
livenessProbe:
|
||||
failureThreshold: 10
|
||||
@@ -816,12 +818,12 @@
|
||||
maturity: stable
|
||||
provider:
|
||||
name: Eclipse Foundation
|
||||
- replaces: eclipse-che-preview-kubernetes.v7.26.0
|
||||
- version: 7.26.1
|
||||
+ replaces: eclipse-che-preview-kubernetes.v7.26.1
|
||||
+ version: 7.26.2
|
||||
relatedImages:
|
||||
- - name: che-operator-7.26.1
|
||||
- image: quay.io/eclipse/che-operator@sha256:9dfaf85fa68129c08276d222003fbfa512598592993eadc0a9779751f41f46b0
|
||||
- # tag: quay.io/eclipse/che-operator:7.26.1
|
||||
+ - name: che-operator-7.26.2
|
||||
+ image: quay.io/eclipse/che-operator@sha256:24c73101890325b907e26572850519c9fada7c27fa9a5e49d1bf4c360b89d6f6
|
||||
+ # tag: quay.io/eclipse/che-operator:7.26.2
|
||||
- name: traefik-v2.2.8
|
||||
image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8
|
||||
# tag: docker.io/traefik:v2.2.8
|
||||
@@ -831,27 +833,27 @@
|
||||
- name: che--centos--postgresql-96-centos7-9.6-b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
|
||||
image: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
|
||||
# tag: quay.io/eclipse/che--centos--postgresql-96-centos7:9.6-b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
|
||||
- - name: che-devfile-registry-7.26.1
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:9de83732950da0d991e90ef688b6883924d814b3681d6633d50cbd3203c3e2c7
|
||||
- # tag: quay.io/eclipse/che-devfile-registry:7.26.1
|
||||
+ - name: che-devfile-registry-7.26.2
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:075db7fd2ad1a9eb4b666fcb2e0aa43c661207ca1659dd845cf261259ec319e4
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry:7.26.2
|
||||
- name: che-jwtproxy-0.10.0
|
||||
image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
|
||||
# tag: quay.io/eclipse/che-jwtproxy:0.10.0
|
||||
- - name: che-keycloak-7.26.1
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:d3eb98172cb6f9196497998351902b0c07899e6c1a09ada7a1c5b84b490d690d
|
||||
- # tag: quay.io/eclipse/che-keycloak:7.26.1
|
||||
+ - name: che-keycloak-7.26.2
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:22c3b7d937e9373aa9163ceddc3927569d151f642bf28395540b7c704ef32f4d
|
||||
+ # tag: quay.io/eclipse/che-keycloak:7.26.2
|
||||
- name: che-plugin-artifacts-broker-v3.4.0
|
||||
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58
|
||||
# tag: quay.io/eclipse/che-plugin-artifacts-broker:v3.4.0
|
||||
- name: che-plugin-metadata-broker-v3.4.0
|
||||
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
|
||||
# tag: quay.io/eclipse/che-plugin-metadata-broker:v3.4.0
|
||||
- - name: che-plugin-registry-7.26.1
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:a1aada18f4b170152582e4b3fda3f28f6f95a2282e1a03afb2bc6ce2af513f8d
|
||||
- # tag: quay.io/eclipse/che-plugin-registry:7.26.1
|
||||
- - name: che-server-7.26.1
|
||||
- image: quay.io/eclipse/che-server@sha256:ba472af65542a3cc795e7352ae333330f1fd23492f040998b2288d3a98d3043d
|
||||
- # tag: quay.io/eclipse/che-server:7.26.1
|
||||
+ - name: che-plugin-registry-7.26.2
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:012f507619f94b34908db2c39555bf379e754bd329107775d6f53841dcf51e9b
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry:7.26.2
|
||||
+ - name: che-server-7.26.2
|
||||
+ image: quay.io/eclipse/che-server@sha256:31761827f7059c26cbf6802d336c06fac3393ea052fd8440b4fd9d3af7902240
|
||||
+ # tag: quay.io/eclipse/che-server:7.26.2
|
||||
- name: che-tls-secret-creator-alpine-d1ed4ad
|
||||
image: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
|
||||
# tag: quay.io/eclipse/che-tls-secret-creator:alpine-d1ed4ad
|
||||
@@ -978,12 +980,12 @@
|
||||
- name: che-plugin-sidecar-@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
# tag: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
- - name: che-theia-@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- image: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- # tag: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- - name: che-theia-endpoint-runtime-binary-@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
+ - name: che-theia-@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ image: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ # tag: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ - name: che-theia-endpoint-runtime-binary-@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
- name: che-editor-jupyter-@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
image: index.docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
# tag: index.docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
@@ -1008,9 +1010,9 @@
|
||||
- name: che-sidecar-workspace-data-sync-@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
image: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
# tag: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
- - name: che-machine-exec-@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
- image: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
- # tag: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
+ - name: che-machine-exec-@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
+ # tag: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
- name: che-buildkit-base-@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
# tag: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
@@ -1020,48 +1022,51 @@
|
||||
- name: che--centos--mysql-57-centos7-latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
image: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
# tag: quay.io/eclipse/che--centos--mysql-57-centos7:latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
- - name: che-cpp-rhel7-7.26.1
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:700f67d4a49c47b2f95c6bcdcc972ae8c4b79f60659984786678ff44338222c7
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7:7.26.1
|
||||
- - name: che-dotnet-2.2-7.26.1
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:8bb912df01ca1418ea2b7dd6528f8ae49b3531b2c013ed32618a63480b031ebb
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2:7.26.1
|
||||
- - name: che-dotnet-3.1-7.26.1
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:89fb61d724bef0294eeee5675a9a24cfb3f61940867ac6ac28bc26b21c122e61
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1:7.26.1
|
||||
- - name: che-golang-1.14-7.26.1
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:0980e21161b52fe5b8029f326bd6c45c697db696c7a4423b311923e1918d35c9
|
||||
- # tag: quay.io/eclipse/che-golang-1.14:7.26.1
|
||||
- - name: che-java11-gradle-7.26.1
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:cba122da46dfb56eaf2878473861c3cbf071a66e8751e5087d58f96cedc54bb5
|
||||
- # tag: quay.io/eclipse/che-java11-gradle:7.26.1
|
||||
- - name: che-java11-maven-7.26.1
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:49a517401dc845b4414888705117a3e3824126c8fb3ea9c0ff82a9fd9a828db2
|
||||
- # tag: quay.io/eclipse/che-java11-maven:7.26.1
|
||||
- - name: che-java8-maven-7.26.1
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:070094fe29ed6e6fc81999d8cc0b9297cbabdd9f37d69d97b07c5d571d0bc9ff
|
||||
- # tag: quay.io/eclipse/che-java8-maven:7.26.1
|
||||
- - name: che-nodejs10-community-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:80ac6a66649765df29d631351ee2c680aae5d45d71f49adbfb100b5f49625549
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community:7.26.1
|
||||
- - name: che-nodejs10-ubi-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:ca5cff354b465c9faa02e7003beaf814447d9ac52a5f44e587cea46ae582cba3
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.1
|
||||
- - name: che-nodejs12-community-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs12-community@sha256:50895327418fdebfe507f397b59f7d66a19139e63dffd3847280d24267f53f64
|
||||
- # tag: quay.io/eclipse/che-nodejs12-community:7.26.1
|
||||
- - name: che-nodejs8-centos-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:df7d45e997c30f65aa54b4885051741d93e82e7684cb800ba1da361899bb6554
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos:7.26.1
|
||||
- - name: che-php-7-7.26.1
|
||||
- image: quay.io/eclipse/che-php-7@sha256:a731df64adb6887e26104a29d45ea9db2aa37b06ee4f3af81f35f9ece52158df
|
||||
- # tag: quay.io/eclipse/che-php-7:7.26.1
|
||||
- - name: che-python-3.8-7.26.1
|
||||
- image: quay.io/eclipse/che-python-3.8@sha256:3e1088613be91fa3d8ddd83f604c638a7b8cf78d84864ef8914d9ed1fc86110c
|
||||
- # tag: quay.io/eclipse/che-python-3.8:7.26.1
|
||||
- - name: che-quarkus-7.26.1
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:044872aa85fcf282bdbaf2e4c14a5ce3a0472605328dd76027567b003df84f25
|
||||
- # tag: quay.io/eclipse/che-quarkus:7.26.1
|
||||
+ - name: che-cpp-rhel7-7.26.2
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:414873fe612f9db17efdf550d93d78a7cfeaf267e03eac967ebc78b96b079dd1
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.26.2
|
||||
+ - name: che-dotnet-2.2-7.26.2
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:f4be8dbcd5ee75778a3779665cb19298c62cdce60e3ac329ee4aa4afb0705159
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.26.2
|
||||
+ - name: che-dotnet-3.1-7.26.2
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:5e184d0ff4c9d41d8111761d70e3bed6ac169ece3c618d2c3c85e69be8622644
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.26.2
|
||||
+ - name: che-golang-1.14-7.26.2
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:518abbe0a51dacb349b2270aff797ad926aed0bb20d1466b35f7e50e6342d808
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14:7.26.2
|
||||
+ - name: che-java11-gradle-7.26.2
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:a9b423a015c06b6c9458d1222c8be93b2f599129001a443b8a11964fe3c0d2aa
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle:7.26.2
|
||||
+ - name: che-java11-maven-7.26.2
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:c4a4cb0e3230c4cbfa27cb0cf9e63a89ff3d3b40d999164bee1cbbb0b9d90318
|
||||
+ # tag: quay.io/eclipse/che-java11-maven:7.26.2
|
||||
+ - name: che-java8-maven-7.26.2
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:1cbbfda18b5abfc032ae5ec1c4acdf9f65579919ff28efbb8ce6a028013935b8
|
||||
+ # tag: quay.io/eclipse/che-java8-maven:7.26.2
|
||||
+ - name: che-nodejs10-community-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:b45f931abc2cbb6020817f70cb5ac5cb7bb395b9f8ec4feb54b690f0abdae6f3
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community:7.26.2
|
||||
+ - name: che-nodejs10-ubi-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:c41a264fc4122f25b7cfebc96da6479121b23588a8d15d64849e83b31e37c565
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.2
|
||||
+ - name: che-nodejs12-community-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs12-community@sha256:4b12e2eb9922e08da455f4e38ef06f6aab0f1c63761c0bfa9f0f971ad919c876
|
||||
+ # tag: quay.io/eclipse/che-nodejs12-community:7.26.2
|
||||
+ - name: che-nodejs8-centos-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:2ef2bbaf41511d238dff0660602a3306a11e512f0f34bb4d5e61667c351c6a8a
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.26.2
|
||||
+ - name: che-php-7-7.26.2
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:7d5fd133148223602f399723bac266954922fe9dabbd368c36c011f12de733a3
|
||||
+ # tag: quay.io/eclipse/che-php-7:7.26.2
|
||||
+ - name: che-python-3.8-7.26.2
|
||||
+ image: quay.io/eclipse/che-python-3.8@sha256:387bd6f57ac5bb8acd70f285518fcea0e56705070f5228ef6cd9083d1a09f6d3
|
||||
+ # tag: quay.io/eclipse/che-python-3.8:7.26.2
|
||||
+ - name: che-quarkus-7.26.2
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:982ef32360aad4eb3224366df0efee3ce025ea7682cdc2681f033686d48731f8
|
||||
+ # tag: quay.io/eclipse/che-quarkus:7.26.2
|
||||
+ - name: che-rust-1.39-7.26.2
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:c5c38d025b1cca59e3544fc74861949d0aaba0590cbb265b596414282299fd1f
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39:7.26.2
|
||||
- name: ubi8-minimal-8.3
|
||||
image: registry.access.redhat.com/ubi8-minimal@sha256:fdfb0770bff33e0f97d78583efd68b546a19d0a4b0ac23eef25ef261bca3e975
|
||||
# tag: registry.access.redhat.com/ubi8-minimal:8.3
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
channels:
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v7.26.1
|
||||
- currentCSV: eclipse-che-preview-kubernetes.v7.26.2
|
||||
name: stable
|
||||
defaultChannel: stable
|
||||
packageName: eclipse-che-preview-kubernetes
|
||||
|
|
|
|||
|
|
@ -0,0 +1,819 @@
|
|||
#
|
||||
# Copyright (c) 2012-2020 Red Hat, Inc.
|
||||
# This program and the accompanying materials are made
|
||||
# available under the terms of the Eclipse Public License 2.0
|
||||
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
||||
#
|
||||
# SPDX-License-Identifier: EPL-2.0
|
||||
#
|
||||
# Contributors:
|
||||
# Red Hat, Inc. - initial API and implementation
|
||||
apiVersion: apiextensions.k8s.io/v1beta1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: checlusters.org.eclipse.che
|
||||
spec:
|
||||
group: org.eclipse.che
|
||||
names:
|
||||
kind: CheCluster
|
||||
listKind: CheClusterList
|
||||
plural: checlusters
|
||||
singular: checluster
|
||||
preserveUnknownFields: false
|
||||
scope: Namespaced
|
||||
subresources:
|
||||
status: {}
|
||||
validation:
|
||||
openAPIV3Schema:
|
||||
description: The `CheCluster` custom resource allows defining and managing a
|
||||
Che server installation
|
||||
properties:
|
||||
apiVersion:
|
||||
description: 'APIVersion defines the versioned schema of this representation
|
||||
of an object. Servers should convert recognized schemas to the latest
|
||||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
||||
type: string
|
||||
kind:
|
||||
description: 'Kind is a string value representing the REST resource this
|
||||
object represents. Servers may infer this from the endpoint the client
|
||||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
||||
type: string
|
||||
metadata:
|
||||
type: object
|
||||
spec:
|
||||
description: Desired configuration of the Che installation. Based on these
|
||||
settings, the Operator automatically creates and maintains several ConfigMaps
|
||||
that will contain the appropriate environment variables the various components
|
||||
of the Che installation. These generated ConfigMaps must 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 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. When `externalIdentityProvider` is `true`, no
|
||||
dedicated identity provider will be deployed by the Operator and
|
||||
you will need to provide details about the external identity provider
|
||||
you are about to use. See also all the other fields starting with:
|
||||
`identityProvider`.'
|
||||
type: boolean
|
||||
identityProviderAdminUserName:
|
||||
description: Overrides the name of the Identity Provider administrator
|
||||
user. Defaults to `admin`.
|
||||
type: string
|
||||
identityProviderClientId:
|
||||
description: Name of a Identity provider, Keycloak or RH-SSO, `client-id`
|
||||
that is used for Che. This is useful to override it ONLY if you
|
||||
use an external Identity Provider. See the `externalIdentityProvider`
|
||||
field. When omitted or left blank, it is set to the value of the
|
||||
`flavour` field suffixed with `-public`.
|
||||
type: string
|
||||
identityProviderContainerResources:
|
||||
description: Identity provider container custom settings.
|
||||
properties:
|
||||
limits:
|
||||
description: Limits describes the maximum amount of compute
|
||||
resources allowed.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
request:
|
||||
description: Requests describes the minimum amount of compute
|
||||
resources required.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
identityProviderImage:
|
||||
description: Overrides the container image used in the Identity
|
||||
Provider, Keycloak or RH-SSO, deployment. This includes the image
|
||||
tag. Omit it or leave it empty to use the default container image
|
||||
provided by the Operator.
|
||||
type: string
|
||||
identityProviderImagePullPolicy:
|
||||
description: Overrides the image pull policy used in the Identity
|
||||
Provider, Keycloak or RH-SSO, deployment. Default value is `Always`
|
||||
for `nightly` or `latest` images, and `IfNotPresent` in other
|
||||
cases.
|
||||
type: string
|
||||
identityProviderIngress:
|
||||
description: Ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
identityProviderPassword:
|
||||
description: Overrides the password of Keycloak administrator user.
|
||||
This is useful to override it ONLY if you use an external Identity
|
||||
Provider. See the `externalIdentityProvider` field. When omitted
|
||||
or left blank, it is set to an auto-generated password.
|
||||
type: string
|
||||
identityProviderPostgresPassword:
|
||||
description: Password for a Identity Provider, Keycloak or 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. When omitted or left blank, it is set to an auto-generated
|
||||
password.
|
||||
type: string
|
||||
identityProviderPostgresSecret:
|
||||
description: 'The secret that contains `password` for the Identity
|
||||
Provider, Keycloak or RH-SSO, to connect to the database. When
|
||||
the secret is defined, the `identityProviderPostgresPassword`
|
||||
is ignored. When the value is omitted or left blank, the one of
|
||||
following scenarios applies: 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 or RH-SSO, realm
|
||||
that is used for Che. This is useful to override it ONLY if you
|
||||
use an external Identity Provider. See the `externalIdentityProvider`
|
||||
field. When omitted or left blank, it is set to the value of the
|
||||
`flavour` field.
|
||||
type: string
|
||||
identityProviderRoute:
|
||||
description: Route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
identityProviderSecret:
|
||||
description: 'The secret that contains `user` and `password` for
|
||||
Identity Provider. When the secret is defined, the `identityProviderAdminUserName`
|
||||
and `identityProviderPassword` are ignored. When the value is
|
||||
omitted or left blank, the one of following scenarios applies:
|
||||
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). Set this ONLY when a use of an external Identity
|
||||
Provider is needed. See the `externalIdentityProvider` field.
|
||||
By default, this will be automatically calculated and set by the
|
||||
Operator.
|
||||
type: string
|
||||
oAuthClientName:
|
||||
description: Name of the OpenShift `OAuthClient` resource used to
|
||||
setup identity federation on the OpenShift side. Auto-generated
|
||||
if left blank. See also the `OpenShiftoAuth` field.
|
||||
type: string
|
||||
oAuthSecret:
|
||||
description: Name of the secret set in the OpenShift `OAuthClient`
|
||||
resource used to setup identity federation on the OpenShift side.
|
||||
Auto-generated if left blank. See also the `OAuthClientName` field.
|
||||
type: string
|
||||
openShiftoAuth:
|
||||
description: 'Enables the integration of the identity provider (Keycloak
|
||||
/ RHSSO) with OpenShift OAuth. Empty value on OpenShift by default.
|
||||
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:
|
||||
chePostgresContainerResources:
|
||||
description: PostgreSQL container custom settings
|
||||
properties:
|
||||
limits:
|
||||
description: Limits describes the maximum amount of compute
|
||||
resources allowed.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
request:
|
||||
description: Requests describes the minimum amount of compute
|
||||
resources required.
|
||||
properties:
|
||||
cpu:
|
||||
description: CPU, in cores. (500m = .5 cores)
|
||||
type: string
|
||||
memory:
|
||||
description: Memory, in bytes. (500Gi = 500GiB = 500 * 1024
|
||||
* 1024 * 1024)
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
chePostgresDb:
|
||||
description: PostgreSQL database name that the Che server uses to
|
||||
connect to the DB. Defaults to `dbche`.
|
||||
type: string
|
||||
chePostgresHostName:
|
||||
description: PostgreSQL Database host name that the Che server uses
|
||||
to connect to. Defaults to postgres. Override this value 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: PostgreSQL password that the Che server uses to connect
|
||||
to the DB. When omitted or left blank, it will be set to an automatically
|
||||
generated value.
|
||||
type: string
|
||||
chePostgresPort:
|
||||
description: PostgreSQL Database port that the Che server uses to
|
||||
connect to. Defaults to 5432. Override this value 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 PosgreSQL`user` and `password`
|
||||
that the Che server uses to connect to the DB. When the secret
|
||||
is defined, the `chePostgresUser` and `chePostgresPassword` are
|
||||
ignored. When the value is omitted or left blank, the one of following
|
||||
scenarios applies: 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: PostgreSQL user that the Che server uses to connect
|
||||
to the DB. Defaults to `pgche`.
|
||||
type: string
|
||||
externalDb:
|
||||
description: 'Instructs the Operator on whether to deploy a dedicated
|
||||
database. By default, a dedicated PostgreSQL database is deployed
|
||||
as part of the Che installation. When `externalDb` is `true`,
|
||||
no dedicated database will be deployed by the Operator and you
|
||||
will need to provide connection details to the external DB you
|
||||
are about to use. See also all the fields starting with: `chePostgres`.'
|
||||
type: boolean
|
||||
postgresImage:
|
||||
description: Overrides the container image used in the PosgreSQL
|
||||
database deployment. This includes the image tag. Omit it or leave
|
||||
it empty to use the default container image provided by the Operator.
|
||||
type: string
|
||||
postgresImagePullPolicy:
|
||||
description: Overrides the image pull policy used in the PosgreSQL
|
||||
database deployment. Default value is `Always` for `nightly` or
|
||||
`latest` images, and `IfNotPresent` in other cases.
|
||||
type: string
|
||||
type: object
|
||||
imagePuller:
|
||||
description: Kubernetes Image Puller configuration
|
||||
properties:
|
||||
enable:
|
||||
description: "Install and configure the Community Supported Kubernetes\
|
||||
\ Image Puller Operator. If true and no spec is provided, it will\
|
||||
\ create a default KubernetesImagePuller object to be managed\
|
||||
\ by the Operator. If false, the KubernetesImagePuller object\
|
||||
\ will be deleted, and the Operator will be uninstalled, regardless\
|
||||
\ of whether a spec is provided. \n Note that while this the Operator\
|
||||
\ and its behavior is community-supported, its payload may be\
|
||||
\ commercially-supported if you use it for pulling commercially-supported\
|
||||
\ images."
|
||||
type: boolean
|
||||
spec:
|
||||
description: A KubernetesImagePullerSpec to configure the image
|
||||
puller in the CheCluster
|
||||
properties:
|
||||
cachingCPULimit:
|
||||
type: string
|
||||
cachingCPURequest:
|
||||
type: string
|
||||
cachingIntervalHours:
|
||||
type: string
|
||||
cachingMemoryLimit:
|
||||
type: string
|
||||
cachingMemoryRequest:
|
||||
type: string
|
||||
configMapName:
|
||||
type: string
|
||||
daemonsetName:
|
||||
type: string
|
||||
deploymentName:
|
||||
type: string
|
||||
images:
|
||||
type: string
|
||||
nodeSelector:
|
||||
type: string
|
||||
type: object
|
||||
type: object
|
||||
k8s:
|
||||
description: Configuration settings specific to Che installations made
|
||||
on upstream Kubernetes.
|
||||
properties:
|
||||
ingressClass:
|
||||
description: 'Ingress class that will define the which controller
|
||||
will manage ingresses. Defaults to `nginx`. NB: This drives the
|
||||
`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. Options are: `multi-host`
|
||||
(host is explicitly provided in ingress), `single-host` (host
|
||||
is provided, path-based rules) and `default-host` (no host is
|
||||
provided, path-based rules). Defaults to `multi-host` Deprecated
|
||||
in favor of `serverExposureStrategy` in the `server` section,
|
||||
which defines this regardless of the cluster type. When both are
|
||||
defined, the `serverExposureStrategy` option takes precedence.'
|
||||
type: string
|
||||
securityContextFsGroup:
|
||||
description: The FSGroup in which the Che Pod and workspace Pods
|
||||
containers runs in. Default value is `1724`.
|
||||
type: string
|
||||
securityContextRunAsUser:
|
||||
description: ID of the user the Che Pod and workspace Pods containers
|
||||
run as. Default value is `1724`.
|
||||
type: string
|
||||
singleHostExposureType:
|
||||
description: When the serverExposureStrategy is set to `single-host`,
|
||||
the way the server, registries and workspaces are exposed is further
|
||||
configured by this property. The possible values are `native`,
|
||||
which means that the server and workspaces are exposed using ingresses
|
||||
on K8s or `gateway` where the server and workspaces are exposed
|
||||
using a custom gateway based on Traefik. All the endpoints whether
|
||||
backed by the ingress or gateway `route` always point to the subpaths
|
||||
on the same domain. Defaults to `native`.
|
||||
type: string
|
||||
tlsSecretName:
|
||||
description: Name of a secret that will be used to setup ingress
|
||||
TLS termination when TLS is enabled. When the field is empty string,
|
||||
the default cluster certificate will be used. 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` the 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 host name, or URL, to an alternate container
|
||||
registry to pull images from. This value overrides the container
|
||||
registry host name defined in all the default container images
|
||||
involved in a Che deployment. This is particularly useful to install
|
||||
Che in a restricted 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
|
||||
Eclipse Che in a restricted environment.
|
||||
type: string
|
||||
allowUserDefinedWorkspaceNamespaces:
|
||||
description: Defines that a user is allowed to specify a Kubernetes
|
||||
namespace, or an OpenShift project, which differs from the default.
|
||||
It's NOT RECOMMENDED to set to `true` without OpenShift OAuth
|
||||
configured. The OpenShift infrastructure also uses this property.
|
||||
type: boolean
|
||||
cheClusterRoles:
|
||||
description: A comma-separated list of ClusterRoles that will be
|
||||
assigned to Che ServiceAccount. Be aware that the Che Operator
|
||||
has to already have all permissions in these ClusterRoles to grant
|
||||
them.
|
||||
type: string
|
||||
cheDebug:
|
||||
description: Enables the debug mode for Che server. Defaults to
|
||||
`false`.
|
||||
type: string
|
||||
cheFlavor:
|
||||
description: Specifies a variation of the installation. The options
|
||||
are `che` for upstream Che installations, or `codeready` for CodeReady
|
||||
Workspaces installation. If not necessary, do not override the
|
||||
default value.
|
||||
type: string
|
||||
cheHost:
|
||||
description: Public host name of the installed Che server. When
|
||||
value is omitted, the value it will be automatically set by the
|
||||
Operator. See the `cheHostTLSSecret` field.
|
||||
type: string
|
||||
cheHostTLSSecret:
|
||||
description: Name of a secret containing certificates to secure
|
||||
ingress or route for the custom host name of the installed Che
|
||||
server. See the `cheHost` field.
|
||||
type: string
|
||||
cheImage:
|
||||
description: Overrides the container image used in Che deployment.
|
||||
This does NOT include the container image tag. Omit it or leave
|
||||
it empty to use the default 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 default image
|
||||
tag provided by the Operator.
|
||||
type: string
|
||||
cheLogLevel:
|
||||
description: 'Log level for the Che server: `INFO` or `DEBUG`. Defaults
|
||||
to `INFO`.'
|
||||
type: string
|
||||
cheServerIngress:
|
||||
description: The Che server ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
cheServerRoute:
|
||||
description: The Che server route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
cheWorkspaceClusterRole:
|
||||
description: Custom cluster role bound to the user for the Che workspaces.
|
||||
The default roles are used if this is omitted or left blank.
|
||||
type: string
|
||||
customCheProperties:
|
||||
additionalProperties:
|
||||
type: string
|
||||
description: Map of additional environment variables that will be
|
||||
applied in the generated `che` configMap to be used by the Che
|
||||
server, in addition to the values already generated from other
|
||||
fields of the `CheCluster` custom resource (CR). When `customCheProperties`
|
||||
contains a property that would be normally generated in `che`
|
||||
configMap from other CR fields, the value defined in the `customCheProperties`
|
||||
is used instead.
|
||||
type: object
|
||||
devfileRegistryCpuLimit:
|
||||
description: Overrides the CPU limit used in the devfile registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 500m.
|
||||
type: string
|
||||
devfileRegistryCpuRequest:
|
||||
description: Overrides the CPU request used in the devfile registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 100m.
|
||||
type: string
|
||||
devfileRegistryImage:
|
||||
description: Overrides the container image used in the devfile registry
|
||||
deployment. This includes the image tag. Omit it or leave it empty
|
||||
to use the default container image provided by the Operator.
|
||||
type: string
|
||||
devfileRegistryIngress:
|
||||
description: The devfile registry ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
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
|
||||
devfileRegistryRoute:
|
||||
description: The devfile registry route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
devfileRegistryUrl:
|
||||
description: Public URL of the devfile registry, that serves sample,
|
||||
ready-to-use devfiles. Set this ONLY when a use of an external
|
||||
devfile registry is needed. See the `externalDevfileRegistry`
|
||||
field. By default, this will be automatically calculated by the
|
||||
Operator.
|
||||
type: string
|
||||
externalDevfileRegistry:
|
||||
description: Instructs the Operator on whether to deploy a dedicated
|
||||
devfile registry server. By default, a dedicated devfile registry
|
||||
server is started. When `externalDevfileRegistry` is `true`, 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 to deploy a dedicated
|
||||
plugin registry server. By default, a dedicated plugin registry
|
||||
server is started. When `externalPluginRegistry` is `true`, no
|
||||
such dedicated server will be started by the Operator and you
|
||||
will have to manually set the `pluginRegistryUrl` field.
|
||||
type: boolean
|
||||
gitSelfSignedCert:
|
||||
description: When enabled, the certificate from `che-git-self-signed-cert`
|
||||
configMap will be propagated to the Che components and provide
|
||||
particular configuration for Git.
|
||||
type: boolean
|
||||
nonProxyHosts:
|
||||
description: 'List of hosts that will be reached directly, bypassing
|
||||
the proxy. Specify wild card domain use the following form `.<DOMAIN>`
|
||||
and `|` as delimiter, for example: `localhost|.my.host.com|123.42.12.32`
|
||||
Only use when configuring a proxy is required. Operator respects
|
||||
OpenShift cluster wide proxy configuration and no additional configuration
|
||||
is required, but defining `nonProxyHosts` in a custom resource
|
||||
leads to merging non proxy hosts lists from the cluster proxy
|
||||
configuration and ones defined in the custom resources. See the
|
||||
doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html).
|
||||
See also the `proxyURL` fields.'
|
||||
type: string
|
||||
pluginRegistryCpuLimit:
|
||||
description: Overrides the CPU limit used in the plugin registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 500m.
|
||||
type: string
|
||||
pluginRegistryCpuRequest:
|
||||
description: Overrides the CPU request used in the plugin registry
|
||||
deployment. In cores. (500m = .5 cores). Default to 100m.
|
||||
type: string
|
||||
pluginRegistryImage:
|
||||
description: Overrides the container image used in the plugin registry
|
||||
deployment. This includes the image tag. Omit it or leave it empty
|
||||
to use the default container image provided by the Operator.
|
||||
type: string
|
||||
pluginRegistryIngress:
|
||||
description: Plugin registry ingress custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
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
|
||||
pluginRegistryRoute:
|
||||
description: Plugin registry route custom settings.
|
||||
properties:
|
||||
labels:
|
||||
description: Comma separated list of labels that can be used
|
||||
to organize and categorize objects by scoping and selecting.
|
||||
type: string
|
||||
type: object
|
||||
pluginRegistryUrl:
|
||||
description: Public URL of the plugin registry that serves sample
|
||||
ready-to-use devfiles. Set this ONLY if a use of an external devfile
|
||||
registry is needed. 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 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. When the secret is defined, the `proxyUser` and
|
||||
`proxyPassword` are ignored.
|
||||
type: string
|
||||
proxyURL:
|
||||
description: URL (protocol+host name) 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. The
|
||||
Che Operator will automatically detect if the router certificate
|
||||
is self-signed and propagate it to other components, such as the
|
||||
Che server.
|
||||
type: boolean
|
||||
serverCpuLimit:
|
||||
description: Overrides the CPU limit used in the Che server deployment
|
||||
In cores. (500m = .5 cores). Default to 1.
|
||||
type: string
|
||||
serverCpuRequest:
|
||||
description: Overrides the CPU request used in the Che server deployment
|
||||
In cores. (500m = .5 cores). Default to 100m.
|
||||
type: string
|
||||
serverExposureStrategy:
|
||||
description: Sets the server and workspaces exposure type. Possible
|
||||
values are `multi-host`, `single-host`, `default-host`. Defaults
|
||||
to `multi-host`, which creates a separate ingress, or OpenShift
|
||||
routes, for every required endpoint. `single-host` makes Che exposed
|
||||
on a single host name with workspaces exposed on subpaths. Read
|
||||
the docs to learn about the limitations of this approach. Also
|
||||
consult the `singleHostExposureType` property to further configure
|
||||
how the Operator and the Che server make that happen on Kubernetes.
|
||||
`default-host` exposes the Che server on the host of the cluster.
|
||||
Read the docs to learn about the limitations of this approach.
|
||||
type: string
|
||||
serverMemoryLimit:
|
||||
description: Overrides the memory limit used in the Che server deployment.
|
||||
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 configMap with public certificates to add
|
||||
to Java trust store of the Che server. This is often required
|
||||
when adding the OpenShift OAuth provider, which has HTTPS endpoint
|
||||
signed with self-signed cert. The Che server must be aware of
|
||||
its CA cert to be able to request it. This is disabled by default.
|
||||
type: string
|
||||
singleHostGatewayConfigMapLabels:
|
||||
additionalProperties:
|
||||
type: string
|
||||
description: The labels that need to be present in the configMaps
|
||||
representing the gateway configuration.
|
||||
type: object
|
||||
singleHostGatewayConfigSidecarImage:
|
||||
description: The image used for the gateway sidecar that provides
|
||||
configuration to the gateway. Omit it or leave it empty to use
|
||||
the default container image provided by the Operator.
|
||||
type: string
|
||||
singleHostGatewayImage:
|
||||
description: The image used for the gateway in the single host mode.
|
||||
Omit it or leave it empty to use the default container image provided
|
||||
by the Operator.
|
||||
type: string
|
||||
tlsSupport:
|
||||
description: Deprecated. Instructs the Operator to deploy Che in
|
||||
TLS mode. This is enabled by default. Disabling TLS sometimes
|
||||
cause malfunction of some Che components.
|
||||
type: boolean
|
||||
useInternalClusterSVCNames:
|
||||
description: Use internal cluster SVC names to communicate between
|
||||
components to speed up the traffic and avoid proxy issues. The
|
||||
default value is `false`.
|
||||
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,
|
||||
such as che-workspace-<username>. In that case, a new namespace
|
||||
will be created for each user or workspace. Is used by OpenShift
|
||||
infrastructure 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 PosgreSQL database. When omitted or left blank, a default
|
||||
storage class is used.
|
||||
type: string
|
||||
preCreateSubPaths:
|
||||
description: Instructs the Che server to start a special Pod to
|
||||
pre-create a sub-path in the Persistent Volumes. Defaults to `false`,
|
||||
however it will 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 default 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. When omitted or left blank, a 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 that a PosgreSQL instance has been correctly
|
||||
provisioned or not.
|
||||
type: boolean
|
||||
devfileRegistryURL:
|
||||
description: Public URL to the devfile registry.
|
||||
type: string
|
||||
gitHubOAuthProvisioned:
|
||||
description: Indicates whether an Identity Provider instance, Keycloak
|
||||
or RH-SSO, has been configured to integrate with the GitHub OAuth.
|
||||
type: boolean
|
||||
helpLink:
|
||||
description: A URL that points to some URL where to find help related
|
||||
to the current Operator status.
|
||||
type: string
|
||||
keycloakProvisioned:
|
||||
description: Indicates whether an Identity Provider instance, Keycloak
|
||||
or RH-SSO, has been provisioned with realm, client and user.
|
||||
type: boolean
|
||||
keycloakURL:
|
||||
description: Public URL to the Identity Provider server, Keycloak or
|
||||
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
|
||||
or 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,468 @@
|
|||
--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.1/eclipse-che-preview-openshift.v7.26.1.clusterserviceversion.yaml 2021-02-24 12:33:01.017622614 +0000
|
||||
+++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.2/eclipse-che-preview-openshift.v7.26.2.clusterserviceversion.yaml 2021-02-24 13:00:07.901764185 +0000
|
||||
@@ -74,14 +74,14 @@
|
||||
capabilities: Seamless Upgrades
|
||||
categories: Developer Tools, OpenShift Optional
|
||||
certified: "false"
|
||||
- containerImage: quay.io/eclipse/che-operator@sha256:9dfaf85fa68129c08276d222003fbfa512598592993eadc0a9779751f41f46b0
|
||||
- createdAt: "2021-02-18T13:34:20Z"
|
||||
+ containerImage: quay.io/eclipse/che-operator@sha256:24c73101890325b907e26572850519c9fada7c27fa9a5e49d1bf4c360b89d6f6
|
||||
+ createdAt: "2021-02-24T12:59:37Z"
|
||||
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.26.1
|
||||
+ name: eclipse-che-preview-openshift.v7.26.2
|
||||
namespace: placeholder
|
||||
spec:
|
||||
apiservicedefinitions: {}
|
||||
@@ -516,19 +516,19 @@
|
||||
- name: OPERATOR_NAME
|
||||
value: che-operator
|
||||
- name: CHE_VERSION
|
||||
- value: 7.26.1
|
||||
+ value: 7.26.2
|
||||
- name: RELATED_IMAGE_che_server
|
||||
- value: quay.io/eclipse/che-server@sha256:ba472af65542a3cc795e7352ae333330f1fd23492f040998b2288d3a98d3043d
|
||||
+ value: quay.io/eclipse/che-server@sha256:31761827f7059c26cbf6802d336c06fac3393ea052fd8440b4fd9d3af7902240
|
||||
- name: RELATED_IMAGE_plugin_registry
|
||||
- value: quay.io/eclipse/che-plugin-registry@sha256:a1aada18f4b170152582e4b3fda3f28f6f95a2282e1a03afb2bc6ce2af513f8d
|
||||
+ value: quay.io/eclipse/che-plugin-registry@sha256:012f507619f94b34908db2c39555bf379e754bd329107775d6f53841dcf51e9b
|
||||
- name: RELATED_IMAGE_devfile_registry
|
||||
- value: quay.io/eclipse/che-devfile-registry@sha256:9de83732950da0d991e90ef688b6883924d814b3681d6633d50cbd3203c3e2c7
|
||||
+ value: quay.io/eclipse/che-devfile-registry@sha256:075db7fd2ad1a9eb4b666fcb2e0aa43c661207ca1659dd845cf261259ec319e4
|
||||
- name: RELATED_IMAGE_pvc_jobs
|
||||
value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a
|
||||
- name: RELATED_IMAGE_postgres
|
||||
value: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392
|
||||
- name: RELATED_IMAGE_keycloak
|
||||
- value: quay.io/eclipse/che-keycloak@sha256:d3eb98172cb6f9196497998351902b0c07899e6c1a09ada7a1c5b84b490d690d
|
||||
+ value: quay.io/eclipse/che-keycloak@sha256:22c3b7d937e9373aa9163ceddc3927569d151f642bf28395540b7c704ef32f4d
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_metadata
|
||||
value: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
|
||||
- name: RELATED_IMAGE_che_workspace_plugin_broker_artifacts
|
||||
@@ -637,10 +637,10 @@
|
||||
value: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165
|
||||
- name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____
|
||||
value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
- - name: RELATED_IMAGE_che_theia_plugin_registry_image_IBZWQYJSGU3DUMJRG4YWGYLCGIYGGMRRGI3WIODCGRSTOOBRHE2GINTBGBTGIOJUHAYDOZJYGI3TIMBWGBSTQZRRGZRTGYJWHBSWMNBSGE2GMMZTGYYA____
|
||||
- value: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUYLBGM2GCMTCGEYDAOLDGFSTGMBUGYYTMZJYGJSDGYLCGA3WKYJQMRSDMMDDGE2DIZRZMVQTSMJTGQ2TKODGGZSTQZBXG42WIZDEGJTA____
|
||||
- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
+ - name: RELATED_IMAGE_che_theia_plugin_registry_image_IBZWQYJSGU3DUMDFMZRTSNDBGE3WCMDDGY2TKYRTG5SDSMDGGVQTEOLFME4DONTDG44GCZRZMY4WEZLCMMZGENBUHE2GEMJQGYYDOMRTMIYDOYZWMY4Q____
|
||||
+ value: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUNJVME3TIMDBGNQTMYZWMU3WKMRTMY4TMZTEGBSDQZRSGNRGEYJVG4ZWCNBSME4TIYLCMUYDCYZWGY4TMZBTGIYDINLCME4DGM3CME3Q____
|
||||
+ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
- name: RELATED_IMAGE_che_editor_jupyter_plugin_registry_image_IBZWQYJSGU3DUOBTGQZTSYLFHFSWIY3BMEZWCOJXGUZTMNZUGIZTCNLBG44TCMTGHEZWKNBZHFTDIOJYGQ3WIYJQHE2GGNBYGAYDGMLFMFSTIYTBGQ3Q____
|
||||
value: index.docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
- name: RELATED_IMAGE_dirigible_openshift_plugin_registry_image_IBZWQYJSGU3DUMZTGY2TMMZVMQYWKMBUGAZTMOJXMRSWCMBWG42GEYTCMRRTONBZMM2GEZJSMRRDEOJYGE4GCOJTMI4GKMLFGUZWGM3DGUYTINBRGEZQ____
|
||||
@@ -657,47 +657,49 @@
|
||||
value: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
- name: RELATED_IMAGE_che_sidecar_workspace_data_sync_plugin_registry_image_IBZWQYJSGU3DUOBYMQYDCMRVHAZTOZBVME2TOY3CGI2GEYRTMVSDQMLFGZQTQZRUGEYTSYJVGA2DGYRXHEZDMYTEGJRGIMBRG4YTAOBVGRRTINDGGEYA____
|
||||
value: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_IBZWQYJSGU3DUNZZMI2DEY3FGVSDIMDGMVSDIYJTMZSTSZJYGE3DEYZQGE4DQNBWMJSTQODGGA3DQZLBMQ4WMZBXMQ3WKNDEG4ZWINBRMVRDQMBVME3A____
|
||||
- value: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
+ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_IBZWQYJSGU3DUOBSGAZWGNBXG5SDMZRWMM3DMNBYG4ZWKMRZHE3WMZJQMNRWKZBUMIYTKZJYMEZGGYZVMU4DIMJZGFTDOY3CGEZTSZBQHA4GGZJUGFSA____
|
||||
+ value: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
- name: RELATED_IMAGE_che_buildkit_base_plugin_registry_image_IBZWQYJSGU3DUZLGMZQTSODEMQZGGZLEGMYGENJSGBRDENLBMZTGMMLBHA4DAZBRGIYWGZRWMIZWMODBMI2DEYJVGE2DSZLBMRQTINTCME3TSM3DMU4Q____
|
||||
value: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
- name: RELATED_IMAGE_che__centos__mongodb_36_centos7_devfile_registry_image_NRQXIZLTOQWWCOJRGVSGEN3CMVRWCOBXGE4TQZTDMQ3TQNRQGA4DMOJYHFTGKODBGMZDOYJRME2GMNRVGA4DAMRVMI3DIYLCGI4GMY3DG42DEM3CGI______
|
||||
value: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2
|
||||
- name: RELATED_IMAGE_che__centos__mysql_57_centos7_devfile_registry_image_NRQXIZLTOQWWKMBYMVSTIZBUGNRDOMZVGY3DANZWHA2WENRZMJSGKNRTGM2WKMRXMNTDEMDDGAZDAZRTGQ2WENTDGZRTKOJUGAYDCOBTHA4DENZWGQ______
|
||||
value: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-cpp-rhel7@sha256:700f67d4a49c47b2f95c6bcdcc972ae8c4b79f60659984786678ff44338222c7
|
||||
- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-dotnet-2.2@sha256:8bb912df01ca1418ea2b7dd6528f8ae49b3531b2c013ed32618a63480b031ebb
|
||||
- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-dotnet-3.1@sha256:89fb61d724bef0294eeee5675a9a24cfb3f61940867ac6ac28bc26b21c122e61
|
||||
- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-golang-1.14@sha256:0980e21161b52fe5b8029f326bd6c45c697db696c7a4423b311923e1918d35c9
|
||||
- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-java11-gradle@sha256:cba122da46dfb56eaf2878473861c3cbf071a66e8751e5087d58f96cedc54bb5
|
||||
- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-java11-maven@sha256:49a517401dc845b4414888705117a3e3824126c8fb3ea9c0ff82a9fd9a828db2
|
||||
- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-java8-maven@sha256:070094fe29ed6e6fc81999d8cc0b9297cbabdd9f37d69d97b07c5d571d0bc9ff
|
||||
- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-community@sha256:80ac6a66649765df29d631351ee2c680aae5d45d71f49adbfb100b5f49625549
|
||||
- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs10-ubi@sha256:ca5cff354b465c9faa02e7003beaf814447d9ac52a5f44e587cea46ae582cba3
|
||||
- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs12-community@sha256:50895327418fdebfe507f397b59f7d66a19139e63dffd3847280d24267f53f64
|
||||
- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-nodejs8-centos@sha256:df7d45e997c30f65aa54b4885051741d93e82e7684cb800ba1da361899bb6554
|
||||
- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-php-7@sha256:a731df64adb6887e26104a29d45ea9db2aa37b06ee4f3af81f35f9ece52158df
|
||||
- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-python-3.8@sha256:3e1088613be91fa3d8ddd83f604c638a7b8cf78d84864ef8914d9ed1fc86110c
|
||||
- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGE______
|
||||
- value: quay.io/eclipse/che-quarkus@sha256:044872aa85fcf282bdbaf2e4c14a5ce3a0472605328dd76027567b003df84f25
|
||||
+ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-cpp-rhel7@sha256:414873fe612f9db17efdf550d93d78a7cfeaf267e03eac967ebc78b96b079dd1
|
||||
+ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-2.2@sha256:f4be8dbcd5ee75778a3779665cb19298c62cdce60e3ac329ee4aa4afb0705159
|
||||
+ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-dotnet-3.1@sha256:5e184d0ff4c9d41d8111761d70e3bed6ac169ece3c618d2c3c85e69be8622644
|
||||
+ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-golang-1.14@sha256:518abbe0a51dacb349b2270aff797ad926aed0bb20d1466b35f7e50e6342d808
|
||||
+ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-java11-gradle@sha256:a9b423a015c06b6c9458d1222c8be93b2f599129001a443b8a11964fe3c0d2aa
|
||||
+ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-java11-maven@sha256:c4a4cb0e3230c4cbfa27cb0cf9e63a89ff3d3b40d999164bee1cbbb0b9d90318
|
||||
+ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-java8-maven@sha256:1cbbfda18b5abfc032ae5ec1c4acdf9f65579919ff28efbb8ce6a028013935b8
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-community@sha256:b45f931abc2cbb6020817f70cb5ac5cb7bb395b9f8ec4feb54b690f0abdae6f3
|
||||
+ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs10-ubi@sha256:c41a264fc4122f25b7cfebc96da6479121b23588a8d15d64849e83b31e37c565
|
||||
+ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs12-community@sha256:4b12e2eb9922e08da455f4e38ef06f6aab0f1c63761c0bfa9f0f971ad919c876
|
||||
+ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-nodejs8-centos@sha256:2ef2bbaf41511d238dff0660602a3306a11e512f0f34bb4d5e61667c351c6a8a
|
||||
+ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-php-7@sha256:7d5fd133148223602f399723bac266954922fe9dabbd368c36c011f12de733a3
|
||||
+ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-python-3.8@sha256:387bd6f57ac5bb8acd70f285518fcea0e56705070f5228ef6cd9083d1a09f6d3
|
||||
+ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-quarkus@sha256:982ef32360aad4eb3224366df0efee3ce025ea7682cdc2681f033686d48731f8
|
||||
+ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENROGI______
|
||||
+ value: quay.io/eclipse/che-rust-1.39@sha256:c5c38d025b1cca59e3544fc74861949d0aaba0590cbb265b596414282299fd1f
|
||||
- name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___
|
||||
value: registry.access.redhat.com/ubi8-minimal@sha256:fdfb0770bff33e0f97d78583efd68b546a19d0a4b0ac23eef25ef261bca3e975
|
||||
- name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_
|
||||
value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:fdfb0770bff33e0f97d78583efd68b546a19d0a4b0ac23eef25ef261bca3e975
|
||||
- image: quay.io/eclipse/che-operator@sha256:9dfaf85fa68129c08276d222003fbfa512598592993eadc0a9779751f41f46b0
|
||||
+ image: quay.io/eclipse/che-operator@sha256:24c73101890325b907e26572850519c9fada7c27fa9a5e49d1bf4c360b89d6f6
|
||||
imagePullPolicy: IfNotPresent
|
||||
livenessProbe:
|
||||
failureThreshold: 10
|
||||
@@ -873,12 +875,12 @@
|
||||
maturity: stable
|
||||
provider:
|
||||
name: Eclipse Foundation
|
||||
- replaces: eclipse-che-preview-openshift.v7.26.0
|
||||
- version: 7.26.1
|
||||
+ replaces: eclipse-che-preview-openshift.v7.26.1
|
||||
+ version: 7.26.2
|
||||
relatedImages:
|
||||
- - name: che-operator-7.26.1
|
||||
- image: quay.io/eclipse/che-operator@sha256:9dfaf85fa68129c08276d222003fbfa512598592993eadc0a9779751f41f46b0
|
||||
- # tag: quay.io/eclipse/che-operator:7.26.1
|
||||
+ - name: che-operator-7.26.2
|
||||
+ image: quay.io/eclipse/che-operator@sha256:24c73101890325b907e26572850519c9fada7c27fa9a5e49d1bf4c360b89d6f6
|
||||
+ # tag: quay.io/eclipse/che-operator:7.26.2
|
||||
- name: traefik-v2.2.8
|
||||
image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8
|
||||
# tag: docker.io/traefik:v2.2.8
|
||||
@@ -924,63 +926,63 @@
|
||||
- name: che-buildkit-base-@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
# tag: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
- - name: che-cpp-rhel7-@sha256:700f67d4a49c47b2f95c6bcdcc972ae8c4b79f60659984786678ff44338222c7
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:700f67d4a49c47b2f95c6bcdcc972ae8c4b79f60659984786678ff44338222c7
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7@sha256:700f67d4a49c47b2f95c6bcdcc972ae8c4b79f60659984786678ff44338222c7
|
||||
- - name: che-devfile-registry-7.26.1
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:9de83732950da0d991e90ef688b6883924d814b3681d6633d50cbd3203c3e2c7
|
||||
- # tag: quay.io/eclipse/che-devfile-registry:7.26.1
|
||||
- - name: che-devfile-registry-@sha256:9de83732950da0d991e90ef688b6883924d814b3681d6633d50cbd3203c3e2c7
|
||||
- image: quay.io/eclipse/che-devfile-registry@sha256:9de83732950da0d991e90ef688b6883924d814b3681d6633d50cbd3203c3e2c7
|
||||
- # tag: quay.io/eclipse/che-devfile-registry@sha256:9de83732950da0d991e90ef688b6883924d814b3681d6633d50cbd3203c3e2c7
|
||||
- - name: che-dotnet-2.2-@sha256:8bb912df01ca1418ea2b7dd6528f8ae49b3531b2c013ed32618a63480b031ebb
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:8bb912df01ca1418ea2b7dd6528f8ae49b3531b2c013ed32618a63480b031ebb
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2@sha256:8bb912df01ca1418ea2b7dd6528f8ae49b3531b2c013ed32618a63480b031ebb
|
||||
- - name: che-dotnet-3.1-@sha256:89fb61d724bef0294eeee5675a9a24cfb3f61940867ac6ac28bc26b21c122e61
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:89fb61d724bef0294eeee5675a9a24cfb3f61940867ac6ac28bc26b21c122e61
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1@sha256:89fb61d724bef0294eeee5675a9a24cfb3f61940867ac6ac28bc26b21c122e61
|
||||
- - name: che-golang-1.14-@sha256:0980e21161b52fe5b8029f326bd6c45c697db696c7a4423b311923e1918d35c9
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:0980e21161b52fe5b8029f326bd6c45c697db696c7a4423b311923e1918d35c9
|
||||
- # tag: quay.io/eclipse/che-golang-1.14@sha256:0980e21161b52fe5b8029f326bd6c45c697db696c7a4423b311923e1918d35c9
|
||||
- - name: che-java11-gradle-@sha256:cba122da46dfb56eaf2878473861c3cbf071a66e8751e5087d58f96cedc54bb5
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:cba122da46dfb56eaf2878473861c3cbf071a66e8751e5087d58f96cedc54bb5
|
||||
- # tag: quay.io/eclipse/che-java11-gradle@sha256:cba122da46dfb56eaf2878473861c3cbf071a66e8751e5087d58f96cedc54bb5
|
||||
- - name: che-java11-maven-@sha256:49a517401dc845b4414888705117a3e3824126c8fb3ea9c0ff82a9fd9a828db2
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:49a517401dc845b4414888705117a3e3824126c8fb3ea9c0ff82a9fd9a828db2
|
||||
- # tag: quay.io/eclipse/che-java11-maven@sha256:49a517401dc845b4414888705117a3e3824126c8fb3ea9c0ff82a9fd9a828db2
|
||||
- - name: che-java8-maven-@sha256:070094fe29ed6e6fc81999d8cc0b9297cbabdd9f37d69d97b07c5d571d0bc9ff
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:070094fe29ed6e6fc81999d8cc0b9297cbabdd9f37d69d97b07c5d571d0bc9ff
|
||||
- # tag: quay.io/eclipse/che-java8-maven@sha256:070094fe29ed6e6fc81999d8cc0b9297cbabdd9f37d69d97b07c5d571d0bc9ff
|
||||
+ - name: che-cpp-rhel7-@sha256:414873fe612f9db17efdf550d93d78a7cfeaf267e03eac967ebc78b96b079dd1
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:414873fe612f9db17efdf550d93d78a7cfeaf267e03eac967ebc78b96b079dd1
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7@sha256:414873fe612f9db17efdf550d93d78a7cfeaf267e03eac967ebc78b96b079dd1
|
||||
+ - name: che-devfile-registry-7.26.2
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:075db7fd2ad1a9eb4b666fcb2e0aa43c661207ca1659dd845cf261259ec319e4
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry:7.26.2
|
||||
+ - name: che-devfile-registry-@sha256:075db7fd2ad1a9eb4b666fcb2e0aa43c661207ca1659dd845cf261259ec319e4
|
||||
+ image: quay.io/eclipse/che-devfile-registry@sha256:075db7fd2ad1a9eb4b666fcb2e0aa43c661207ca1659dd845cf261259ec319e4
|
||||
+ # tag: quay.io/eclipse/che-devfile-registry@sha256:075db7fd2ad1a9eb4b666fcb2e0aa43c661207ca1659dd845cf261259ec319e4
|
||||
+ - name: che-dotnet-2.2-@sha256:f4be8dbcd5ee75778a3779665cb19298c62cdce60e3ac329ee4aa4afb0705159
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:f4be8dbcd5ee75778a3779665cb19298c62cdce60e3ac329ee4aa4afb0705159
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2@sha256:f4be8dbcd5ee75778a3779665cb19298c62cdce60e3ac329ee4aa4afb0705159
|
||||
+ - name: che-dotnet-3.1-@sha256:5e184d0ff4c9d41d8111761d70e3bed6ac169ece3c618d2c3c85e69be8622644
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:5e184d0ff4c9d41d8111761d70e3bed6ac169ece3c618d2c3c85e69be8622644
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1@sha256:5e184d0ff4c9d41d8111761d70e3bed6ac169ece3c618d2c3c85e69be8622644
|
||||
+ - name: che-golang-1.14-@sha256:518abbe0a51dacb349b2270aff797ad926aed0bb20d1466b35f7e50e6342d808
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:518abbe0a51dacb349b2270aff797ad926aed0bb20d1466b35f7e50e6342d808
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14@sha256:518abbe0a51dacb349b2270aff797ad926aed0bb20d1466b35f7e50e6342d808
|
||||
+ - name: che-java11-gradle-@sha256:a9b423a015c06b6c9458d1222c8be93b2f599129001a443b8a11964fe3c0d2aa
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:a9b423a015c06b6c9458d1222c8be93b2f599129001a443b8a11964fe3c0d2aa
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle@sha256:a9b423a015c06b6c9458d1222c8be93b2f599129001a443b8a11964fe3c0d2aa
|
||||
+ - name: che-java11-maven-@sha256:c4a4cb0e3230c4cbfa27cb0cf9e63a89ff3d3b40d999164bee1cbbb0b9d90318
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:c4a4cb0e3230c4cbfa27cb0cf9e63a89ff3d3b40d999164bee1cbbb0b9d90318
|
||||
+ # tag: quay.io/eclipse/che-java11-maven@sha256:c4a4cb0e3230c4cbfa27cb0cf9e63a89ff3d3b40d999164bee1cbbb0b9d90318
|
||||
+ - name: che-java8-maven-@sha256:1cbbfda18b5abfc032ae5ec1c4acdf9f65579919ff28efbb8ce6a028013935b8
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:1cbbfda18b5abfc032ae5ec1c4acdf9f65579919ff28efbb8ce6a028013935b8
|
||||
+ # tag: quay.io/eclipse/che-java8-maven@sha256:1cbbfda18b5abfc032ae5ec1c4acdf9f65579919ff28efbb8ce6a028013935b8
|
||||
- name: che-jwtproxy-0.10.0
|
||||
image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
|
||||
# tag: quay.io/eclipse/che-jwtproxy:0.10.0
|
||||
- name: che-jwtproxy-@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
|
||||
image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
|
||||
# tag: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033
|
||||
- - name: che-keycloak-7.26.1
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:d3eb98172cb6f9196497998351902b0c07899e6c1a09ada7a1c5b84b490d690d
|
||||
- # tag: quay.io/eclipse/che-keycloak:7.26.1
|
||||
- - name: che-keycloak-@sha256:d3eb98172cb6f9196497998351902b0c07899e6c1a09ada7a1c5b84b490d690d
|
||||
- image: quay.io/eclipse/che-keycloak@sha256:d3eb98172cb6f9196497998351902b0c07899e6c1a09ada7a1c5b84b490d690d
|
||||
- # tag: quay.io/eclipse/che-keycloak@sha256:d3eb98172cb6f9196497998351902b0c07899e6c1a09ada7a1c5b84b490d690d
|
||||
- - name: che-machine-exec-@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
- image: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
- # tag: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
- - name: che-nodejs10-community-@sha256:80ac6a66649765df29d631351ee2c680aae5d45d71f49adbfb100b5f49625549
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:80ac6a66649765df29d631351ee2c680aae5d45d71f49adbfb100b5f49625549
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community@sha256:80ac6a66649765df29d631351ee2c680aae5d45d71f49adbfb100b5f49625549
|
||||
- - name: che-nodejs10-ubi-@sha256:ca5cff354b465c9faa02e7003beaf814447d9ac52a5f44e587cea46ae582cba3
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:ca5cff354b465c9faa02e7003beaf814447d9ac52a5f44e587cea46ae582cba3
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:ca5cff354b465c9faa02e7003beaf814447d9ac52a5f44e587cea46ae582cba3
|
||||
- - name: che-nodejs12-community-@sha256:50895327418fdebfe507f397b59f7d66a19139e63dffd3847280d24267f53f64
|
||||
- image: quay.io/eclipse/che-nodejs12-community@sha256:50895327418fdebfe507f397b59f7d66a19139e63dffd3847280d24267f53f64
|
||||
- # tag: quay.io/eclipse/che-nodejs12-community@sha256:50895327418fdebfe507f397b59f7d66a19139e63dffd3847280d24267f53f64
|
||||
- - name: che-nodejs8-centos-@sha256:df7d45e997c30f65aa54b4885051741d93e82e7684cb800ba1da361899bb6554
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:df7d45e997c30f65aa54b4885051741d93e82e7684cb800ba1da361899bb6554
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos@sha256:df7d45e997c30f65aa54b4885051741d93e82e7684cb800ba1da361899bb6554
|
||||
- - name: che-php-7-@sha256:a731df64adb6887e26104a29d45ea9db2aa37b06ee4f3af81f35f9ece52158df
|
||||
- image: quay.io/eclipse/che-php-7@sha256:a731df64adb6887e26104a29d45ea9db2aa37b06ee4f3af81f35f9ece52158df
|
||||
- # tag: quay.io/eclipse/che-php-7@sha256:a731df64adb6887e26104a29d45ea9db2aa37b06ee4f3af81f35f9ece52158df
|
||||
+ - name: che-keycloak-7.26.2
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:22c3b7d937e9373aa9163ceddc3927569d151f642bf28395540b7c704ef32f4d
|
||||
+ # tag: quay.io/eclipse/che-keycloak:7.26.2
|
||||
+ - name: che-keycloak-@sha256:22c3b7d937e9373aa9163ceddc3927569d151f642bf28395540b7c704ef32f4d
|
||||
+ image: quay.io/eclipse/che-keycloak@sha256:22c3b7d937e9373aa9163ceddc3927569d151f642bf28395540b7c704ef32f4d
|
||||
+ # tag: quay.io/eclipse/che-keycloak@sha256:22c3b7d937e9373aa9163ceddc3927569d151f642bf28395540b7c704ef32f4d
|
||||
+ - name: che-machine-exec-@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
+ # tag: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
+ - name: che-nodejs10-community-@sha256:b45f931abc2cbb6020817f70cb5ac5cb7bb395b9f8ec4feb54b690f0abdae6f3
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:b45f931abc2cbb6020817f70cb5ac5cb7bb395b9f8ec4feb54b690f0abdae6f3
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community@sha256:b45f931abc2cbb6020817f70cb5ac5cb7bb395b9f8ec4feb54b690f0abdae6f3
|
||||
+ - name: che-nodejs10-ubi-@sha256:c41a264fc4122f25b7cfebc96da6479121b23588a8d15d64849e83b31e37c565
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:c41a264fc4122f25b7cfebc96da6479121b23588a8d15d64849e83b31e37c565
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:c41a264fc4122f25b7cfebc96da6479121b23588a8d15d64849e83b31e37c565
|
||||
+ - name: che-nodejs12-community-@sha256:4b12e2eb9922e08da455f4e38ef06f6aab0f1c63761c0bfa9f0f971ad919c876
|
||||
+ image: quay.io/eclipse/che-nodejs12-community@sha256:4b12e2eb9922e08da455f4e38ef06f6aab0f1c63761c0bfa9f0f971ad919c876
|
||||
+ # tag: quay.io/eclipse/che-nodejs12-community@sha256:4b12e2eb9922e08da455f4e38ef06f6aab0f1c63761c0bfa9f0f971ad919c876
|
||||
+ - name: che-nodejs8-centos-@sha256:2ef2bbaf41511d238dff0660602a3306a11e512f0f34bb4d5e61667c351c6a8a
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:2ef2bbaf41511d238dff0660602a3306a11e512f0f34bb4d5e61667c351c6a8a
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos@sha256:2ef2bbaf41511d238dff0660602a3306a11e512f0f34bb4d5e61667c351c6a8a
|
||||
+ - name: che-php-7-@sha256:7d5fd133148223602f399723bac266954922fe9dabbd368c36c011f12de733a3
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:7d5fd133148223602f399723bac266954922fe9dabbd368c36c011f12de733a3
|
||||
+ # tag: quay.io/eclipse/che-php-7@sha256:7d5fd133148223602f399723bac266954922fe9dabbd368c36c011f12de733a3
|
||||
- name: che-plugin-artifacts-broker-v3.4.0
|
||||
image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58
|
||||
# tag: quay.io/eclipse/che-plugin-artifacts-broker:v3.4.0
|
||||
@@ -993,12 +995,12 @@
|
||||
- name: che-plugin-metadata-broker-@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
|
||||
image: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
|
||||
# tag: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9
|
||||
- - name: che-plugin-registry-7.26.1
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:a1aada18f4b170152582e4b3fda3f28f6f95a2282e1a03afb2bc6ce2af513f8d
|
||||
- # tag: quay.io/eclipse/che-plugin-registry:7.26.1
|
||||
- - name: che-plugin-registry-@sha256:a1aada18f4b170152582e4b3fda3f28f6f95a2282e1a03afb2bc6ce2af513f8d
|
||||
- image: quay.io/eclipse/che-plugin-registry@sha256:a1aada18f4b170152582e4b3fda3f28f6f95a2282e1a03afb2bc6ce2af513f8d
|
||||
- # tag: quay.io/eclipse/che-plugin-registry@sha256:a1aada18f4b170152582e4b3fda3f28f6f95a2282e1a03afb2bc6ce2af513f8d
|
||||
+ - name: che-plugin-registry-7.26.2
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:012f507619f94b34908db2c39555bf379e754bd329107775d6f53841dcf51e9b
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry:7.26.2
|
||||
+ - name: che-plugin-registry-@sha256:012f507619f94b34908db2c39555bf379e754bd329107775d6f53841dcf51e9b
|
||||
+ image: quay.io/eclipse/che-plugin-registry@sha256:012f507619f94b34908db2c39555bf379e754bd329107775d6f53841dcf51e9b
|
||||
+ # tag: quay.io/eclipse/che-plugin-registry@sha256:012f507619f94b34908db2c39555bf379e754bd329107775d6f53841dcf51e9b
|
||||
- name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a
|
||||
image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a
|
||||
# tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a
|
||||
@@ -1068,27 +1070,30 @@
|
||||
- name: che-plugin-sidecar-@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a
|
||||
image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a
|
||||
# tag: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a
|
||||
- - name: che-python-3.8-@sha256:3e1088613be91fa3d8ddd83f604c638a7b8cf78d84864ef8914d9ed1fc86110c
|
||||
- image: quay.io/eclipse/che-python-3.8@sha256:3e1088613be91fa3d8ddd83f604c638a7b8cf78d84864ef8914d9ed1fc86110c
|
||||
- # tag: quay.io/eclipse/che-python-3.8@sha256:3e1088613be91fa3d8ddd83f604c638a7b8cf78d84864ef8914d9ed1fc86110c
|
||||
- - name: che-quarkus-@sha256:044872aa85fcf282bdbaf2e4c14a5ce3a0472605328dd76027567b003df84f25
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:044872aa85fcf282bdbaf2e4c14a5ce3a0472605328dd76027567b003df84f25
|
||||
- # tag: quay.io/eclipse/che-quarkus@sha256:044872aa85fcf282bdbaf2e4c14a5ce3a0472605328dd76027567b003df84f25
|
||||
- - name: che-server-7.26.1
|
||||
- image: quay.io/eclipse/che-server@sha256:ba472af65542a3cc795e7352ae333330f1fd23492f040998b2288d3a98d3043d
|
||||
- # tag: quay.io/eclipse/che-server:7.26.1
|
||||
- - name: che-server-@sha256:ba472af65542a3cc795e7352ae333330f1fd23492f040998b2288d3a98d3043d
|
||||
- image: quay.io/eclipse/che-server@sha256:ba472af65542a3cc795e7352ae333330f1fd23492f040998b2288d3a98d3043d
|
||||
- # tag: quay.io/eclipse/che-server@sha256:ba472af65542a3cc795e7352ae333330f1fd23492f040998b2288d3a98d3043d
|
||||
+ - name: che-python-3.8-@sha256:387bd6f57ac5bb8acd70f285518fcea0e56705070f5228ef6cd9083d1a09f6d3
|
||||
+ image: quay.io/eclipse/che-python-3.8@sha256:387bd6f57ac5bb8acd70f285518fcea0e56705070f5228ef6cd9083d1a09f6d3
|
||||
+ # tag: quay.io/eclipse/che-python-3.8@sha256:387bd6f57ac5bb8acd70f285518fcea0e56705070f5228ef6cd9083d1a09f6d3
|
||||
+ - name: che-quarkus-@sha256:982ef32360aad4eb3224366df0efee3ce025ea7682cdc2681f033686d48731f8
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:982ef32360aad4eb3224366df0efee3ce025ea7682cdc2681f033686d48731f8
|
||||
+ # tag: quay.io/eclipse/che-quarkus@sha256:982ef32360aad4eb3224366df0efee3ce025ea7682cdc2681f033686d48731f8
|
||||
+ - name: che-rust-1.39-@sha256:c5c38d025b1cca59e3544fc74861949d0aaba0590cbb265b596414282299fd1f
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:c5c38d025b1cca59e3544fc74861949d0aaba0590cbb265b596414282299fd1f
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39@sha256:c5c38d025b1cca59e3544fc74861949d0aaba0590cbb265b596414282299fd1f
|
||||
+ - name: che-server-7.26.2
|
||||
+ image: quay.io/eclipse/che-server@sha256:31761827f7059c26cbf6802d336c06fac3393ea052fd8440b4fd9d3af7902240
|
||||
+ # tag: quay.io/eclipse/che-server:7.26.2
|
||||
+ - name: che-server-@sha256:31761827f7059c26cbf6802d336c06fac3393ea052fd8440b4fd9d3af7902240
|
||||
+ image: quay.io/eclipse/che-server@sha256:31761827f7059c26cbf6802d336c06fac3393ea052fd8440b4fd9d3af7902240
|
||||
+ # tag: quay.io/eclipse/che-server@sha256:31761827f7059c26cbf6802d336c06fac3393ea052fd8440b4fd9d3af7902240
|
||||
- name: che-sidecar-workspace-data-sync-@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
image: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
# tag: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
- - name: che-theia-endpoint-runtime-binary-@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
- - name: che-theia-@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- image: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- # tag: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
+ - name: che-theia-endpoint-runtime-binary-@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
+ - name: che-theia-@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ image: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ # tag: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
- name: che-tls-secret-creator-@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
|
||||
image: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
|
||||
# tag: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5
|
||||
@@ -1227,12 +1232,12 @@
|
||||
- name: che-plugin-sidecar-@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
# tag: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3
|
||||
- - name: che-theia-@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- image: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- # tag: quay.io/eclipse/che-theia@sha256:1171cab20c2127d8b4e78194d6a0fd94807e8274060e8f16c3a68ef4214f3360
|
||||
- - name: che-theia-endpoint-runtime-binary-@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:aa34a2b1009c1e304616e82d3ab07ea0dd60c144f9ea9134558f6e8d775ddd2f
|
||||
+ - name: che-theia-@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ image: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ # tag: quay.io/eclipse/che-theia@sha256:0efc94a17a0c655b37d90f5a29ea876c78af9f9bebc2b4494b1060723b07c6f9
|
||||
+ - name: che-theia-endpoint-runtime-binary-@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
+ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
+ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:55a740a3a6c6e7e23f96fd0d8f23bba573a42a94abe01c6696d32045ba833ba7
|
||||
- name: che-editor-jupyter-@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
image: index.docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
# tag: index.docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47
|
||||
@@ -1257,9 +1262,9 @@
|
||||
- name: che-sidecar-workspace-data-sync-@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
image: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
# tag: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10
|
||||
- - name: che-machine-exec-@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
- image: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
- # tag: quay.io/eclipse/che-machine-exec@sha256:79b42ce5d40fed4a3fe9e8162c018846be88f068ead9fd7d7e4d73d41eb805a6
|
||||
+ - name: che-machine-exec-@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
+ image: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
+ # tag: quay.io/eclipse/che-machine-exec@sha256:8203c477d6f6c664873e2997fe0cced4b15e8a2cc5e84191f7cb139d088ce41d
|
||||
- name: che-buildkit-base-@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
# tag: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9
|
||||
@@ -1269,48 +1274,51 @@
|
||||
- name: che--centos--mysql-57-centos7-latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
image: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
# tag: quay.io/eclipse/che--centos--mysql-57-centos7:latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764
|
||||
- - name: che-cpp-rhel7-7.26.1
|
||||
- image: quay.io/eclipse/che-cpp-rhel7@sha256:700f67d4a49c47b2f95c6bcdcc972ae8c4b79f60659984786678ff44338222c7
|
||||
- # tag: quay.io/eclipse/che-cpp-rhel7:7.26.1
|
||||
- - name: che-dotnet-2.2-7.26.1
|
||||
- image: quay.io/eclipse/che-dotnet-2.2@sha256:8bb912df01ca1418ea2b7dd6528f8ae49b3531b2c013ed32618a63480b031ebb
|
||||
- # tag: quay.io/eclipse/che-dotnet-2.2:7.26.1
|
||||
- - name: che-dotnet-3.1-7.26.1
|
||||
- image: quay.io/eclipse/che-dotnet-3.1@sha256:89fb61d724bef0294eeee5675a9a24cfb3f61940867ac6ac28bc26b21c122e61
|
||||
- # tag: quay.io/eclipse/che-dotnet-3.1:7.26.1
|
||||
- - name: che-golang-1.14-7.26.1
|
||||
- image: quay.io/eclipse/che-golang-1.14@sha256:0980e21161b52fe5b8029f326bd6c45c697db696c7a4423b311923e1918d35c9
|
||||
- # tag: quay.io/eclipse/che-golang-1.14:7.26.1
|
||||
- - name: che-java11-gradle-7.26.1
|
||||
- image: quay.io/eclipse/che-java11-gradle@sha256:cba122da46dfb56eaf2878473861c3cbf071a66e8751e5087d58f96cedc54bb5
|
||||
- # tag: quay.io/eclipse/che-java11-gradle:7.26.1
|
||||
- - name: che-java11-maven-7.26.1
|
||||
- image: quay.io/eclipse/che-java11-maven@sha256:49a517401dc845b4414888705117a3e3824126c8fb3ea9c0ff82a9fd9a828db2
|
||||
- # tag: quay.io/eclipse/che-java11-maven:7.26.1
|
||||
- - name: che-java8-maven-7.26.1
|
||||
- image: quay.io/eclipse/che-java8-maven@sha256:070094fe29ed6e6fc81999d8cc0b9297cbabdd9f37d69d97b07c5d571d0bc9ff
|
||||
- # tag: quay.io/eclipse/che-java8-maven:7.26.1
|
||||
- - name: che-nodejs10-community-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs10-community@sha256:80ac6a66649765df29d631351ee2c680aae5d45d71f49adbfb100b5f49625549
|
||||
- # tag: quay.io/eclipse/che-nodejs10-community:7.26.1
|
||||
- - name: che-nodejs10-ubi-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs10-ubi@sha256:ca5cff354b465c9faa02e7003beaf814447d9ac52a5f44e587cea46ae582cba3
|
||||
- # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.1
|
||||
- - name: che-nodejs12-community-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs12-community@sha256:50895327418fdebfe507f397b59f7d66a19139e63dffd3847280d24267f53f64
|
||||
- # tag: quay.io/eclipse/che-nodejs12-community:7.26.1
|
||||
- - name: che-nodejs8-centos-7.26.1
|
||||
- image: quay.io/eclipse/che-nodejs8-centos@sha256:df7d45e997c30f65aa54b4885051741d93e82e7684cb800ba1da361899bb6554
|
||||
- # tag: quay.io/eclipse/che-nodejs8-centos:7.26.1
|
||||
- - name: che-php-7-7.26.1
|
||||
- image: quay.io/eclipse/che-php-7@sha256:a731df64adb6887e26104a29d45ea9db2aa37b06ee4f3af81f35f9ece52158df
|
||||
- # tag: quay.io/eclipse/che-php-7:7.26.1
|
||||
- - name: che-python-3.8-7.26.1
|
||||
- image: quay.io/eclipse/che-python-3.8@sha256:3e1088613be91fa3d8ddd83f604c638a7b8cf78d84864ef8914d9ed1fc86110c
|
||||
- # tag: quay.io/eclipse/che-python-3.8:7.26.1
|
||||
- - name: che-quarkus-7.26.1
|
||||
- image: quay.io/eclipse/che-quarkus@sha256:044872aa85fcf282bdbaf2e4c14a5ce3a0472605328dd76027567b003df84f25
|
||||
- # tag: quay.io/eclipse/che-quarkus:7.26.1
|
||||
+ - name: che-cpp-rhel7-7.26.2
|
||||
+ image: quay.io/eclipse/che-cpp-rhel7@sha256:414873fe612f9db17efdf550d93d78a7cfeaf267e03eac967ebc78b96b079dd1
|
||||
+ # tag: quay.io/eclipse/che-cpp-rhel7:7.26.2
|
||||
+ - name: che-dotnet-2.2-7.26.2
|
||||
+ image: quay.io/eclipse/che-dotnet-2.2@sha256:f4be8dbcd5ee75778a3779665cb19298c62cdce60e3ac329ee4aa4afb0705159
|
||||
+ # tag: quay.io/eclipse/che-dotnet-2.2:7.26.2
|
||||
+ - name: che-dotnet-3.1-7.26.2
|
||||
+ image: quay.io/eclipse/che-dotnet-3.1@sha256:5e184d0ff4c9d41d8111761d70e3bed6ac169ece3c618d2c3c85e69be8622644
|
||||
+ # tag: quay.io/eclipse/che-dotnet-3.1:7.26.2
|
||||
+ - name: che-golang-1.14-7.26.2
|
||||
+ image: quay.io/eclipse/che-golang-1.14@sha256:518abbe0a51dacb349b2270aff797ad926aed0bb20d1466b35f7e50e6342d808
|
||||
+ # tag: quay.io/eclipse/che-golang-1.14:7.26.2
|
||||
+ - name: che-java11-gradle-7.26.2
|
||||
+ image: quay.io/eclipse/che-java11-gradle@sha256:a9b423a015c06b6c9458d1222c8be93b2f599129001a443b8a11964fe3c0d2aa
|
||||
+ # tag: quay.io/eclipse/che-java11-gradle:7.26.2
|
||||
+ - name: che-java11-maven-7.26.2
|
||||
+ image: quay.io/eclipse/che-java11-maven@sha256:c4a4cb0e3230c4cbfa27cb0cf9e63a89ff3d3b40d999164bee1cbbb0b9d90318
|
||||
+ # tag: quay.io/eclipse/che-java11-maven:7.26.2
|
||||
+ - name: che-java8-maven-7.26.2
|
||||
+ image: quay.io/eclipse/che-java8-maven@sha256:1cbbfda18b5abfc032ae5ec1c4acdf9f65579919ff28efbb8ce6a028013935b8
|
||||
+ # tag: quay.io/eclipse/che-java8-maven:7.26.2
|
||||
+ - name: che-nodejs10-community-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-community@sha256:b45f931abc2cbb6020817f70cb5ac5cb7bb395b9f8ec4feb54b690f0abdae6f3
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-community:7.26.2
|
||||
+ - name: che-nodejs10-ubi-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs10-ubi@sha256:c41a264fc4122f25b7cfebc96da6479121b23588a8d15d64849e83b31e37c565
|
||||
+ # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.2
|
||||
+ - name: che-nodejs12-community-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs12-community@sha256:4b12e2eb9922e08da455f4e38ef06f6aab0f1c63761c0bfa9f0f971ad919c876
|
||||
+ # tag: quay.io/eclipse/che-nodejs12-community:7.26.2
|
||||
+ - name: che-nodejs8-centos-7.26.2
|
||||
+ image: quay.io/eclipse/che-nodejs8-centos@sha256:2ef2bbaf41511d238dff0660602a3306a11e512f0f34bb4d5e61667c351c6a8a
|
||||
+ # tag: quay.io/eclipse/che-nodejs8-centos:7.26.2
|
||||
+ - name: che-php-7-7.26.2
|
||||
+ image: quay.io/eclipse/che-php-7@sha256:7d5fd133148223602f399723bac266954922fe9dabbd368c36c011f12de733a3
|
||||
+ # tag: quay.io/eclipse/che-php-7:7.26.2
|
||||
+ - name: che-python-3.8-7.26.2
|
||||
+ image: quay.io/eclipse/che-python-3.8@sha256:387bd6f57ac5bb8acd70f285518fcea0e56705070f5228ef6cd9083d1a09f6d3
|
||||
+ # tag: quay.io/eclipse/che-python-3.8:7.26.2
|
||||
+ - name: che-quarkus-7.26.2
|
||||
+ image: quay.io/eclipse/che-quarkus@sha256:982ef32360aad4eb3224366df0efee3ce025ea7682cdc2681f033686d48731f8
|
||||
+ # tag: quay.io/eclipse/che-quarkus:7.26.2
|
||||
+ - name: che-rust-1.39-7.26.2
|
||||
+ image: quay.io/eclipse/che-rust-1.39@sha256:c5c38d025b1cca59e3544fc74861949d0aaba0590cbb265b596414282299fd1f
|
||||
+ # tag: quay.io/eclipse/che-rust-1.39:7.26.2
|
||||
- name: ubi8-minimal-8.3
|
||||
image: registry.access.redhat.com/ubi8-minimal@sha256:fdfb0770bff33e0f97d78583efd68b546a19d0a4b0ac23eef25ef261bca3e975
|
||||
# tag: registry.access.redhat.com/ubi8-minimal:8.3
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
channels:
|
||||
- currentCSV: eclipse-che-preview-openshift.v7.26.1
|
||||
- currentCSV: eclipse-che-preview-openshift.v7.26.2
|
||||
name: stable
|
||||
defaultChannel: stable
|
||||
packageName: eclipse-che-preview-openshift
|
||||
|
|
|
|||
Loading…
Reference in New Issue