diff --git a/deploy/olm-catalog/eclipse-che-preview-kubernetes/manifests/che-operator.clusterserviceversion.yaml b/deploy/olm-catalog/eclipse-che-preview-kubernetes/manifests/che-operator.clusterserviceversion.yaml index 17b34fd20..d30a2d82e 100644 --- a/deploy/olm-catalog/eclipse-che-preview-kubernetes/manifests/che-operator.clusterserviceversion.yaml +++ b/deploy/olm-catalog/eclipse-che-preview-kubernetes/manifests/che-operator.clusterserviceversion.yaml @@ -85,13 +85,13 @@ metadata: categories: Developer Tools certified: "false" containerImage: quay.io/eclipse/che-operator:nightly - createdAt: "2021-02-11T17:05:13Z" + createdAt: "2021-02-10T17:04:13Z" 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.0-94.nightly + name: eclipse-che-preview-kubernetes.v7.26.0-92.nightly namespace: placeholder spec: apiservicedefinitions: {} @@ -685,4 +685,4 @@ spec: maturity: stable provider: name: Eclipse Foundation - version: 7.26.0-94.nightly + version: 7.26.0-92.nightly diff --git a/deploy/olm-catalog/eclipse-che-preview-openshift/manifests/che-operator.clusterserviceversion.yaml b/deploy/olm-catalog/eclipse-che-preview-openshift/manifests/che-operator.clusterserviceversion.yaml index 6eacf230d..0bf5ec02e 100644 --- a/deploy/olm-catalog/eclipse-che-preview-openshift/manifests/che-operator.clusterserviceversion.yaml +++ b/deploy/olm-catalog/eclipse-che-preview-openshift/manifests/che-operator.clusterserviceversion.yaml @@ -76,13 +76,13 @@ metadata: categories: Developer Tools, OpenShift Optional certified: "false" containerImage: quay.io/eclipse/che-operator:nightly - createdAt: "2021-02-11T17:05:23Z" + createdAt: "2021-02-10T17:04:25Z" 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.0-94.nightly + name: eclipse-che-preview-openshift.v7.26.0-92.nightly namespace: placeholder spec: apiservicedefinitions: {} @@ -757,4 +757,4 @@ spec: maturity: stable provider: name: Eclipse Foundation - version: 7.26.0-94.nightly + version: 7.26.0-92.nightly diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.crd.yaml b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.crd.yaml new file mode 100644 index 000000000..83435c854 --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.crd.yaml @@ -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 `.` + 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 ``,`` and `` placeholders, + such as che-workspace-. 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 diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.crd.yaml.diff b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.crd.yaml.diff new file mode 100644 index 000000000..734863d4f --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.crd.yaml.diff @@ -0,0 +1,980 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.25.2/eclipse-che-preview-kubernetes.crd.yaml 2021-02-10 16:08:25.517203944 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.crd.yaml 2021-02-10 17:04:30.307329348 +0000 +@@ -41,38 +41,38 @@ + type: object + spec: + description: Desired configuration of the Che installation. Based on these +- settings, the operator automatically creates and maintains several config +- maps that will contain the appropriate environment variables the various +- components of the Che installation. These generated config maps should +- NOT be updated manually. ++ 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 or not to deploy +- a dedicated Identity Provider (Keycloak or RH SSO instance). By +- default a dedicated Identity Provider server is deployed as part +- of the Che installation. But if `externalIdentityProvider` is +- `true`, then no dedicated identity provider will be deployed by +- the operator and you might need to provide details about the external +- identity provider you want to use. See also all the other fields +- starting with: `identityProvider`.' ++ 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 admin user. +- Defaults to `admin`. ++ description: Overrides the name of the Identity Provider administrator ++ user. Defaults to `admin`. + type: string + identityProviderClientId: +- description: Name of a Identity provider (Keycloak / RH SSO) `client-id` +- that should be used for Che. This is useful to override it ONLY +- if you use an external Identity Provider (see the `externalIdentityProvider` +- field). If omitted or left blank, it will be set to the value +- of the `flavour` field suffixed with `-public`. ++ 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 ++ description: Identity provider container custom settings. + properties: + limits: + description: Limits describes the maximum amount of compute +@@ -101,79 +101,81 @@ + type: object + identityProviderImage: + description: Overrides the container image used in the Identity +- Provider (Keycloak / RH SSO) deployment. This includes the image +- tag. Omit it or leave it empty to use the defaut container image +- provided by the operator. ++ 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 / RH SSO) deployment. Default value is `Always` ++ 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 ++ description: Ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ to organize and categorize objects by scoping and selecting. + type: string + type: object + identityProviderPassword: +- description: Overrides the password of Keycloak admin user. This +- is useful to override it ONLY if you use an external Identity +- Provider (see the `externalIdentityProvider` field). If omitted +- or left blank, it will be set to an auto-generated password. ++ 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 The Identity Provider (Keycloak / RH SSO) ++ 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). If omitted or left blank, it will be set to an auto-generated ++ 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 / RH SSO) to connect to the database. If the +- secret is defined then `identityProviderPostgresPassword` will +- be ignored. If the value is omitted or left blank then there are +- two scenarios: 1. `identityProviderPostgresPassword` is defined, +- then it will be used to connect to the database. 2. `identityProviderPostgresPassword` +- is not defined, then a new secret with the name `che-identity-postgres-secret` +- will be created with an auto-generated value for `password`.' ++ 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 / RH SSO) realm +- that should be used for Che. This is useful to override it ONLY +- if you use an external Identity Provider (see the `externalIdentityProvider` +- field). If omitted or left blank, it will be set to the value +- of the `flavour` field. ++ 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 ++ description: Route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. If the secret is defined then `identityProviderAdminUserName` +- and `identityProviderPassword` are ignored. If the value is omitted +- or left blank then there are two scenarios: 1. `identityProviderAdminUserName` +- and `identityProviderPassword` are defined, then they will be +- used. 2. `identityProviderAdminUserName` or `identityProviderPassword` +- are not defined, then a new secret with the name `che-identity-secret` +- will be created with default value `admin` for `user` and with +- an auto-generated value for `password`.' ++ 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). You should set it ONLY if you use an external +- Identity Provider (see the `externalIdentityProvider` field). +- By default this will be automatically calculated and set by the +- operator. ++ / 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 +@@ -187,15 +189,12 @@ + type: string + openShiftoAuth: + description: 'Enables the integration of the identity provider (Keycloak +- / RHSSO) with OpenShift OAuth. Empty value on the OpenShift platform +- by default. If user changes this empty value to true/false, then +- che-operator respect this value. Otherwise che-operator tries +- to auto detect if Openshift oAuth can be enabled and change empty +- value, correspondly to auto-detection result. This property allows +- users to directly login with their Openshift user through the +- Openshift login, and have their workspaces created under personal +- OpenShift namespaces. WARNING: the `kubeadmin` user is NOT supported, +- and logging through it will NOT allow accessing the Che Dashboard.' ++ / 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 +@@ -207,7 +206,7 @@ + the Che installation. + properties: + chePostgresContainerResources: +- description: Postgres container custom settings ++ description: PostgreSQL container custom settings + properties: + limits: + description: Limits describes the maximum amount of compute +@@ -235,57 +234,56 @@ + type: object + type: object + chePostgresDb: +- description: Postgres database name that the Che server uses to ++ description: PostgreSQL database name that the Che server uses to + connect to the DB. Defaults to `dbche`. + type: string + chePostgresHostName: +- description: Postgres Database hostname that the Che server uses +- to connect to. Defaults to postgres. This value should be overridden +- ONLY when using an external database (see field `externalDb`). +- In the default case it will be automatically set by the operator. ++ 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: Postgres password that the Che server should use to +- connect to the DB. If omitted or left blank, it will be set to +- an auto-generated value. ++ 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: Postgres Database port that the Che server uses to +- connect to. Defaults to 5432. This value should be overridden +- ONLY when using an external database (see field `externalDb`). +- In the default case it will be automatically set by the operator. ++ 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 Postgres `user` and `password` +- that the Che server should use to connect to the DB. If the secret +- is defined then `chePostgresUser` and `chePostgresPassword` are +- ignored. If the value is omitted or left blank then there are +- two scenarios: 1. `chePostgresUser` and `chePostgresPassword` ++ 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: Postgres user that the Che server should use to connect ++ 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 or not to deploy +- a dedicated database. By default a dedicated Postgres database +- is deployed as part of the Che installation. But if `externalDb` +- is `true`, then no dedicated database will be deployed by the +- operator and you might need to provide connection details to the +- external DB you want to use. See also all the fields starting +- with: `chePostgres`.' ++ 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 Postgres ++ 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 defaut container image provided by the operator. ++ it empty to use the default container image provided by the Operator. + type: string + postgresImagePullPolicy: +- description: Overrides the image pull policy used in the Postgres ++ 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 +@@ -298,11 +296,10 @@ + Image Puller Operator. If true and no spec is provided, it will + create a default KubernetesImagePuller object to be managed by + the Operator. If false, the KubernetesImagePuller object will +- be deleted, and the operator will be uninstalled, regardless of +- whether or not a spec is provided. \n Please note that while this +- operator and its behavior is community-supported, its payload +- may be commercially-supported if you use it for pulling commercially-supported +- images." ++ 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 +@@ -335,49 +332,46 @@ + on upstream Kubernetes. + properties: + ingressClass: +- description: 'Ingress class that will define the which controler ++ description: 'Ingress class that will define the which controller + will manage ingresses. Defaults to `nginx`. NB: This drives the +- `is kubernetes.io/ingress.class` annotation on Che-related ingresses.' ++ `kubernetes.io/ingress.class` annotation on Che-related ingresses.' + type: string + ingressDomain: + description: 'Global ingress domain for a K8S cluster. This MUST + be explicitly specified: there are no defaults.' + type: string + ingressStrategy: +- description: Strategy for ingress creation. This can be `multi-host` ++ 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. If both are +- defined, `serverExposureStrategy` takes precedence. ++ 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: FSGroup the Che pod and Workspace pods containers should +- run in. Defaults to `1724`. ++ 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 +- should run as. Default to `1724`. ++ 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", ++ 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". ++ configured by this property. The possible values are `native`, ++ which means that the server and workspaces are exposed using ingresses ++ on K8s or `gateway` where the server and workspaces are exposed ++ using a custom gateway based on Traefik. All the endpoints whether ++ backed by the ingress or gateway `route` always point to the subpaths ++ on the same domain. Defaults to `native`. + type: string + tlsSecretName: +- description: Name of a secret that is used to set ingress TLS termination +- if TLS is enabled. If the specified secret does not exist, a self-signed +- certificate will be created. If the value is empty or omitted, +- the default ingress controller certificate will be used. See also +- the `tlsSupport` field. Note, when switching to the default ingress +- controller certificate, `self-signed-certificate` secret should +- be deleted manually. ++ 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: +@@ -385,7 +379,8 @@ + used by the Che installation. + properties: + enable: +- description: Enables `metrics` Che server endpoint. Default to `true`. ++ description: Enables `metrics` the Che server endpoint. Default ++ to `true`. + type: boolean + type: object + server: +@@ -393,29 +388,29 @@ + and the plugin and devfile registries + properties: + airGapContainerRegistryHostname: +- description: Optional hostname (or url) to an alternate container ++ description: Optional host name, or URL, to an alternate container + registry to pull images from. This value overrides the container +- registry hostname defined in all the default container images ++ registry host name defined in all the default container images + involved in a Che deployment. This is particularly useful to install +- Che in an air-gapped environment. ++ 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 +- Che in an air-gapped environment. ++ Eclipse Che in a restricted environment. + type: string + allowUserDefinedWorkspaceNamespaces: +- description: Defines if a user is able to specify Kubernetes namespace +- (or OpenShift project) different from the default. It's NOT RECOMMENDED +- to configured true without OAuth configured. This property is +- also used by the OpenShift infra. ++ 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: Comma-separated list of ClusterRoles that will be assigned +- to che ServiceAccount. Be aware that che-operator has to already +- have all permissions in these ClusterRoles to be able to grant ++ 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: +@@ -423,24 +418,25 @@ + `false`. + type: string + cheFlavor: +- description: Flavor of the installation. This is either `che` for +- upstream Che installations, or `codeready` for CodeReady Workspaces +- installation. In most cases the default value should not be overridden. ++ 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 hostname of the installed Che server. If value +- is omitted then it will be automatically set by the operator. +- (see the `cheHostTLSSecret` field). ++ 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/route for the custom hostname of the installed Che server. +- (see the `cheHost` field). ++ 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 defaut container image provided by the operator. ++ 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. +@@ -449,27 +445,27 @@ + type: string + cheImageTag: + description: Overrides the tag of the container image used in Che +- deployment. Omit it or leave it empty to use the defaut image +- tag provided by the operator. ++ 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: Che server ingress custom settings ++ description: The Che server ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ to organize and categorize objects by scoping and selecting. + type: string + type: object + cheServerRoute: +- description: Che server route custom settings ++ description: The Che server route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ to organize and categorize objects by scoping and selecting. + type: string + type: object + cheWorkspaceClusterRole: +@@ -480,252 +476,247 @@ + additionalProperties: + type: string + description: Map of additional environment variables that will be +- applied in the generated `che` config map to be used by the Che ++ 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). If `customCheProperties` ++ fields of the `CheCluster` custom resource (CR). When `customCheProperties` + contains a property that would be normally generated in `che` +- config map from other CR fields, then the value defined in the +- `customCheProperties` will be used instead. ++ 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 ++ 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 ++ 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 ++ description: Overrides the container image used in the devfile registry + deployment. This includes the image tag. Omit it or leave it empty +- to use the defaut container image provided by the operator. ++ to use the default container image provided by the Operator. + type: string + devfileRegistryIngress: +- description: Devfile registry ingress custom settings ++ description: The devfile registry ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 256Mi. ++ 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 In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 32Mi. ++ 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 ++ description: Overrides the image pull policy used in the devfile + registry deployment. Default value is `Always` for `nightly` or + `latest` images, and `IfNotPresent` in other cases. + type: string + devfileRegistryRoute: +- description: Devfile registry route custom settings ++ description: The devfile registry route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. You should set it ONLY if you use an external +- devfile registry (see the `externalDevfileRegistry` field). By +- default this will be automatically calculated by the operator. ++ 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 or not to deploy +- a dedicated Devfile registry server. By default a dedicated devfile +- registry server is started. But if `externalDevfileRegistry` is +- `true`, then no such dedicated server will be started by the operator +- and you will have to manually set the `devfileRegistryUrl` field ++ 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 or not to deploy +- a dedicated Plugin registry server. By default a dedicated plugin +- registry server is started. But if `externalPluginRegistry` is +- `true`, then no such dedicated server will be started by the operator +- and you will have to manually set the `pluginRegistryUrl` field. ++ 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: If enabled, then the certificate from `che-git-self-signed-cert` +- config map will be propagated to the Che components and provide ++ 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 should not use the configured proxy. +- So specify wild card domain use the following form `.` +- and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32` ++ description: 'List of hosts that will be reached directly, bypassing ++ the proxy. Specify wild card domain use the following form `.` ++ 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).' ++ 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 ++ 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 ++ 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 ++ 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. ++ to use the default container image provided by the Operator. + type: string + pluginRegistryIngress: +- description: Plugin registry ingress custom settings ++ description: Plugin registry ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 256Mi. ++ 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. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 32Mi. ++ 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 ++ 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 ++ description: Plugin registry route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. You should set it ONLY if you use an external +- devfile registry (see the `externalPluginRegistry` field). By +- default this will be automatically calculated by the operator. ++ 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 also the `proxyURL`, `proxyUser` and `proxySecret` +- fields). ++ 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). ++ a proxy is required. See also the `proxyURL` and `nonProxyHosts` ++ fields. + type: string + proxySecret: + description: The secret that contains `user` and `password` for +- a proxy server. If the secret is defined then `proxyUser` and +- `proxyPassword` are ignored ++ a proxy server. When the secret is defined, the `proxyUser` and ++ `proxyPassword` are ignored. + type: string + proxyURL: +- description: URL (protocol+hostname) of the proxy server. This drives +- the appropriate changes in the `JAVA_OPTS` and `https(s)_proxy` ++ 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). ++ 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). ++ a proxy is required. See also the `proxyURL`, `proxyPassword` ++ and `proxySecret` fields. + type: string + selfSignedCert: +- description: Deprecated. The value of this flag is ignored. Che +- operator will automatically detect if router certificate is self-signed. +- If so it will be propagated to Che server and some other components. ++ 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 ++ 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 ++ description: Overrides the CPU request used in the Che server deployment + In cores. (500m = .5 cores). Default to 100m. + type: string + serverExposureStrategy: + description: Sets the server and workspaces exposure type. Possible +- values are "multi-host", "single-host", "default-host". Defaults +- to "multi-host" which creates a separate ingress (or route on +- OpenShift) for every required endpoint. "single-host" makes Che +- exposed on a single hostname with workspaces exposed on subpaths. +- Please read the docs to learn about the limitations of this approach. +- Also consult the `singleHostExposureType` property to further +- configure how the operator and Che server make that happen on +- Kubernetes. "default-host" exposes che server on the host of the +- cluster. Please read the docs to learn about the limitations of +- this approach. ++ 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. +- In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). Defaults +- to 1Gi. ++ Defaults to 1Gi. + type: string + serverMemoryRequest: + description: Overrides the memory request used in the Che server +- deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 512Mi. ++ deployment. Defaults to 512Mi. + type: string + serverTrustStoreConfigMapName: +- description: Name of the config-map with public certificates to +- add to Java trust store of the Che server. This is usually required +- when adding the OpenShift OAuth provider which has https endpoint +- signed with self-signed cert. So, Che server must be aware of ++ 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 (and are put) on +- the configmaps representing the gateway configuration. ++ 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 defaut container image provided by the operator. ++ 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 defaut container image provided +- by the operator. ++ 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 may cause +- malfunction of some Che components. ++ 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 ++ description: Use internal cluster SVC names to communicate between + components to speed up the traffic and avoid proxy issues. The +- default value is `true`. ++ 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 , and placeholders (e.g.: +- che-workspace-). In that case, new namespace will be +- created for each user (or workspace). Is used by OpenShift infra +- as well to specify Project' ++ description: Defines Kubernetes default namespace in which user's ++ workspaces are created if user does not override it. It's possible ++ to use ``,`` and `` placeholders, ++ such as che-workspace-. 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: +@@ -734,24 +725,24 @@ + properties: + postgresPVCStorageClassName: + description: Storage class for the Persistent Volume Claim dedicated +- to the Postgres database. If omitted or left blank, default storage +- class is used. ++ to the PosgreSQL database. When omitted or left blank, a default ++ storage class is used. + type: string + preCreateSubPaths: +- description: Instructs the Che server to launch a special pod to +- pre-create a subpath in the Persistent Volumes. Defaults to `false`, +- however it might need to enable it according to the configuration ++ 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` ++ Defaults to `1Gi`. + type: string + pvcJobsImage: + description: Overrides the container image used to create sub-paths + in the Persistent Volumes. This includes the image tag. Omit it +- or leave it empty to use the defaut container image provided by +- the operator. See also the `preCreateSubPaths` field. ++ 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. +@@ -761,7 +752,7 @@ + type: string + workspacePVCStorageClassName: + description: Storage class for the Persistent Volume Claims dedicated +- to the Che workspaces. If omitted or left blank, default storage ++ to the Che workspaces. When omitted or left blank, a default storage + class is used. + type: string + type: object +@@ -771,51 +762,51 @@ + properties: + cheClusterRunning: + description: Status of a Che installation. Can be `Available`, `Unavailable`, +- or `Available, Rolling Update in Progress` ++ or `Available, Rolling Update in Progress`. + type: string + cheURL: +- description: Public URL to the Che server ++ description: Public URL to the Che server. + type: string + cheVersion: +- description: Current installed Che version ++ description: Current installed Che version. + type: string + dbProvisioned: +- description: Indicates if or not a Postgres instance has been correctly +- provisioned ++ description: Indicates that a PosgreSQL instance has been correctly ++ provisioned or not. + type: boolean + devfileRegistryURL: +- description: Public URL to the Devfile registry ++ description: Public URL to the devfile registry. + type: string + gitHubOAuthProvisioned: +- description: Indicates whether an Identity Provider instance (Keycloak +- / RH SSO) has been configured to integrate with the GitHub OAuth. ++ 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 can point to some URL where to find help related ++ 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 +- / RH SSO) has been provisioned with realm, client and user ++ 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 / +- RH SSO). ++ 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. ++ Pod is in this condition. + type: string + openShiftoAuthProvisioned: +- description: Indicates whether an Identity Provider instance (Keycloak +- / RH SSO) has been configured to integrate with the OpenShift OAuth. ++ 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 ++ 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. ++ the Pod is in this state. + type: string + type: object + type: object diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.v7.26.0.clusterserviceversion.yaml b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.v7.26.0.clusterserviceversion.yaml new file mode 100644 index 000000000..2191631d3 --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.v7.26.0.clusterserviceversion.yaml @@ -0,0 +1,1075 @@ +apiVersion: operators.coreos.com/v1alpha1 +kind: ClusterServiceVersion +metadata: + annotations: + alm-examples: |- + [ + { + "apiVersion": "org.eclipse.che/v1", + "kind": "CheCluster", + "metadata": { + "name": "eclipse-che" + }, + "spec": { + "auth": { + "externalIdentityProvider": false, + "identityProviderAdminUserName": "", + "identityProviderClientId": "", + "identityProviderImage": "", + "identityProviderPassword": "", + "identityProviderRealm": "", + "identityProviderURL": "", + "oAuthClientName": "", + "oAuthSecret": "" + }, + "database": { + "chePostgresDb": "", + "chePostgresHostName": "", + "chePostgresPassword": "", + "chePostgresPort": "", + "chePostgresUser": "", + "externalDb": false, + "postgresImage": "" + }, + "k8s": { + "ingressClass": "", + "ingressDomain": "", + "ingressStrategy": "", + "securityContextFsGroup": "", + "securityContextRunAsUser": "", + "singleHostExposureType": "", + "tlsSecretName": "che-tls" + }, + "metrics": { + "enable": true + }, + "server": { + "allowUserDefinedWorkspaceNamespaces": false, + "cheClusterRoles": "", + "cheFlavor": "", + "cheImage": "", + "cheImageTag": "", + "cheWorkspaceClusterRole": "", + "devfileRegistryImage": "", + "gitSelfSignedCert": false, + "nonProxyHosts": "", + "pluginRegistryImage": "", + "proxyPassword": "", + "proxyPort": "", + "proxyURL": "", + "proxyUser": "", + "serverExposureStrategy": "", + "serverMemoryLimit": "", + "serverMemoryRequest": "", + "serverTrustStoreConfigMapName": "", + "singleHostGatewayConfigMapLabels": {}, + "singleHostGatewayConfigSidecarImage": "", + "singleHostGatewayImage": "", + "tlsSupport": true, + "useInternalClusterSVCNames": true, + "workspaceNamespaceDefault": "-che" + }, + "storage": { + "postgresPVCStorageClassName": "", + "preCreateSubPaths": true, + "pvcClaimSize": "1Gi", + "pvcJobsImage": "", + "pvcStrategy": "common", + "workspacePVCStorageClassName": "" + } + } + } + ] + capabilities: Seamless Upgrades + categories: Developer Tools + certified: "false" + containerImage: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + createdAt: "2021-02-10T17:04:30Z" + 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.0 + namespace: placeholder +spec: + apiservicedefinitions: {} + customresourcedefinitions: + owned: + - description: The `CheCluster` custom resource allows defining and managing + a Che server installation + displayName: Eclipse Che Cluster + kind: CheCluster + name: checlusters.org.eclipse.che + specDescriptors: + - 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. + displayName: TLS support + path: server.tlsSupport + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:booleanSwitch + statusDescriptors: + - description: Status of a Che installation. Can be `Available`, `Unavailable`, + or `Available, Rolling Update in Progress`. + displayName: Status + path: cheClusterRunning + x-descriptors: + - urn:alm:descriptor:io.kubernetes.phase + - description: Public URL to the Che server. + displayName: Eclipse Che URL + path: cheURL + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: Current installed Che version. + displayName: 'displayName: Eclipse Che version' + path: cheVersion + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: A URL that points to some URL where to find help related + to the current Operator status. + displayName: Help link + path: helpLink + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: Public URL to the Identity Provider server, Keycloak or RH-SSO,. + displayName: Keycloak Admin Console URL + path: keycloakURL + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: A human readable message indicating details about why the + Pod is in this condition. + displayName: Message + path: message + x-descriptors: + - urn:alm:descriptor:text + - description: A brief CamelCase message indicating details about why the + Pod is in this state. + displayName: Reason + path: reason + x-descriptors: + - urn:alm:descriptor:io.kubernetes.phase:reason + - urn:alm:descriptor:text + version: v1 + description: | + A collaborative Kubernetes-native development solution that delivers Kubernetes workspaces and in-browser IDE for rapid cloud application development. + This operator installs PostgreSQL, Keycloak, Registries and the Eclipse Che server, as well as configures all these services. + ## Prerequisites + - Operator Lifecycle Manager (OLM) needs to be installed. + - Kubernetes Platform. For OpenShift, the installation is directly made from OperatorHub UI in the admin console. + + OLM installation can be checked by running the command: + ``` + $ kubectl get pods --all-namespaces | grep olm + olm catalog-operator-7b8cd7f8bf-2v7zj 1/1 Running 0 10m + olm olm-operator-5c5c798cd5-s6ll5 1/1 Running 0 10m + olm olm-operators-fm5wc 1/1 Running 0 10m + olm operatorhubio-catalog-d78km 1/1 Running 0 10m + olm packageserver-5c5f64947b-trghp 1/1 Running 0 9m56s + olm packageserver-5c5f64947b-zqvxg 1/1 Running 0 9m56s + ``` + + ## How to Install + Install `Eclipse Che Operator` by following instructions in top right button `Install`. + + A new pod che-operator is created in `my-eclipse-che` namespace + + ``` + $ kubectl get pods --all-namespaces | grep my-eclipse-che + my-eclipse-che che-operator-554c564476-fl98z 1/1 Running 0 13s + ``` + + The operator is now providing new Custom Resources Definitions: `checluster.org.eclipse.che` + + Create a new Eclipse Che instance by creating a new CheCluster resource: + + On the bottom of this page, there is a section `Custom Resource Definitions` with `Eclipse Che Cluster` name. + + Click on `View YAML Example` *Link* and copy the content to a new file named `my-eclipse-che.yaml` + **Important!** Make sure you provide **K8s.ingressDomain** which is a global ingress domain of your k8s cluster, for example, `gcp.my-ide.cloud` + Create the new CheCluster by creating the resource in the `my-eclipse-che` namespace : + ``` + $ kubectl create -f my-eclipse-che.yaml -n my-eclipse-che + ``` + ***important:*** The operator is only tracking resources in its own namespace. If CheCluster is not created in this namespace it's ignored. + The operator will now create pods for Eclipse Che. The deployment status can be tracked by looking at the Operator logs by using the command: + ``` + $ kubectl logs -n my-eclipse-che che-operator-554c564476-fl98z + ``` + ***important:*** pod name is different on each installation + + When all Eclipse Che containers are running, the Eclipse Che URL is printed + + + Eclipse Che URL can be tracked by searching for available trace: + ``` + $ kubectl logs -f -n my-eclipse-che che-operator-7b6b4bcb9c-m4m2m | grep "Eclipse Che is now available" + time="2019-08-01T13:31:05Z" level=info msg="Eclipse Che is now available at: http://che-my-eclipse-che.gcp.my-ide.cloud" + ``` + When Eclipse Che is ready, the Eclipse Che URL is displayed in CheCluster resource in `status` section + ``` + $ kubectl describe checluster/eclipse-che -n my-eclipse-che + ``` + + ``` + Status: + Che Cluster Running: Available + Che URL: http://che-my-eclipse-che.gcp.my-ide.cloud + Che Version: 7.0.0 + ... + ``` + + By opening this URL in a web browser, Eclipse Che is ready to use. + ## Defaults + By default, the operator deploys Eclipse Che with: + * Bundled PostgreSQL and Keycloak + * Per-Workspace PVC strategy + * Auto-generated passwords + * TLS mode (secure routes) + ## Installation Options + Eclipse Che operator installation options include: + * Connection to external database and Keycloak + * Configuration of default passwords and object names + * PVC strategy (once shared PVC for all workspaces, PVC per workspace, or PVC per volume) + * Authentication options + ### External Database and Keycloak + To instruct the operator to skip deploying PostgreSQL and Keycloak and connect to an existing DB and Keycloak instead: + * set respective fields to `true` in a custom resource spec + * provide the operator with connection and authentication details: + ``` + externalDb: true + chePostgresHostname: 'yourPostgresHost' + chePostgresPort: '5432' + chePostgresUser: 'myuser' + chePostgresPassword: 'mypass' + chePostgresDb: 'mydb' + externalIdentityProvider: true + identityProviderURL: 'https://my-keycloak.com' + identityProviderRealm: 'myrealm' + identityProviderClientId: 'myClient' + ``` + #### Self-signed Certificates and TLS Secrets + + Eclipse Che uses self-signed certificates by default, as TLS mode is on by default. + + To provide the name of the tls secret that will be used for Eclipse Che and workspaces ingresses: + ``` + tlsSecretName: 'my-ingress-tls-secret' + ``` + displayName: Eclipse Che + icon: + - base64data: iVBORw0KGgoAAAANSUhEUgAAANMAAAD0CAYAAAABrhNXAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAaNklEQVR42u3de3QU9dkH8O/zm91EQK0U77dqVdTW++1V20KigUSQahLjsSSbtp4eeqqVLHILCcoiyQZEIbF61B6PVQJ6XiOkr6TlYiABr603wHotar1bBUWUYDY787x/JIGoSchmZ+c3M/t8/iS7M8+M5+vs7szz/IiZIYRIntJdgBB+IWESwiYSJiFsImESwiYSJiFsImESwiaBvv5ARLprEwB4ddaJTBQF8w/JsKbQmI0v665JAL3dUqK+7jNJmPTiNWOHWYhNB1AOILPrn+MA369MazaNe+Iz3TWmMwmTB3AEyrwwu4SIbwVwWB+v+hxEt6gg7qLs1rjumtORhMnlePUlF5hk1RFw4QDf8rrFmBLMa12tu/Z0I2FyKV53yVGWyTVgLgGQ8IknoImMQBnlNL+t+1jShYTJZXjlhKFW8KsbQJgNYP8ktxYDcI8yh95E41bt1H1sfidhcpH4mtETCHQHgONs3vTHAEXUMy33UQSW7uP0KwmTC/DqS84xyaol4Bcp3tULiqiMxrY8pfuY/UjCpBG3ZB1sxfgmgK4HYDi1WwI9SnGaTuPXv6v7HPiJhEkDfv7coPX5AdeB+RaADtRURRtAC9UB7Qvo4md26z4nfiBhcljH6qwcRbgDwKm6a+nyATNVGrkt9USQrtAkSJgcwquyT2ZlLWLQON219FofsMEghGls6ybdtXiVhCnFuOnnw62gEQHoOvTz3KM7sAVSy5RS0yln3X91V+M1EqYU4ZasgBWjawGuAnCI7noStAOM+coaUkvjVrXrLsYrJEwp0LHmkksUrFoAp+uuJSnMbzLR1EBua5PuUrxAwmSj7tYIBhfprsVOBDQTU5jyWl7RXYubSZhs0KM1YiaA/XTXkyIdAN+tMmgOZbfu0F2MG0mYksAMMtdkh4h4AYDDddfj0FF3tnrsOOROurrB1F2Nm0iYBolXjT7fVFRHwEW6a9FkkyIK09iWDboLcQsJU4KSbY3wGwKaCNZkyt34ju5adJMwDRA/fdEQa2fmZBAqARygux536Wr1+CY+m6546ivd1Wg7CxKmfUtha4TP8EeAmpuurR4Spn7w46PONi2qJdAo3bV4CROeM1iFKXf907prcfS4JUzfx82XjrDM+M0Ot0b4TWerB8yplLvxfd3FOHLAEqYeJ2NPawTmAviB7np8YheA21QG5lN26ze6i0klCVOXjtVZOUpxHZh+orsWn3qfmWYH8lqW6C4kVdI+TLwq+2Q2+HZmjNddSzogoIUsI0yXrduiuxa7pW2YuOnnw62MwEwwTwEoQ3c96aWr1SMen+qnKbRpF6a901GthQAdqrueNPcFGAvUzkMW09UNMd3FJCutwtSxenS2ItQCdIbuWsS3vMFENwbGtvxddyHJSIsw8ZpRx1hkVIM5pLsW0TcCmsk0ymjculd11zIYvg5TmrRG+E1nq4cK3kxjmr/UXUwifBkmZpD5+OiriHEbQMfqrkcMynYQ5nmp1cN3YepsjUAtgS7WXYuwA7+oGGHK2/CE7kr2WalfwsRrxxxpcWwOgN8BJEuJ+gwBTWThBrqs9T+6a+mL58PEjxRlWAd99gcw5kFaI3yO20D0JxVEFWW3fq27mu9V5+UwdbVG1AE4XnctwlEfMlOF26bQejJMvDbrLJNRS8Bo3bUIfRj8T0NRGY1pfVZ3LYDHwsSrc39o0TdzpDVC7OWeKbSeCFOP1ogIgIO0FCHcrrPVwxxSo2sKrevD1LVqRC2Anzq+c+FFW5m4IjB2Q4PTO3ZtmLj50pFsmrczcLnTJ0V4HzHWESFMua3/cmqfrgsTt2QdZHWgHIwwgEynToTwpTjA96sMqqTs1m2p3plrwiStESJ1uqbQBnEXZbfGU7YXN4SpY1VWllKoBXBmqg5UCACvW4wpwbzW1anYuNYw8d+zjrYCFJXpqMJJBDSRESijnOa37dyuljDxyglDrYyvZkBaI4Q2XVNozaE30bhVO23ZopNhktYI4UIfAxSxYwqtY2HitVnndT0C9DOHT5YQA/GCIiqjsS1PDXYDKQ8Tr/7FERapCKQ1Qrhf5xTaOE2n8evfTfjNqQrT3tYIvgWgA3WfJSEGjtsAWpjoFNqUhKmzNQK1AP1Y92kRIgkfMFPlQFs9bA0TPz7qVLbUIgbydJ8FIezChFbDojDltWzu93V2hElaI4T/dbV6cHAa5a79tNdXJBMmbskKWDG6FszVIBys+3CFcMAOMOYra0jtd1s9Bh2mjrXZlyrmWgCn6T46IRzH/CYTTQ3ktjbt/acEw8RrR53EbFQzuEj38QihGwHNxBSmvJZXEgqT9Xj2bWC+QVaNEKInjoFQpca0zvvuXwJ9vwdT5XlUIXpiC6T+Vyn1597+Gkh0c0KkIwb+YUCV0diWfwBAbx/oJExC9G/AN3MlTEL0qudE2ZYBTZSVMAnxHQQ0Udz4Y6IPwEqYhNiDX1SdU2OfHMy7pU1CCMY2EMLqy0MvGGyQALkyifTWuXKhNfQmyku+nV3CJNISAc2krMk0ZuNrdm1TwiTSzRtMdKORgtXeJUwiXXwBwtzO4ZQtKRlOKWESftc5Ntm0ZtO4Jz5L5Y4kTMK3CLyerMAUumzdFif2J2HyBu58GkwmPg3QW8w01chr/T8ndyr/cVyPX1QKoxTUBcwY9D2QNLELwFyVgdMCeS2OBgmQK5N7MbZBoUrtOPROurrBBABmjDIfH30VgRaC8SPdJboIg2ip6uAZNL71E11F9N0cuDbbNStbp5nOG4n9zMXuMb99BoAhugvWiQnPGSaX0WUbnnF0vwl12kqYHEdAE5kqTOPWvzWQ16f5yiIfMlPFQOfc2U3C5F5vMHhKIHfDqsG8mddmj7Y6B96cpftAHLAbhDvU7o5quuKpr3QVIWFynx43EpNb5W7vaox8K4DDdB9YKhDQRLAmU+7Gd3TXImFyj5TdSOSWrP2tGKYBKIdf1glmvKRIhSl3/UbdpewpScKkH4HXk+Iwjdn4cir345MxbdtBmKd2HLLnF023kDDptZWJKwJjNzQ4udOO1Vk5ilAL4Ke6T0AiZQN8t1LBm2lM85e6i+mNhEmPXQBuS3TJEjvx8+cGre0H/tYLo617DnrUXUt/JEzOcsWNxG8V5OZFF3oZQexmEiaHMPifhoWw0zcSB1zf46NOZVMtZkKu7lrQPRx/5yGL6eqGmO5iBkrClHpabyQmqnOhOqoDcLzze9/3si1u1ltu5EFXe+wGYYHKwCmBvJYlXggSAARyN6xUXx5yCghhAI7dAGVCq2J1jjG2pdSLQeqLXJmSREATWbiBLmv9j+5aksFrxxxpcWwOUru49/vMNNsrV+7+yMc8OzFeUuAyytvwhO5SbD2stVnnmcx1BLrYxq0OahFmN5Mw2cO1NxLtwgwyHx99FTFuA+jYZDZFoEdJGdNoTPN7uo/LThKm5Lj+RqLdeM3YYRZi0wHMBLBfQu8FnjeIwjS25Sndx5GScyNhGhwCmsk0ymjculd116IDrxl1jEVGNZhDA3j5xwBF1DMt91EElu7aU3ZOJEwJe4OJbgykYMaaF3WsHp3d+WgSnfH9v3IMwD39NTX6iYRp4L4AY4HXbiQ6YW+rh7UQoEOBrl80jUAZ5TS/rbs+x86DhGmf4gD/WRmBmyln3XbdxbhZ56NJ7dMtqMeDuevX667H8eOXMPWNgBayjLBTM9aEt/WWG5lO1H0jMa9lie5ChLelc5h6tEa0+OJGotArHcPUeSMR5lTK3fi+7mKEf6RVmJjwnMEqTLnrn9Zdi/CfNHlqnD8C6PfG060XSpBEqvj9ytQ1Yy2udcaaSA++DdOeGWtj9c9YE/4RiUTUlreCpQAe+O7f/BimTQqqzE0z1oQ/FBTXnL9lK2oBvhg+D5PvWyOEHr+8ZsGRgUB8DsC/Qz+/M/ghTGnXGiGcUVS0aEg8s30ywawE6IB9vd7TYdo7Y63V1TPWhPcUhqommPxNHSUwbMabYeqasWZ4ZMaa8I4rJ1afpRTqmGlUou/1Wpg6Z6xZQ2tp3Kp23cUI/ygqivzQysiYw4RBD+j0SJh6zFjL889oKKHfpEn3Bre3bbvOBEUAHJTMtlwfJia0GpYKU27LZt21CH8pLK3J2bZrey2IbFnUwM1hep+ZZgdypTVC2Cu/NDpSMW5niy+3c/FSF4ap54w1aY0Q9rnyN5GDjHiwnC2EOQULwbkpTF0z1gK+m7Em9IpEImrz1mAJxelWTuESpa4Ik99nrAl98kPR0Vu2oo6AM1O9L81h4o8ANdfw+Yw14byC4gVHA2YUjBLAzm9GfdMSprhF2PThwZvf3Tli/NU33vOhjhqEP02YFBkabAvOAMwZAIY4uW/Hw/TCB4fgL8+fgv9+NeRMAM8Vhmoip5/Qfl8kEpErk0gCU35o/lXUxgsB/EhHBY6N+vrgy/3xwPMnY/NHI3r78/NghFcsq5DvTCJhV06sOVcprgPwM6f2ubx+1vc+Oqb8yvR1ewANL5+I1a8fA4v7/Oh6HghPFJZEH1VKTWtYUi6/5ol9KiipPgJAZF+tEU5J2ZXJtAgtbx2FhzediJ3fZCTy1jaAFx4Y6Jj/wAMRuc8kvqeoKJJhZQb/YIFuIeBAHTX0dmVKSZpf/mQEZvztItz77E8SDRIADAVozs54xr/zS6pLAXbklxjhDYWhqglmZsZrDKrVFaS+2Hpl+njnUDy86UQ88+7hthXIQCugwo1Ly+XZvDRW+KvoKWxgMYA83bUAKfzO9E2HgZWvHYfGl49Hh2XvxY6ALMB6saA4uoxVcFpj/XR5ajyN9GiNuA7a74v2L6krEwN44p0jUf/CSOzYnfDHucHYwaD53wwfVrvqT5Oln8nHsrIigRHHZF7LbFUDdLDuer7L1u9M/972A1Su+h/86cnTnAoSABxE4PlDvvh6S35x9HKndiqcdVVx9aUjjs54kZnvdWOQ+pLwZXN72354+KWTsPGdw8H6fhsYSYSVBcXRZgqo8PIHy2UGhA8UldScaIGjFlCku5bBGHCY2k2Fx145Hn995TjE4oPq6rUfIYdN66XC4ujdZjA2568PRHboLkkkLhRaOGwXx6ab4HKkoDXCKfv8zsRMePa9w1D/wkh8tiuhBbcdPhJ8Tsy3qPaT7mxouFrm5nkCU35JNESgBQDs+wnYAb19Z+o3TG9tPxAPPn8yXvt0uO7aE8CvEWHK8vrKNborEX27cmLVBUoZdQBfqLuWwUjop/G7nj4NG946AuzM0+s2olOZsbowFG1SMCc31N8ks8ZdpKi06ijTVDUglPjthnyfYWp960jdtSWFGZebMMYWFkfv6cg0Zj92/0xZBUOj7umopsWzQdhfdz2poP3hwBTLYMLkQMx8vTBUMykSifj9eF2pMFQ1wcz45lUCzwf8GSTA/2HqdiQz37tla8azV5VUXay7mHRRUFJ9Tn5JdCOzegyE43TXk2qufjwjBc63oJ6UVo/Uyi+NjlAmbmbgehrkdFQvSrcwAQAxUGRa1riCkurbpNXDPt3TUdnCXCb8QHc9TkuXj3m9GQbQnJ1mxpudrR4iGYWlNTmftW3fxKBaIP2CBKTnlenbGMcQ6MGCUPQ3RBxevqRyi+6SvKSoZN7JJoxFbPE4X/3OPQgSpm6MbGZ6SVo9Bmb8xJrh+ylrpgmaAsCxJ53dTML0bQqEkOKOy/NLahYE2tsXNzREYrqLcpM901HBCxl0qO563CSdvzP1iYHhBJ5vZma8XFBSPV53PW5RMLE6e8vWjJcI9CAACdJ3yJWpfyMBaioojjYbQFnDsopXdRekwxXXVB1jGKoahJDuWtxMwjQQhBwT2FRYHL1bxdTNDQ3labEQdXdrBEAzAbi4ZcAd5GPewAWZMNnMtN4qLKkuKyp6xMc3I5nyQzVFu7jjVYDmQII0IBKmxI1gUK2ZufW5gonzE15E2O0KimvOLyiZ/yQxPwLgWN31eIl8zBu8s6GsDX5p9fjlNQuODATic9wyHdWLJExJ6mr1uLSwpPqOjoxAtddaPbqnozLMeQAdoLseL5P/A9ljCINmBmLma16aQts1HfX1rkeAJEhJkiuTvY4i0IMFJTV/ZBUta1xS8YzugnqTH1pwKlnmYmbk6q7FTyRMqXE+WXiqoDi61AgGZjQ8MOMT3QUBPaajsnk9KH1aI5wiYUodAiFkxuMFuls9Jk26N7h99+e/NdmqBuCZoY5eI9+ZUm9Y16oeL+eHahwfrlhYWpOzbdf2l7w2HdWL5MrknBOJ+ZGCkuh6Ujwl1a0ehRPnnQTDWMQWX+65AVMeJWFy3iVs0QsFJdX3G0Ga3fCXis/s3PiVv4kcZMSD5QwKg707HdWLJEx6BACaZHWgyK5Wjz2tEXG6lYHDdB9gOpLvTBp1t3rEMzO3FIai4wa7nfxQdPTLWzNe6GqNkCBpIlcmFyDwycz4W0FxtJmVMbmxfuZrA3lfQfGCowEzCkYJQ74Z6SZhchNCDrG5ubA4encbYjetWhbZ2dvLJkyKDA22BWcA5gwAQ3SXLTrJxzz3CTJh8hAK9tLq0dkaEWzL6G6NkCC5SJ+rYBSGahJeIFqkxIsKCMctalOK6wD8THdBIoULRIuUOscCNijFDPkk4WoSJm8gyA8Mrif/pxPCJhImIWwiYRLCJhImIWwiYRLCJhImIWwiYRLCJhImIWwiYRLCJhImIWwiYRLCJhImIWzSd5iIbgcgS1AK8W2xrmx8T59hWlE/axpZ5mkENOiuXghXYDSToc5ZUT9rWm9/7rM5kGjvE/9XFVdfahHVAjhN9/EIocGbAN+4Ymnl37r/obfcDChMAJCVFQmMOCbzWmarWiaDijSxg0HzexvFllSYuu0Z/k64DtJcKPzJAmMZq+C0xvrpn/b2AlvC1K3wV9FT2MBiAHm6j1wIuzDQCqhw49Lyzf2+zs4wdSsMVU1gVrUAfqz7RAgxaIT3mXl249LKJQN5eW+5Sfo+0/L62SuN9tipBA4zsDPZ7QnhsDaA5x5oxEYONEh9SfrK1FNBSfURACIAySLDwu2YgEeVUtMalpS/l/CbU/ExrzdXTqw5V2a8CRd7HozwimUVTw12A46FqWt3lB+afxUxLwTwIyfPlBB9+JiIIqef0H5fJBKxktmQw2HqtHcuNslcbKFLjBj39De/PVFawtRtz4oNhBLIQEXhECI0waSy5Q/NetvO7WoNU7f8UHQ0MeoAnJmSHQgBAITXmWlK49JZq1Ox+ZT8NJ6oxvqKDWecGDuHwb8G8F+n9y98jvA5gcOfvx87PVVB6nPXTl+ZevrW+quQ9VdFUuIA399hZlaufHjatlTvzBUf83qTXxodqRi3M+Nyx3YqfIOBdSAON9ZX/suxfbo1TN0KS2ty2ORaEH7q+M6FB9G/mVDZWD/L8Z47V3xn6s/yJbOaDx424mwi+j3AKb9UC8/6GuC5u4cPO11HkPriqitTTz1aPa4HYCS9QeEHFhjL4hZPf+zhSq0/Xrn+Y15v8kMLTiXLXAxCru5ahEaEf8KyylYsm/2s7lIAj4apW1erRx2A43XXIhz1IYMrGpdW1APkmnWWXf+dqT9drR6nEDgM4Cvd9YiUayPwAqM9dkpna4R7gtQXz1yZevrlNQuODATic6TVw5+I0GQadMNfH5j1H9219MXTH/N6UxiqOo/ZqAP4Yt21CFu8qIDwo0srntBdyL74Lkxdh9Xd6nEbgGN1VyMGg7cRUKXaT7qzoeFqU3c1A6rYn2HqFAotHLaLY9MBmglgP931iAHpIMbddrZGOMXXYep2xTVVxxiGqgYhpLsW0Q9GMytjcmP9zNd0lzKo8tMhTN0KJlZnQ1EtgDN01yL2YtAbivjG5fUVf9ddS1LH4eWfxhO14qHKljNOjJ3d1erxadIbFEkh4AsGlQfa28/wepD6PEa/Xpl66tHqMQVAhu560owFxjIjA1Mb/lLxme5i7JJWH/N6k18aHUkWLQJ4vO5a0gKhhYjDy5dUbtFdit3SPkzdCktrciyL6wj4ie5afOo9Bt+U7FBHN0ur70z9Wb5kVvMhQ0ec1fVo0pe66/GRXQDPPTAQO9nPQepLWl6ZesovjY5QJm6WVo+kMBhLjWBgRsMDMz7RXYwjBywf8/pWWFpzNltWLUCjdNfiMc+xQlnjkopndBfiJAnTAEirx4B9xOBZbmuNcIqEaYCKihYNiWe2TyZwJYADdNfjMrsJfEdHRqD6sftnpm0rjIQpQUWlVUeZpqqRKbSdiNCkYE5uqL/pHd216CZhGqSC4przAa4D4SLdtWjyEiwVXvFQ+UbdhbiFhCkpTPkl0RCBFgA4XHc1DtlO4Hleao1wioTJBmnS6tFBjLtVTN3c0FAu9+F6IWGy0ZW/nneCYRo1DBTprsVWjGYKqPDyB8tf0V2Km0mYUiA/VHMJMS+G91s93mTG1MZlFU26C/ECeZwoBRrrZ63v0erhxaeidzCofPfw/c+QICVHrkw2Gj+xZvh+yprpkVYPC4xlrILTGuunS79XguRjnkOKSuadbMJYBGCc7lp6w0AroMKNS8s3667FqyRMDissrclhy7oDoFN119LlAwZXpusjQHaS70wOW75kVvPBQw8+0wWtHm1drREneWU6qhfJlckhmlo9mIBH2bKmr3ho9ru6z4GfyMc8FygoqT6HQbUE/CKV+yHCC2yhbMWyiqd0H7MfSZhcpDBUNYEtdQcIx9m86Y+JKHL6Ce33RSIRS/dx+pWEyWUmTIoMDbRl3kDg2QD2T3JzMWLc48XpqF4kYXKpZFs9iNAEk8qWPzTrbd3Hki4kTC535cSqC5Qy6gC+cEBvILzOTFMal85arbv2dCNh8oQBtHoQPifmW7Z/0HFXa2skrrvidCRh8pAerR7lADK7/jkO8P0dZmblyoenyWr0GkmYPKhw4ryTYBiL2EKQlTHFq6tG+E1CYRJCJEYeJxLCJhImIWwiYRLCJhImIWwiYRLCJv8P9sXhC7xE4kIAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTktMDQtMTNUMDg6MTY6MDgrMDI6MDCcYZVaAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE5LTA0LTEzVDA4OjE2OjA4KzAyOjAw7Twt5gAAAABJRU5ErkJggg== + mediatype: image/png + install: + spec: + clusterPermissions: + - rules: + - apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterrolebindings + verbs: + - list + - create + - watch + - update + - get + - delete + - apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterroles + verbs: + - list + - create + - watch + - update + - get + - delete + - apiGroups: + - rbac.authorization.k8s.io + resources: + - roles + verbs: + - get + - create + - delete + - apiGroups: + - rbac.authorization.k8s.io + resources: + - rolebindings + verbs: + - get + - create + - update + - delete + - apiGroups: + - org.eclipse.che + resources: + - checlusters + - checlusters/finalizers + verbs: + - '*' + - apiGroups: + - "" + resources: + - namespaces + verbs: + - get + - create + - update + - apiGroups: + - "" + resources: + - serviceaccounts + verbs: + - get + - create + - watch + - apiGroups: + - "" + resources: + - pods/exec + verbs: + - create + - apiGroups: + - apps + resources: + - secrets + verbs: + - list + - apiGroups: + - "" + resources: + - secrets + verbs: + - list + - create + - delete + - apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - create + - get + - list + - watch + - apiGroups: + - "" + resources: + - pods + verbs: + - get + - list + - create + - watch + - delete + - apiGroups: + - apps + resources: + - deployments + verbs: + - get + - list + - create + - patch + - watch + - delete + - apiGroups: + - "" + resources: + - services + verbs: + - list + - create + - delete + - apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - create + - delete + - list + - apiGroups: + - "" + resources: + - events + verbs: + - watch + - apiGroups: + - apps + resources: + - replicasets + verbs: + - list + - get + - patch + - delete + - apiGroups: + - extensions + resources: + - ingresses + verbs: + - list + - create + - watch + - get + - delete + serviceAccountName: che-operator + - rules: + - apiGroups: + - "" + resources: + - namespaces + verbs: + - update + - list + - create + - get + serviceAccountName: che-namespace-editor + deployments: + - name: che-operator + spec: + replicas: 1 + selector: + matchLabels: + app: che-operator + strategy: + type: RollingUpdate + template: + metadata: + labels: + app: che-operator + app.kubernetes.io/component: che-operator + app.kubernetes.io/instance: che + app.kubernetes.io/managed-by: olm + app.kubernetes.io/name: che + spec: + containers: + - command: + - /usr/local/bin/che-operator + env: + - name: WATCH_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.annotations['olm.targetNamespaces'] + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: OPERATOR_NAME + value: che-operator + - name: CHE_VERSION + value: 7.26.0 + - name: RELATED_IMAGE_che_server + value: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + - name: RELATED_IMAGE_plugin_registry + value: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + - name: RELATED_IMAGE_devfile_registry + value: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + - name: RELATED_IMAGE_che_tls_secrets_creation_job + value: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5 + - 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:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + - 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 + value: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58 + - name: RELATED_IMAGE_che_server_secure_exposer_jwt_proxy_image + value: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033 + - name: RELATED_IMAGE_single_host_gateway + value: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + - name: RELATED_IMAGE_single_host_gateway_config_sidecar + value: quay.io/che-incubator/configbump@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + - name: CHE_FLAVOR + value: che + - name: CONSOLE_LINK_NAME + value: che + - name: CONSOLE_LINK_DISPLAY_NAME + value: Eclipse Che + - name: CONSOLE_LINK_SECTION + value: Red Hat Applications + - name: CONSOLE_LINK_IMAGE + value: /dashboard/assets/branding/loader.svg + - name: CHE_IDENTITY_SECRET + value: che-identity-secret + - name: CHE_IDENTITY_POSTGRES_SECRET + value: che-identity-postgres-secret + - name: CHE_POSTGRES_SECRET + value: che-postgres-secret + - name: CHE_SERVER_TRUST_STORE_CONFIGMAP_NAME + value: ca-certs + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUN3DMY3GMMBQMQZWMMTEMFTDANBWG42TMMJYMM2DAODFGA4GMMBRHFTDENLCHEYWKYZQHBSDENZZGA4TIZTEMRRDAMLGGU2TSNJQGJRA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRSGVTDSYRYMVSWMN3FGJQTOYLFMEZWKOBUGJSWKMJTGYZDMOJTGVRDSODGHE3DGMRXMY2WGNJWMI3GEYTGGQ4GENBZG42TIYZUGVSA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUYLFGUYTENDFGMYTSODBMM3DSNZXMNQTSNZTMFQWMNBYHA2WCMJUMU4DAMDEGY2DOYZZGZQTEM3EGE2WCMTCGZRGCYTCMU4GMZLGGJQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNRUGMYTCMRRGBSTOMJQMNQTCNRRGQ4DGOLGHA4TOMRYGVTGGMLEGM4WEMTDMEYTOMRRGVSDKNTDGE3DKZBQHEYWCYLGMQYTSYJRGRRA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUM3BGVTDCMRYMIZDCNZWGI2WGMRRGFTDMOLGMQZDENZXGMYDAYLFGYYTCZTDMY3WIYJSHA3WGMRXHA3GKNJSGJTDCM3BHAYWKZBXGAYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUOBWGE2WCMRZGQZTKYRQGI2TMYTGMZQWMOBVMFRDEY3GHEZTEN3CGA2TSZRRGRSWCYJWGYYTIMZUGZSGMZBVGFSTGYJWMRSDSZRQGQYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNJVG4YDGYLFGVTGCZLCMVSGKZJVGZTGIY3FGM4DOOLGMEZDEOBRMNRTENRQGQ4DQZBYME2DQODGMY3TOZLEGNSDIMDGG43TQZDEMY3Q____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBXGJTGENRZMMZDINBTMMYDSNLEHE2GKOJUMJQWKMZUGYYTOODBGQZDIOJVGIYTQOBSGZTDMYLBMVQTQYTGGY4DOYRSMIYTKYJQG5QQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBZGVRTENBQGU2TAMZTMUZDCOLEGVQTSZRWMZSTSOBTGVRDOOLDGVSDGNBRGZTDAZDGMJRDEMRYMQZDSNJXGEZWKOBRMQZDOYZWGYYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJWGQYGMOJVGAYWMOLBMUYWKM3DHFRDENZWMU3DEMBQME2WGM3BMJRTCMJVMEZTMYRSMMYGMZDEGZRTANRVGNSTQZJRHFRWINJYMY3Q____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZDCHA3GGOJSGQYTQYRZMY2DAYRSGY2TIYRYMZRTINZTGA3TGNJWHFSTAZDDHBQTAMLEG5QWIYZTGFRTSOJSGVSTKNBWHFSDEYRRGE2A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_IBZWQYJSGU3DUZBTGYZGCMTCMRSWINZZGEZTINJQGZQTEM3GHFQTONZUHE4GMNLBG4ZDSN3EMY3GGYZZMEZTGOJRGQ2DOZDBHBSTCYTBG42GKYRWME2Q____ + value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBYGAZDKZLBMRRTENJZGQYTIMDFG43WINLEMJSWGNLEGY2WCZRYMVRTQNJRGJSTKMRWGY4TGNRXGQ2TSMRUMQ2TKZDEGQ3DONBYGJQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZJTG42GKYZTGY3TINBXMFTGKYJZMIYTEZRVME4GMNRWHEYGCNTGHE4TGNJSGY2DAODBGM3TGMLGGUZDEYJVGNSTKZBQMJTGGMRYG5TA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTDMI2GMNZQMVSGEY3EMFRDGYRSG44WIYLFGUZWENTBG42TGZBWGNTGKZJQGNRGGYLFGNSDEYJTHA2WKMRUMYZDKZJWHE2WGMBTMRTA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDGMRRDANBQGI3GGYTFMRSGEZTFGUZTCOBUMFTGGZBWMZRTKY3CGYYTGMTBGIZGEZJVHAYTAYRRGNSDGODBGEZDKYLGMQYDQMZSGIYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBZGFRTMMTBGNQWGNZXGVSDKNBSGZSDOMTBGU4WCYZRHBRGIZBVGBTDKZRVMQ3DCZBQG5TGEZTCGM2GKMDDMQ3WMZLEGNSDIZDBGIYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTCHFRTOMZZMY2DQNZXGM4GCNLCMZRDEMDFGA2TEYJSGFRDIZLEMZTDIMRYHFRTOMZYGQ4TMNZQHBQWEZRYMFSGGNDEGU4DEMDEG44Q____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTEGBRTINBQME3WIYZWGQ4DQMJWMZRWINBYHA2WEOLDMM4DKZRQMVRDAZRTHEYTMNJZMJRDSZTDHBQTSMJSGMYDONLCMVQTONJRGY2Q____ + 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_IBZWQYJSGU3DUMJWGY2DEZLDGBQTIOBYGQ4DIYRXGBSWCZLBGJRDINLGGM4TSZRUHBRTAMRSMZSWCNLBMVSTCZRRGM2WCYZXMNRTANRYMQ2TGNTDMM3Q____ + value: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUZBXGUZTMMRTGY2TQZBWMNSWKNJZGQZTKNZXMIYTMZTGG4YTAMBUMM3WENBVHBSGEYLFGM3TKZLCMNRTAZTFMZSWEOLFMRQWKZLEGQ2A____ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + - 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____ + value: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + - name: RELATED_IMAGE_che_editor_intellij_community_plugin_registry_image_IBZWQYJSGU3DUMRZGAZDKZDCHA2TSMRWHBTDKZDDMYZDCYTBGZSWENDFGI4DINZUGRRDKM3DHEZGINTEGIZTKMJUMU2TMNLBGAZDCMJWGA3GMNRYGYZQ____ + value: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + - name: RELATED_IMAGE_eclipse_broadway_plugin_registry_image_IBZWQYJSGU3DUNJXMM4DEY3EHAYDMYJVGZTDMOLBME4DMNRTMY3DQNBQGVSDANZXHBRDMMRYMEZDSYJWGRTGEMJWHA4DCYRRGFRWKOLGGQ4DIZDEME3Q____ + value: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + - name: RELATED_IMAGE_code_server_plugin_registry_image_IBZWQYJSGU3DUZLGGA3TEOBRGAYDIOJQHFRGEMTDGIZDQNBSGJSGMMTFHE4WCNLCME2WKNBVGBTGGZJXGU2DMYRYMZQTCOBWHA2TEZRSGNRGMNRXGUYQ____ + value: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + - name: RELATED_IMAGE_che_buildah_base_plugin_registry_image_IBZWQYJSGU3DUNBRG4ZDAM3EHA3DEOLFMRSDSMTGGE4DOYLGMQZWKYTCGNSDQZDDGI4DGMZYMQZTIOBQHFSWENZVMZTGGMTFGA4GCNBQGBTDQZBVGZRA____ + value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + - 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_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_IBZWQYJSGU3DUMZWMJSGGZJUGJRWEZTFMVSWEODBGE3TEZJRMMYTOZJRGU2TCZJWG42DAZJRG42TMNJWGBSDQNTDGRRDSNRTGY3DAYJSGRQWGMTCGJQQ____ + value: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + - 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_G4XDENROGA______ + value: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 + - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 + - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 + - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 + - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 + - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c + - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 + - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 + - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a + - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa + - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 + - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 + - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + - name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___ + value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + imagePullPolicy: IfNotPresent + livenessProbe: + failureThreshold: 10 + httpGet: + path: /healthz + port: 6789 + initialDelaySeconds: 15 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + name: che-operator + ports: + - containerPort: 60000 + name: metrics + readinessProbe: + exec: + command: + - stat + - /tmp/operator-sdk-ready + failureThreshold: 10 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 500m + memory: 256Mi + requests: + cpu: 100m + memory: 64Mi + securityContext: + capabilities: + drop: + - ALL + restartPolicy: Always + serviceAccountName: che-operator + terminationGracePeriodSeconds: 20 + permissions: + - rules: + - apiGroups: + - extensions + resources: + - ingresses + verbs: + - '*' + - apiGroups: + - batch + resources: + - jobs + verbs: + - '*' + - apiGroups: + - rbac.authorization.k8s.io + resources: + - roles + - rolebindings + verbs: + - '*' + - apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterroles + - clusterrolebindings + verbs: + - '*' + - apiGroups: + - "" + resources: + - pods + - services + - serviceaccounts + - endpoints + - persistentvolumeclaims + - events + - configmaps + - secrets + - pods/exec + - pods/log + verbs: + - '*' + - apiGroups: + - "" + resources: + - namespaces + verbs: + - get + - apiGroups: + - apps + resources: + - deployments + verbs: + - '*' + - apiGroups: + - monitoring.coreos.com + resources: + - servicemonitors + verbs: + - get + - create + - apiGroups: + - org.eclipse.che + resources: + - checlusters + - checlusters/status + - checlusters/finalizers + verbs: + - '*' + - apiGroups: + - metrics.k8s.io + resources: + - pods + - nodes + verbs: + - get + - list + - watch + - apiGroups: + - che.eclipse.org + resources: + - kubernetesimagepullers + verbs: + - '*' + - apiGroups: + - operators.coreos.com + resources: + - subscriptions + - clusterserviceversions + - operatorgroups + verbs: + - '*' + - apiGroups: + - packages.operators.coreos.com + resources: + - packagemanifests + verbs: + - get + - list + serviceAccountName: che-operator + strategy: deployment + installModes: + - supported: true + type: OwnNamespace + - supported: true + type: SingleNamespace + - supported: true + type: MultiNamespace + - supported: false + type: AllNamespaces + keywords: + - eclipse che + - workspaces + - devtools + - developer + - ide + - java + links: + - name: Product Page + url: http://www.eclipse.org/che + - name: Documentation + url: https://www.eclipse.org/che/docs + - name: Operator GitHub Repo + url: https://github.com/eclipse/che-operator + maintainers: + - email: dfestal@redhat.com + name: David Festal + maturity: stable + provider: + name: Eclipse Foundation + replaces: eclipse-che-preview-kubernetes.v7.25.2 + version: 7.26.0 + relatedImages: + - name: che-operator-7.26.0 + image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + # tag: quay.io/eclipse/che-operator:7.26.0 + - name: traefik-v2.2.8 + image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + # tag: docker.io/traefik:v2.2.8 + - name: configbump-0.1.4 + image: quay.io/che-incubator/configbump@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + # tag: quay.io/che-incubator/configbump:0.1.4 + - 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.0 + image: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + # tag: quay.io/eclipse/che-devfile-registry:7.26.0 + - 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.0 + image: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + # tag: quay.io/eclipse/che-keycloak:7.26.0 + - 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.0 + image: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + # tag: quay.io/eclipse/che-plugin-registry:7.26.0 + - name: che-server-7.26.0 + image: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + # tag: quay.io/eclipse/che-server:7.26.0 + - 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 + - name: ubi8-minimal-8.3-230 + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal:8.3-230 + - 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-plugin-sidecar-@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: che-plugin-sidecar-@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + image: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + - 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-plugin-sidecar-@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + image: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + - name: che-plugin-sidecar-@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + image: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: che-plugin-sidecar-@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + image: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + - name: che-plugin-sidecar-@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + - name: che-plugin-sidecar-@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + image: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + - name: che-plugin-sidecar-@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + image: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + - name: che-plugin-sidecar-@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + image: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + image: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + - name: che-plugin-sidecar-@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + image: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + - name: che-plugin-sidecar-@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + image: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + - 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-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: mta-vscode-extension-@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + # tag: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + - 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-plugin-sidecar-@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + - name: che-plugin-sidecar-@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + image: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + - name: che-plugin-sidecar-@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: che-plugin-sidecar-@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + image: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + image: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + - name: che-plugin-sidecar-@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + image: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + image: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + - 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:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + image: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + # tag: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + - name: che-theia-endpoint-runtime-binary-@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + - 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 + - name: dirigible-openshift-@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + image: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + # tag: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + - name: che-editor-intellij-community-@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + # tag: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + - name: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + image: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + # tag: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + image: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + # tag: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + - name: che-buildah-base-@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + image: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + # tag: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + - 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-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:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + image: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + # tag: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + - 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--centos--mongodb-36-centos7-latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + image: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + # tag: quay.io/eclipse/che--centos--mongodb-36-centos7:latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + - 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.0 + image: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 + # tag: quay.io/eclipse/che-cpp-rhel7:7.26.0 + - name: che-dotnet-2.2-7.26.0 + image: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 + # tag: quay.io/eclipse/che-dotnet-2.2:7.26.0 + - name: che-dotnet-3.1-7.26.0 + image: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 + # tag: quay.io/eclipse/che-dotnet-3.1:7.26.0 + - name: che-golang-1.14-7.26.0 + image: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 + # tag: quay.io/eclipse/che-golang-1.14:7.26.0 + - name: che-java11-gradle-7.26.0 + image: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 + # tag: quay.io/eclipse/che-java11-gradle:7.26.0 + - name: che-java11-maven-7.26.0 + image: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c + # tag: quay.io/eclipse/che-java11-maven:7.26.0 + - name: che-java8-maven-7.26.0 + image: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + # tag: quay.io/eclipse/che-java8-maven:7.26.0 + - name: che-nodejs10-community-7.26.0 + image: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 + # tag: quay.io/eclipse/che-nodejs10-community:7.26.0 + - name: che-nodejs10-ubi-7.26.0 + image: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 + # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.0 + - name: che-nodejs12-community-7.26.0 + image: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a + # tag: quay.io/eclipse/che-nodejs12-community:7.26.0 + - name: che-nodejs8-centos-7.26.0 + image: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa + # tag: quay.io/eclipse/che-nodejs8-centos:7.26.0 + - name: che-php-7-7.26.0 + image: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + # tag: quay.io/eclipse/che-php-7:7.26.0 + - name: che-python-3.8-7.26.0 + image: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 + # tag: quay.io/eclipse/che-python-3.8:7.26.0 + - name: che-quarkus-7.26.0 + image: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 + # tag: quay.io/eclipse/che-quarkus:7.26.0 + - name: che-rust-1.39-7.26.0 + image: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + # tag: quay.io/eclipse/che-rust-1.39:7.26.0 + - name: ubi8-minimal-8.3 + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal:8.3 + - name: ubi-minimal- + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8/ubi-minimal diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.v7.26.0.clusterserviceversion.yaml.diff b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.v7.26.0.clusterserviceversion.yaml.diff new file mode 100644 index 000000000..35ca6449f --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.v7.26.0.clusterserviceversion.yaml.diff @@ -0,0 +1,965 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.25.2/eclipse-che-preview-kubernetes.v7.25.2.clusterserviceversion.yaml 2021-02-10 16:08:25.517203944 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.26.0/eclipse-che-preview-kubernetes.v7.26.0.clusterserviceversion.yaml 2021-02-10 17:05:30.099396821 +0000 +@@ -67,7 +67,7 @@ + "singleHostGatewayImage": "", + "tlsSupport": true, + "useInternalClusterSVCNames": true, +- "workspaceNamespaceDefault": "" ++ "workspaceNamespaceDefault": "-che" + }, + "storage": { + "postgresPVCStorageClassName": "", +@@ -83,14 +83,14 @@ + capabilities: Seamless Upgrades + categories: Developer Tools + certified: "false" +- containerImage: quay.io/eclipse/che-operator@sha256:eaaf23aef2d721be21f03ee2863e868de51f5c5d9899ca09e34909dcdf0e8bdd +- createdAt: "2021-02-05T12:53:51Z" ++ containerImage: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 ++ createdAt: "2021-02-10T17:04:30Z" + description: A Kube-native development solution that delivers portable and collaborative + developer workspaces. + operatorframework.io/suggested-namespace: eclipse-che + repository: https://github.com/eclipse/che-operator + support: Eclipse Foundation +- name: eclipse-che-preview-kubernetes.v7.25.2 ++ name: eclipse-che-preview-kubernetes.v7.26.0 + namespace: placeholder + spec: + apiservicedefinitions: {} +@@ -102,50 +102,49 @@ + kind: CheCluster + name: checlusters.org.eclipse.che + specDescriptors: +- - description: Deprecated. Instructs the operator to deploy Che in TLS mode. +- This is enabled by default. Disabling TLS may cause malfunction of some +- Che components. +- displayName: Tls support ++ - 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. ++ displayName: TLS support + path: server.tlsSupport + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:booleanSwitch + statusDescriptors: + - description: Status of a Che installation. Can be `Available`, `Unavailable`, +- or `Available, Rolling Update in Progress` ++ or `Available, Rolling Update in Progress`. + displayName: Status + path: cheClusterRunning + x-descriptors: + - urn:alm:descriptor:io.kubernetes.phase +- - description: Public URL to the Che server ++ - description: Public URL to the Che server. + displayName: Eclipse Che URL + path: cheURL + x-descriptors: + - urn:alm:descriptor:org.w3:link +- - description: Current installed Che version ++ - description: Current installed Che version. + displayName: 'displayName: Eclipse Che version' + path: cheVersion + x-descriptors: + - urn:alm:descriptor:org.w3:link +- - description: A URL that can point to some URL where to find help related ++ - description: A URL that points to some URL where to find help related + to the current Operator status. + displayName: Help link + path: helpLink + x-descriptors: + - urn:alm:descriptor:org.w3:link +- - description: Public URL to the Identity Provider server (Keycloak / RH +- SSO). ++ - description: Public URL to the Identity Provider server, Keycloak or RH-SSO,. + displayName: Keycloak Admin Console URL + path: keycloakURL + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: A human readable message indicating details about why the +- pod is in this condition. ++ Pod is in this condition. + displayName: Message + path: message + x-descriptors: + - urn:alm:descriptor:text + - description: A brief CamelCase message indicating details about why the +- pod is in this state. ++ Pod is in this state. + displayName: Reason + path: reason + x-descriptors: +@@ -274,6 +273,151 @@ + - create + - watch + - update ++ - get ++ - delete ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - clusterroles ++ verbs: ++ - list ++ - create ++ - watch ++ - update ++ - get ++ - delete ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - roles ++ verbs: ++ - get ++ - create ++ - delete ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - rolebindings ++ verbs: ++ - get ++ - create ++ - update ++ - delete ++ - apiGroups: ++ - org.eclipse.che ++ resources: ++ - checlusters ++ - checlusters/finalizers ++ verbs: ++ - '*' ++ - apiGroups: ++ - "" ++ resources: ++ - namespaces ++ verbs: ++ - get ++ - create ++ - update ++ - apiGroups: ++ - "" ++ resources: ++ - serviceaccounts ++ verbs: ++ - get ++ - create ++ - watch ++ - apiGroups: ++ - "" ++ resources: ++ - pods/exec ++ verbs: ++ - create ++ - apiGroups: ++ - apps ++ resources: ++ - secrets ++ verbs: ++ - list ++ - apiGroups: ++ - "" ++ resources: ++ - secrets ++ verbs: ++ - list ++ - create ++ - delete ++ - apiGroups: ++ - "" ++ resources: ++ - persistentvolumeclaims ++ verbs: ++ - create ++ - get ++ - list ++ - watch ++ - apiGroups: ++ - "" ++ resources: ++ - pods ++ verbs: ++ - get ++ - list ++ - create ++ - watch ++ - delete ++ - apiGroups: ++ - apps ++ resources: ++ - deployments ++ verbs: ++ - get ++ - list ++ - create ++ - patch ++ - watch ++ - delete ++ - apiGroups: ++ - "" ++ resources: ++ - services ++ verbs: ++ - list ++ - create ++ - delete ++ - apiGroups: ++ - "" ++ resources: ++ - configmaps ++ verbs: ++ - get ++ - create ++ - delete ++ - list ++ - apiGroups: ++ - "" ++ resources: ++ - events ++ verbs: ++ - watch ++ - apiGroups: ++ - apps ++ resources: ++ - replicasets ++ verbs: ++ - list ++ - get ++ - patch ++ - delete ++ - apiGroups: ++ - extensions ++ resources: ++ - ingresses ++ verbs: ++ - list ++ - create ++ - watch ++ - get ++ - delete + serviceAccountName: che-operator + - rules: + - apiGroups: +@@ -282,6 +426,8 @@ + - namespaces + verbs: + - update ++ - list ++ - create + - get + serviceAccountName: che-namespace-editor + deployments: +@@ -297,6 +443,10 @@ + metadata: + labels: + app: che-operator ++ app.kubernetes.io/component: che-operator ++ app.kubernetes.io/instance: che ++ app.kubernetes.io/managed-by: olm ++ app.kubernetes.io/name: che + spec: + containers: + - command: +@@ -313,13 +463,13 @@ + - name: OPERATOR_NAME + value: che-operator + - name: CHE_VERSION +- value: 7.25.2 ++ value: 7.26.0 + - name: RELATED_IMAGE_che_server +- value: quay.io/eclipse/che-server@sha256:5ad78983b667e2e6752aa29b3a9500eca480723f497e9bb753461c8c6a2fa441 ++ value: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + - name: RELATED_IMAGE_plugin_registry +- value: quay.io/eclipse/che-plugin-registry@sha256:96941f7c013202e078b65af27d54da09227a96d2a03dfc4a8497cc135d9c5bad ++ value: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + - name: RELATED_IMAGE_devfile_registry +- value: quay.io/eclipse/che-devfile-registry@sha256:d0e873f2ceb1ba2affa10f98b1968862f82ed695045ba01a3f502bd5a8476343 ++ value: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + - name: RELATED_IMAGE_che_tls_secrets_creation_job + value: quay.io/eclipse/che-tls-secret-creator@sha256:6f0433641e60851454e2dbbc559daf0b8e5f398e8947ca05286b4d1f9916e3e5 + - name: RELATED_IMAGE_pvc_jobs +@@ -327,7 +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:136d6a88383466465517b24ca7e99213f7481a99054d4a22a0a8894e4e2a808a ++ value: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + - 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 +@@ -356,117 +506,149 @@ + value: che-postgres-secret + - name: CHE_SERVER_TRUST_STORE_CONFIGMAP_NAME + value: ca-certs +- - name: RELATED_IMAGE_code_server_plugin_registry_image_GMXDMLRS +- value: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- - name: RELATED_IMAGE_dirigible_openshift_plugin_registry_image_GMXDILRQ +- value: docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 +- - name: RELATED_IMAGE_che_editor_jupyter_plugin_registry_image_GUXDOLRQ +- value: docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47 +- - name: RELATED_IMAGE_eclipse_broadway_plugin_registry_image_ +- value: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 +- - name: RELATED_IMAGE_che_editor_intellij_community_plugin_registry_image_GIYDEMBOGIWWGZDDGAYDEYY_ +- value: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 +- - name: RELATED_IMAGE_che_buildah_base_plugin_registry_image_GEXDCNBOGAWWEMDDHEYWIMY_ +- value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b +- - name: RELATED_IMAGE_che_buildkit_base_plugin_registry_image_GAXDOLRRFVRGCY3CGA3DS___ +- value: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:90a6f2065410b35a7e32dbdca6913406cf38b41c005004c99f3bd7f635116632 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MFZWG2LJMRXWGLJVGMZTOZRYGA______ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MJQXUZLMFVTDCNLDGVSDM___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUN3DMY3GMMBQMQZWMMTEMFTDANBWG42TMMJYMM2DAODFGA4GMMBRHFTDENLCHEYWKYZQHBSDENZZGA4TIZTEMRRDAMLGGU2TSNJQGJRA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MNQW2ZLMNMWWMMJVMM2WINQ_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MNWGC3THFU3GEY3GMQ3WE___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRSGVTDSYRYMVSWMN3FGJQTOYLFMEZWKOBUGJSWKMJTGYZDMOJTGVRDSODGHE3DGMRXMY2WGNJWMI3GEYTGGQ4GENBZG42TIYZUGVSA____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUYLFGUYTENDFGMYTSODBMM3DSNZXMNQTSNZTMFQWMNBYHA2WCMJUMU4DAMDEGY2DOYZZGZQTEM3EGE2WCMTCGZRGCYTCMU4GMZLGGJQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MRQXE5BNMI3DIMBTHFTA____ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MRSXAZLOMRSW4Y3ZFVQW4YLMPF2GSY3TFVRTSMZZMJQTI___ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MRXXI3TFOQWWGOJTHFRGCNA_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MZWHK5DUMVZC2YRWGQYDGOLG +- value: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_M5XS2YZZGM4WEYJU ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNRUGMYTCMRRGBSTOMJQMNQTCNRRGQ4DGOLGHA4TOMRYGVTGGMLEGM4WEMTDMEYTOMRRGVSDKNTDGE3DKZBQHEYWCYLGMQYTSYJRGRRA____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUM3BGVTDCMRYMIZDCNZWGI2WGMRRGFTDMOLGMQZDENZXGMYDAYLFGYYTCZTDMY3WIYJSHA3WGMRXHA3GKNJSGJTDCM3BHAYWKZBXGAYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUOBWGE2WCMRZGQZTKYRQGI2TMYTGMZQWMOBVMFRDEY3GHEZTEN3CGA2TSZRRGRSWCYJWGYYTIMZUGZSGMZBVGFSTGYJWMRSDSZRQGQYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NJQXMYJNMI4GMMBVGI4A____ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNJVG4YDGYLFGVTGCZLCMVSGKZJVGZTGIY3FGM4DOOLGMEZDEOBRMNRTENRQGQ4DQZBYME2DQODGMY3TOZLEGNSDIMDGG43TQZDEMY3Q____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBXGJTGENRZMMZDINBTMMYDSNLEHE2GKOJUMJQWKMZUGYYTOODBGQZDIOJVGIYTQOBSGZTDMYLBMVQTQYTGGY4DOYRSMIYTKYJQG5QQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NJQXMYJYFVRDQZRQGUZDQ___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NN2WEZLSNZSXIZLTFV2G633MNFXGOLJSMZRWMMZUGE______ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NZXWIZJNMM4TGOLCME2A____ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_N5YGK3TTNBUWM5BNORXW63DJNZTS2MTGMNTDGNBR ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBZGVRTENBQGU2TAMZTMUZDCOLEGVQTSZRWMZSTSOBTGVRDOOLDGVSDGNBRGZTDAZDGMJRDEMRYMQZDSNJXGEZWKOBRMQZDOYZWGYYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJWGQYGMOJVGAYWMOLBMUYWKM3DHFRDENZWMU3DEMBQME2WGM3BMJRTCMJVMEZTMYRSMMYGMZDEGZRTANRVGNSTQZJRHFRWINJYMY3Q____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZDCHA3GGOJSGQYTQYRZMY2DAYRSGY2TIYRYMZRTINZTGA3TGNJWHFSTAZDDHBQTAMLEG5QWIYZTGFRTSOJSGVSTKNBWHFSDEYRRGE2A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OBUHALLDHEZTSYTBGQ______ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OBZG65DPMJ2WMLJSMZRWMMZUGE______ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OB4XI2DPNYWTEZTDMYZTIMI_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OJ2XG5BNGUZGMOLFHFQQ____ ++ - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_IBZWQYJSGU3DUZBTGYZGCMTCMRSWINZZGEZTINJQGZQTEM3GHFQTONZUHE4GMNLBG4ZDSN3EMY3GGYZZMEZTGOJRGQ2DOZDBHBSTCYTBG42GKYRWME2Q____ ++ value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBYGAZDKZLBMRRTENJZGQYTIMDFG43WINLEMJSWGNLEGY2WCZRYMVRTQNJRGJSTKMRWGY4TGNRXGQ2TSMRUMQ2TKZDEGQ3DONBYGJQQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZJTG42GKYZTGY3TINBXMFTGKYJZMIYTEZRVME4GMNRWHEYGCNTGHE4TGNJSGY2DAODBGM3TGMLGGUZDEYJVGNSTKZBQMJTGGMRYG5TA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONRWC3DBFUYWEZJWHA3TO___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTDMI2GMNZQMVSGEY3EMFRDGYRSG44WIYLFGUZWENTBG42TGZBWGNTGKZJQGNRGGYLFGNSDEYJTHA2WKMRUMYZDKZJWHE2WGMBTMRTA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONUGK3DMMNUGKY3LFUZGMY3GGM2DC___ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONXW4YLSNRUW45BNGJTGGZRTGQYQ____ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDGMRRDANBQGI3GGYTFMRSGEZTFGUZTCOBUMFTGGZBWMZRTKY3CGYYTGMTBGIZGEZJVHAYTAYRRGNSDGODBGEZDKYLGMQYDQMZSGIYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ORSWW5DPNYWWENRUGAZTSZQ_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OZQWYZJNGJRDSOBXGIZA____ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d +- - name: RELATED_IMAGE_che_sidecar_workspace_data_sync_plugin_registry_image_GAXDALRR ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBZGFRTMMTBGNQWGNZXGVSDKNBSGZSDOMTBGU4WCYZRHBRGIZBVGBTDKZRVMQ3DCZBQG5TGEZTCGM2GKMDDMQ3WMZLEGNSDIZDBGIYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTCHFRTOMZZMY2DQNZXGM4GCNLCMZRDEMDFGA2TEYJSGFRDIZLEMZTDIMRYHFRTOMZYGQ4TMNZQHBQWEZRYMFSGGNDEGU4DEMDEG44Q____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTEGBRTINBQME3WIYZWGQ4DQMJWMZRWINBYHA2WEOLDMM4DKZRQMVRDAZRTHEYTMNJZMJRDSZTDHBQTSMJSGMYDONLCMVQTONJRGY2Q____ ++ 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_IBZWQYJSGU3DUMJWGY2DEZLDGBQTIOBYGQ4DIYRXGBSWCZLBGJRDINLGGM4TSZRUHBRTAMRSMZSWCNLBMVSTCZRRGM2WCYZXMNRTANRYMQ2TGNTDMM3Q____ ++ value: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUZBXGUZTMMRTGY2TQZBWMNSWKNJZGQZTKNZXMIYTMZTGG4YTAMBUMM3WENBVHBSGEYLFGM3TKZLCMNRTAZTFMZSWEOLFMRQWKZLEGQ2A____ ++ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ - 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____ ++ value: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ - name: RELATED_IMAGE_che_editor_intellij_community_plugin_registry_image_IBZWQYJSGU3DUMRZGAZDKZDCHA2TSMRWHBTDKZDDMYZDCYTBGZSWENDFGI4DINZUGRRDKM3DHEZGINTEGIZTKMJUMU2TMNLBGAZDCMJWGA3GMNRYGYZQ____ ++ value: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ - name: RELATED_IMAGE_eclipse_broadway_plugin_registry_image_IBZWQYJSGU3DUNJXMM4DEY3EHAYDMYJVGZTDMOLBME4DMNRTMY3DQNBQGVSDANZXHBRDMMRYMEZDSYJWGRTGEMJWHA4DCYRRGFRWKOLGGQ4DIZDEME3Q____ ++ value: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ - name: RELATED_IMAGE_code_server_plugin_registry_image_IBZWQYJSGU3DUZLGGA3TEOBRGAYDIOJQHFRGEMTDGIZDQNBSGJSGMMTFHE4WCNLCME2WKNBVGBTGGZJXGU2DMYRYMZQTCOBWHA2TEZRSGNRGMNRXGUYQ____ ++ value: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ - name: RELATED_IMAGE_che_buildah_base_plugin_registry_image_IBZWQYJSGU3DUNBRG4ZDAM3EHA3DEOLFMRSDSMTGGE4DOYLGMQZWKYTCGNSDQZDDGI4DGMZYMQZTIOBQHFSWENZVMZTGGMTFGA4GCNBQGBTDQZBVGZRA____ ++ value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ - 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_theia_endpoint_runtime_binary_plugin_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c3b136d8dda3120b30a80bccedb4d7f5030325e40a946a3da9dba33656bc7650 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-theia@sha256:dd70ca1baa69b2c18520aaf2581b7e83028fb8444f617b3136c9df9a1bb481b0 +- - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______ +- value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ - 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_IBZWQYJSGU3DUMZWMJSGGZJUGJRWEZTFMVSWEODBGE3TEZJRMMYTOZJRGU2TCZJWG42DAZJRG42TMNJWGBSDQNTDGRRDSNRTGY3DAYJSGRQWGMTCGJQQ____ ++ value: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ - 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_G4XDENJOGI______ +- value: quay.io/eclipse/che-cpp-rhel7@sha256:a69a78586a52def2f030cf1648d7a77e4dbdd67228ff6a8bcb11ccbdc2180bbc +- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-dotnet-2.2@sha256:6d28148fbffa76ecbd7085a75d1f1ff4fba1f31df1dfbf2ba8ad0bbb3349520d +- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-dotnet-3.1@sha256:139588b061d051dad52a71c7f7e779da2d22d1fb6c3332ba30bee4307c4c3e2c +- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-golang-1.14@sha256:b41a561cfcd2b5fd62a80d600f7b547c9f155b010627e47eccde962ac4253794 +- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-java11-gradle@sha256:433546307e6b9cc4fa5c0eb54dd04a550e9c22f200503cd0caa0f51cfd28689f +- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-java11-maven@sha256:dc3366db4a740606ba6ce5208f642ad0f8993ef38cfcc3c1215d3ea9e279ca2a +- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-java8-maven@sha256:f5784e53a598bf73f380a9873a571d686c817c57a2b09ad9e1581651a656b0d7 +- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs10-community@sha256:3ae6654f3855c20c4083e6462527fb7af5bfc50f55d8f95877fe50cd9c35d29a +- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs10-ubi@sha256:67ed65f29c6ffc44c7fc401c4d9e7b5266ba9301173923e0083e0b468812b91f +- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs12-community@sha256:e0a180f53041b2f2b0e432082351a301dc6eb1c02ff96cc946a342c4e1edf53e +- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs8-centos@sha256:8d5e3b93bb5fcdb47149038bed53ceee9f3cf9063b8ee6dba76ab8d93d8d95c0 +- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-php-7@sha256:1701391313dfbcafca5946586b9a4915faa2bdf6c32b1837a8021524bdfc9029 +- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-python-3.7@sha256:d971f85f68b004a3245d3b75361cceddf4dae6055168d3d177b0cd7e04ad04a3 +- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-python-3.8@sha256:9192bdb4c7e660b71f7ab30d8782b5bc0ef7319bac25d53574be39664c735eb4 +- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-quarkus@sha256:09f6332964ad28d0b70eb1b0126f8b8635a3faa498eb90cd4909f929de5e1e24 +- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-rust-1.39@sha256:04ae0e0fbf3eab860159d7c601ae2f5f037bc12f6e48e96d97b0d683525aaed6 ++ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 ++ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 ++ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 ++ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 ++ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 ++ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c ++ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf ++ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 ++ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 ++ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a ++ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa ++ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 ++ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 ++ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 ++ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + - name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___ + value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a +- image: quay.io/eclipse/che-operator@sha256:eaaf23aef2d721be21f03ee2863e868de51f5c5d9899ca09e34909dcdf0e8bdd ++ image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + imagePullPolicy: IfNotPresent + livenessProbe: + failureThreshold: 10 +@@ -504,7 +686,7 @@ + - ALL + restartPolicy: Always + serviceAccountName: che-operator +- terminationGracePeriodSeconds: 5 ++ terminationGracePeriodSeconds: 20 + permissions: + - rules: + - apiGroups: +@@ -570,7 +752,9 @@ + - apiGroups: + - org.eclipse.che + resources: +- - '*' ++ - checlusters ++ - checlusters/status ++ - checlusters/finalizers + verbs: + - '*' + - apiGroups: +@@ -634,12 +818,12 @@ + maturity: stable + provider: + name: Eclipse Foundation +- replaces: eclipse-che-preview-kubernetes.v7.25.1 +- version: 7.25.2 ++ replaces: eclipse-che-preview-kubernetes.v7.25.2 ++ version: 7.26.0 + relatedImages: +- - name: che-operator-7.25.2 +- image: quay.io/eclipse/che-operator@sha256:eaaf23aef2d721be21f03ee2863e868de51f5c5d9899ca09e34909dcdf0e8bdd +- # tag: quay.io/eclipse/che-operator:7.25.2 ++ - name: che-operator-7.26.0 ++ image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 ++ # tag: quay.io/eclipse/che-operator:7.26.0 + - name: traefik-v2.2.8 + image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + # tag: docker.io/traefik:v2.2.8 +@@ -649,192 +833,240 @@ + - name: che--centos--postgresql-96-centos7-9.6-b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + image: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: quay.io/eclipse/che--centos--postgresql-96-centos7:9.6-b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 +- - name: che-devfile-registry-7.25.2 +- image: quay.io/eclipse/che-devfile-registry@sha256:d0e873f2ceb1ba2affa10f98b1968862f82ed695045ba01a3f502bd5a8476343 +- # tag: quay.io/eclipse/che-devfile-registry:7.25.2 ++ - name: che-devfile-registry-7.26.0 ++ image: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd ++ # tag: quay.io/eclipse/che-devfile-registry:7.26.0 + - name: che-jwtproxy-0.10.0 + image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033 + # tag: quay.io/eclipse/che-jwtproxy:0.10.0 +- - name: che-keycloak-7.25.2 +- image: quay.io/eclipse/che-keycloak@sha256:136d6a88383466465517b24ca7e99213f7481a99054d4a22a0a8894e4e2a808a +- # tag: quay.io/eclipse/che-keycloak:7.25.2 ++ - name: che-keycloak-7.26.0 ++ image: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 ++ # tag: quay.io/eclipse/che-keycloak:7.26.0 + - name: che-plugin-artifacts-broker-v3.4.0 + image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58 + # tag: quay.io/eclipse/che-plugin-artifacts-broker:v3.4.0 + - name: che-plugin-metadata-broker-v3.4.0 + image: quay.io/eclipse/che-plugin-metadata-broker@sha256:df1ea2eadb28dbc97761adf4ea984af5ca941025a67b39c6abe373816a84bba9 + # tag: quay.io/eclipse/che-plugin-metadata-broker:v3.4.0 +- - name: che-plugin-registry-7.25.2 +- image: quay.io/eclipse/che-plugin-registry@sha256:96941f7c013202e078b65af27d54da09227a96d2a03dfc4a8497cc135d9c5bad +- # tag: quay.io/eclipse/che-plugin-registry:7.25.2 +- - name: che-server-7.25.2 +- image: quay.io/eclipse/che-server@sha256:5ad78983b667e2e6752aa29b3a9500eca480723f497e9bb753461c8c6a2fa441 +- # tag: quay.io/eclipse/che-server:7.25.2 ++ - name: che-plugin-registry-7.26.0 ++ image: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 ++ # tag: quay.io/eclipse/che-plugin-registry:7.26.0 ++ - name: che-server-7.26.0 ++ image: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c ++ # tag: quay.io/eclipse/che-server:7.26.0 + - 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 + - name: ubi8-minimal-8.3-230 + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal:8.3-230 +- - name: code-server-3.6.2 +- image: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- # tag: codercom/code-server:3.6.2 +- - name: dirigible-openshift-3.4.0 +- image: docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 +- # tag: docker.io/dirigiblelabs/dirigible-openshift:3.4.0 +- - name: che-editor-jupyter-5.7.0 +- image: docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47 +- # tag: docker.io/ksmster/che-editor-jupyter:5.7.0 +- - name: eclipse-broadway- +- image: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 +- # tag: docker.io/wsskeleton/eclipse-broadway +- - name: che-editor-intellij-community-2020.2-cdc002c +- image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 +- # tag: quay.io/che-incubator/che-editor-intellij-community:2020.2-cdc002c +- - name: che-buildah-base-1.14.0-b0c91d3 +- image: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b +- # tag: quay.io/eclipse/che-buildah-base:1.14.0-b0c91d3 +- - name: che-buildkit-base-0.7.1-bacb069 +- image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9 +- # tag: quay.io/eclipse/che-buildkit-base:0.7.1-bacb069 +- - name: che-machine-exec-7.25.2 +- image: quay.io/eclipse/che-machine-exec@sha256:90a6f2065410b35a7e32dbdca6913406cf38b41c005004c99f3bd7f635116632 +- # tag: quay.io/eclipse/che-machine-exec:7.25.2 +- - name: che-plugin-sidecar-asciidoc-5337f80 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 +- # tag: quay.io/eclipse/che-plugin-sidecar:asciidoc-5337f80 +- - name: che-plugin-sidecar-bazel-f15c5d6 ++ - 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-plugin-sidecar-@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: che-plugin-sidecar-@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + image: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b +- # tag: quay.io/eclipse/che-plugin-sidecar:bazel-f15c5d6 +- - name: che-plugin-sidecar-camelk-f15c5d6 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a +- # tag: quay.io/eclipse/che-plugin-sidecar:camelk-f15c5d6 +- - name: che-plugin-sidecar-clang-6bcfd7b ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b ++ - 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-plugin-sidecar-@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ - name: che-plugin-sidecar-@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + image: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a +- # tag: quay.io/eclipse/che-plugin-sidecar:clang-6bcfd7b +- - name: che-plugin-sidecar-dart-b64039f +- image: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 +- # tag: quay.io/eclipse/che-plugin-sidecar:dart-b64039f +- - name: che-plugin-sidecar-dependency-analytics-c939ba4 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 +- # tag: quay.io/eclipse/che-plugin-sidecar:dependency-analytics-c939ba4 +- - name: che-plugin-sidecar-dotnet-c939ba4 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a +- # tag: quay.io/eclipse/che-plugin-sidecar:dotnet-c939ba4 +- - name: che-plugin-sidecar-flutter-b64039f +- image: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 +- # tag: quay.io/eclipse/che-plugin-sidecar:flutter-b64039f +- - name: che-plugin-sidecar-go-c939ba4 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a ++ - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ - name: che-plugin-sidecar-@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ - name: che-plugin-sidecar-@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ - name: che-plugin-sidecar-@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + image: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 +- # tag: quay.io/eclipse/che-plugin-sidecar:go-c939ba4 +- - name: che-plugin-sidecar-java-b8f0528 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 ++ - name: che-plugin-sidecar-@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ - name: che-plugin-sidecar-@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 +- # tag: quay.io/eclipse/che-plugin-sidecar:java-b8f0528 +- - name: che-plugin-sidecar-java8-b8f0528 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 +- # tag: quay.io/eclipse/che-plugin-sidecar:java8-b8f0528 +- - name: che-plugin-sidecar-kubernetes-tooling-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a +- # tag: quay.io/eclipse/che-plugin-sidecar:kubernetes-tooling-2fcf341 +- - name: che-plugin-sidecar-node-c939ba4 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 +- # tag: quay.io/eclipse/che-plugin-sidecar:node-c939ba4 +- - name: che-plugin-sidecar-openshift-tooling-2fcf341 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ - name: che-plugin-sidecar-@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ - name: che-plugin-sidecar-@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + image: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 +- # tag: quay.io/eclipse/che-plugin-sidecar:openshift-tooling-2fcf341 +- - name: che-plugin-sidecar-php-c939ba4 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 ++ - 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-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 +- # tag: quay.io/eclipse/che-plugin-sidecar:php-c939ba4 +- - name: che-plugin-sidecar-protobuf-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 +- # tag: quay.io/eclipse/che-plugin-sidecar:protobuf-2fcf341 +- - name: che-plugin-sidecar-python-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b +- # tag: quay.io/eclipse/che-plugin-sidecar:python-2fcf341 +- - name: che-plugin-sidecar-rust-52f9e9a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ - name: mta-vscode-extension-@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ # tag: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ - 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-plugin-sidecar-@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ - name: che-plugin-sidecar-@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + image: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f +- # tag: quay.io/eclipse/che-plugin-sidecar:rust-52f9e9a +- - name: che-plugin-sidecar-scala-1be6877 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f ++ - name: che-plugin-sidecar-@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df +- # tag: quay.io/eclipse/che-plugin-sidecar:scala-1be6877 +- - name: che-plugin-sidecar-shellcheck-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 +- # tag: quay.io/eclipse/che-plugin-sidecar:shellcheck-2fcf341 +- - name: che-plugin-sidecar-sonarlint-2fcf341 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df ++ - name: che-plugin-sidecar-@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + image: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 +- # tag: quay.io/eclipse/che-plugin-sidecar:sonarlint-2fcf341 +- - name: che-plugin-sidecar-tekton-b64039f +- image: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 +- # tag: quay.io/eclipse/che-plugin-sidecar:tekton-b64039f +- - name: che-plugin-sidecar-vale-2b98722 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d +- # tag: quay.io/eclipse/che-plugin-sidecar:vale-2b98722 +- - name: che-sidecar-workspace-data-sync-0.0.1 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ - name: che-plugin-sidecar-@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 ++ - 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:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ image: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ # tag: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ - name: che-theia-endpoint-runtime-binary-@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ - 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 ++ - name: dirigible-openshift-@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ image: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ # tag: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ - name: che-editor-intellij-community-@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ # tag: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ - name: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ image: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ # tag: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ image: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ # tag: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ - name: che-buildah-base-@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ image: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ # tag: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ - 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:0.0.1 +- - name: che-theia-endpoint-runtime-binary-7.25.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c3b136d8dda3120b30a80bccedb4d7f5030325e40a946a3da9dba33656bc7650 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.25.2 +- - name: che-theia-7.25.2 +- image: quay.io/eclipse/che-theia@sha256:dd70ca1baa69b2c18520aaf2581b7e83028fb8444f617b3136c9df9a1bb481b0 +- # tag: quay.io/eclipse/che-theia:7.25.2 +- - name: mta-vscode-extension-latest +- image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 +- # tag: quay.io/windupeng/mta-vscode-extension:latest ++ # tag: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10 ++ - 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:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ image: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ # tag: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ - 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--centos--mongodb-36-centos7-latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + image: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + # tag: quay.io/eclipse/che--centos--mongodb-36-centos7:latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + - name: che--centos--mysql-57-centos7-latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + image: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + # tag: quay.io/eclipse/che--centos--mysql-57-centos7:latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- - name: che-cpp-rhel7-7.25.2 +- image: quay.io/eclipse/che-cpp-rhel7@sha256:a69a78586a52def2f030cf1648d7a77e4dbdd67228ff6a8bcb11ccbdc2180bbc +- # tag: quay.io/eclipse/che-cpp-rhel7:7.25.2 +- - name: che-dotnet-2.2-7.25.2 +- image: quay.io/eclipse/che-dotnet-2.2@sha256:6d28148fbffa76ecbd7085a75d1f1ff4fba1f31df1dfbf2ba8ad0bbb3349520d +- # tag: quay.io/eclipse/che-dotnet-2.2:7.25.2 +- - name: che-dotnet-3.1-7.25.2 +- image: quay.io/eclipse/che-dotnet-3.1@sha256:139588b061d051dad52a71c7f7e779da2d22d1fb6c3332ba30bee4307c4c3e2c +- # tag: quay.io/eclipse/che-dotnet-3.1:7.25.2 +- - name: che-golang-1.14-7.25.2 +- image: quay.io/eclipse/che-golang-1.14@sha256:b41a561cfcd2b5fd62a80d600f7b547c9f155b010627e47eccde962ac4253794 +- # tag: quay.io/eclipse/che-golang-1.14:7.25.2 +- - name: che-java11-gradle-7.25.2 +- image: quay.io/eclipse/che-java11-gradle@sha256:433546307e6b9cc4fa5c0eb54dd04a550e9c22f200503cd0caa0f51cfd28689f +- # tag: quay.io/eclipse/che-java11-gradle:7.25.2 +- - name: che-java11-maven-7.25.2 +- image: quay.io/eclipse/che-java11-maven@sha256:dc3366db4a740606ba6ce5208f642ad0f8993ef38cfcc3c1215d3ea9e279ca2a +- # tag: quay.io/eclipse/che-java11-maven:7.25.2 +- - name: che-java8-maven-7.25.2 +- image: quay.io/eclipse/che-java8-maven@sha256:f5784e53a598bf73f380a9873a571d686c817c57a2b09ad9e1581651a656b0d7 +- # tag: quay.io/eclipse/che-java8-maven:7.25.2 +- - name: che-nodejs10-community-7.25.2 +- image: quay.io/eclipse/che-nodejs10-community@sha256:3ae6654f3855c20c4083e6462527fb7af5bfc50f55d8f95877fe50cd9c35d29a +- # tag: quay.io/eclipse/che-nodejs10-community:7.25.2 +- - name: che-nodejs10-ubi-7.25.2 +- image: quay.io/eclipse/che-nodejs10-ubi@sha256:67ed65f29c6ffc44c7fc401c4d9e7b5266ba9301173923e0083e0b468812b91f +- # tag: quay.io/eclipse/che-nodejs10-ubi:7.25.2 +- - name: che-nodejs12-community-7.25.2 +- image: quay.io/eclipse/che-nodejs12-community@sha256:e0a180f53041b2f2b0e432082351a301dc6eb1c02ff96cc946a342c4e1edf53e +- # tag: quay.io/eclipse/che-nodejs12-community:7.25.2 +- - name: che-nodejs8-centos-7.25.2 +- image: quay.io/eclipse/che-nodejs8-centos@sha256:8d5e3b93bb5fcdb47149038bed53ceee9f3cf9063b8ee6dba76ab8d93d8d95c0 +- # tag: quay.io/eclipse/che-nodejs8-centos:7.25.2 +- - name: che-php-7-7.25.2 +- image: quay.io/eclipse/che-php-7@sha256:1701391313dfbcafca5946586b9a4915faa2bdf6c32b1837a8021524bdfc9029 +- # tag: quay.io/eclipse/che-php-7:7.25.2 +- - name: che-python-3.7-7.25.2 +- image: quay.io/eclipse/che-python-3.7@sha256:d971f85f68b004a3245d3b75361cceddf4dae6055168d3d177b0cd7e04ad04a3 +- # tag: quay.io/eclipse/che-python-3.7:7.25.2 +- - name: che-python-3.8-7.25.2 +- image: quay.io/eclipse/che-python-3.8@sha256:9192bdb4c7e660b71f7ab30d8782b5bc0ef7319bac25d53574be39664c735eb4 +- # tag: quay.io/eclipse/che-python-3.8:7.25.2 +- - name: che-quarkus-7.25.2 +- image: quay.io/eclipse/che-quarkus@sha256:09f6332964ad28d0b70eb1b0126f8b8635a3faa498eb90cd4909f929de5e1e24 +- # tag: quay.io/eclipse/che-quarkus:7.25.2 +- - name: che-rust-1.39-7.25.2 +- image: quay.io/eclipse/che-rust-1.39@sha256:04ae0e0fbf3eab860159d7c601ae2f5f037bc12f6e48e96d97b0d683525aaed6 +- # tag: quay.io/eclipse/che-rust-1.39:7.25.2 ++ - name: che-cpp-rhel7-7.26.0 ++ image: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 ++ # tag: quay.io/eclipse/che-cpp-rhel7:7.26.0 ++ - name: che-dotnet-2.2-7.26.0 ++ image: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 ++ # tag: quay.io/eclipse/che-dotnet-2.2:7.26.0 ++ - name: che-dotnet-3.1-7.26.0 ++ image: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 ++ # tag: quay.io/eclipse/che-dotnet-3.1:7.26.0 ++ - name: che-golang-1.14-7.26.0 ++ image: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 ++ # tag: quay.io/eclipse/che-golang-1.14:7.26.0 ++ - name: che-java11-gradle-7.26.0 ++ image: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 ++ # tag: quay.io/eclipse/che-java11-gradle:7.26.0 ++ - name: che-java11-maven-7.26.0 ++ image: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c ++ # tag: quay.io/eclipse/che-java11-maven:7.26.0 ++ - name: che-java8-maven-7.26.0 ++ image: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf ++ # tag: quay.io/eclipse/che-java8-maven:7.26.0 ++ - name: che-nodejs10-community-7.26.0 ++ image: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 ++ # tag: quay.io/eclipse/che-nodejs10-community:7.26.0 ++ - name: che-nodejs10-ubi-7.26.0 ++ image: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 ++ # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.0 ++ - name: che-nodejs12-community-7.26.0 ++ image: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a ++ # tag: quay.io/eclipse/che-nodejs12-community:7.26.0 ++ - name: che-nodejs8-centos-7.26.0 ++ image: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa ++ # tag: quay.io/eclipse/che-nodejs8-centos:7.26.0 ++ - name: che-php-7-7.26.0 ++ image: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 ++ # tag: quay.io/eclipse/che-php-7:7.26.0 ++ - name: che-python-3.8-7.26.0 ++ image: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 ++ # tag: quay.io/eclipse/che-python-3.8:7.26.0 ++ - name: che-quarkus-7.26.0 ++ image: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 ++ # tag: quay.io/eclipse/che-quarkus:7.26.0 ++ - name: che-rust-1.39-7.26.0 ++ image: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d ++ # tag: quay.io/eclipse/che-rust-1.39:7.26.0 + - name: ubi8-minimal-8.3 + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal:8.3 diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/eclipse-che-preview-kubernetes.package.yaml b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/eclipse-che-preview-kubernetes.package.yaml index 49bf9aee3..f80976d9a 100644 --- a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/eclipse-che-preview-kubernetes.package.yaml +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/eclipse-che-preview-kubernetes.package.yaml @@ -1,5 +1,5 @@ channels: -- currentCSV: eclipse-che-preview-kubernetes.v7.25.2 +- currentCSV: eclipse-che-preview-kubernetes.v7.26.0 name: stable defaultChannel: stable packageName: eclipse-che-preview-kubernetes diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.crd.yaml b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.crd.yaml new file mode 100644 index 000000000..622a488f5 --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.crd.yaml @@ -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 `.` + 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 ``,`` and `` placeholders, + such as che-workspace-. 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 diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.crd.yaml.diff b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.crd.yaml.diff new file mode 100644 index 000000000..482439faa --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.crd.yaml.diff @@ -0,0 +1,979 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.25.2/eclipse-che-preview-openshift.crd.yaml 2021-02-10 16:08:25.529203981 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.crd.yaml 2021-02-10 17:05:30.459397312 +0000 +@@ -42,38 +42,38 @@ + type: object + spec: + description: Desired configuration of the Che installation. Based on these +- settings, the operator automatically creates and maintains several config +- maps that will contain the appropriate environment variables the various +- components of the Che installation. These generated config maps should +- NOT be updated manually. ++ 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 or not to deploy +- a dedicated Identity Provider (Keycloak or RH SSO instance). By +- default a dedicated Identity Provider server is deployed as part +- of the Che installation. But if `externalIdentityProvider` is +- `true`, then no dedicated identity provider will be deployed by +- the operator and you might need to provide details about the external +- identity provider you want to use. See also all the other fields +- starting with: `identityProvider`.' ++ 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 admin user. +- Defaults to `admin`. ++ description: Overrides the name of the Identity Provider administrator ++ user. Defaults to `admin`. + type: string + identityProviderClientId: +- description: Name of a Identity provider (Keycloak / RH SSO) `client-id` +- that should be used for Che. This is useful to override it ONLY +- if you use an external Identity Provider (see the `externalIdentityProvider` +- field). If omitted or left blank, it will be set to the value +- of the `flavour` field suffixed with `-public`. ++ 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 ++ description: Identity provider container custom settings. + properties: + limits: + description: Limits describes the maximum amount of compute +@@ -102,79 +102,81 @@ + type: object + identityProviderImage: + description: Overrides the container image used in the Identity +- Provider (Keycloak / RH SSO) deployment. This includes the image +- tag. Omit it or leave it empty to use the defaut container image +- provided by the operator. ++ 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 / RH SSO) deployment. Default value is `Always` ++ 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 ++ description: Ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ to organize and categorize objects by scoping and selecting. + type: string + type: object + identityProviderPassword: +- description: Overrides the password of Keycloak admin user. This +- is useful to override it ONLY if you use an external Identity +- Provider (see the `externalIdentityProvider` field). If omitted +- or left blank, it will be set to an auto-generated password. ++ 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 The Identity Provider (Keycloak / RH SSO) ++ 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). If omitted or left blank, it will be set to an auto-generated ++ 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 / RH SSO) to connect to the database. If the +- secret is defined then `identityProviderPostgresPassword` will +- be ignored. If the value is omitted or left blank then there are +- two scenarios: 1. `identityProviderPostgresPassword` is defined, +- then it will be used to connect to the database. 2. `identityProviderPostgresPassword` +- is not defined, then a new secret with the name `che-identity-postgres-secret` +- will be created with an auto-generated value for `password`.' ++ 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 / RH SSO) realm +- that should be used for Che. This is useful to override it ONLY +- if you use an external Identity Provider (see the `externalIdentityProvider` +- field). If omitted or left blank, it will be set to the value +- of the `flavour` field. ++ 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 ++ description: Route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. If the secret is defined then `identityProviderAdminUserName` +- and `identityProviderPassword` are ignored. If the value is omitted +- or left blank then there are two scenarios: 1. `identityProviderAdminUserName` +- and `identityProviderPassword` are defined, then they will be +- used. 2. `identityProviderAdminUserName` or `identityProviderPassword` +- are not defined, then a new secret with the name `che-identity-secret` +- will be created with default value `admin` for `user` and with +- an auto-generated value for `password`.' ++ 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). You should set it ONLY if you use an external +- Identity Provider (see the `externalIdentityProvider` field). +- By default this will be automatically calculated and set by the +- operator. ++ / 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 +@@ -188,15 +190,12 @@ + type: string + openShiftoAuth: + description: 'Enables the integration of the identity provider (Keycloak +- / RHSSO) with OpenShift OAuth. Empty value on the OpenShift platform +- by default. If user changes this empty value to true/false, then +- che-operator respect this value. Otherwise che-operator tries +- to auto detect if Openshift oAuth can be enabled and change empty +- value, correspondly to auto-detection result. This property allows +- users to directly login with their Openshift user through the +- Openshift login, and have their workspaces created under personal +- OpenShift namespaces. WARNING: the `kubeadmin` user is NOT supported, +- and logging through it will NOT allow accessing the Che Dashboard.' ++ / 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 +@@ -208,7 +207,7 @@ + the Che installation. + properties: + chePostgresContainerResources: +- description: Postgres container custom settings ++ description: PostgreSQL container custom settings + properties: + limits: + description: Limits describes the maximum amount of compute +@@ -236,57 +235,56 @@ + type: object + type: object + chePostgresDb: +- description: Postgres database name that the Che server uses to ++ description: PostgreSQL database name that the Che server uses to + connect to the DB. Defaults to `dbche`. + type: string + chePostgresHostName: +- description: Postgres Database hostname that the Che server uses +- to connect to. Defaults to postgres. This value should be overridden +- ONLY when using an external database (see field `externalDb`). +- In the default case it will be automatically set by the operator. ++ 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: Postgres password that the Che server should use to +- connect to the DB. If omitted or left blank, it will be set to +- an auto-generated value. ++ 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: Postgres Database port that the Che server uses to +- connect to. Defaults to 5432. This value should be overridden +- ONLY when using an external database (see field `externalDb`). +- In the default case it will be automatically set by the operator. ++ 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 Postgres `user` and `password` +- that the Che server should use to connect to the DB. If the secret +- is defined then `chePostgresUser` and `chePostgresPassword` are +- ignored. If the value is omitted or left blank then there are +- two scenarios: 1. `chePostgresUser` and `chePostgresPassword` ++ 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: Postgres user that the Che server should use to connect ++ 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 or not to deploy +- a dedicated database. By default a dedicated Postgres database +- is deployed as part of the Che installation. But if `externalDb` +- is `true`, then no dedicated database will be deployed by the +- operator and you might need to provide connection details to the +- external DB you want to use. See also all the fields starting +- with: `chePostgres`.' ++ 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 Postgres ++ 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 defaut container image provided by the operator. ++ it empty to use the default container image provided by the Operator. + type: string + postgresImagePullPolicy: +- description: Overrides the image pull policy used in the Postgres ++ 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 +@@ -299,10 +297,10 @@ + \ Image Puller Operator. If true and no spec is provided, it will\ + \ create a default KubernetesImagePuller object to be managed\ + \ by the Operator. If false, the KubernetesImagePuller object\ +- \ will be deleted, and the operator will be uninstalled, regardless\ +- \ of whether or not a spec is provided. \n Please note that while\ +- \ this operator and its behavior is community-supported, its payload\ +- \ may be commercially-supported if you use it for pulling commercially-supported\ ++ \ 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: +@@ -336,49 +334,46 @@ + on upstream Kubernetes. + properties: + ingressClass: +- description: 'Ingress class that will define the which controler ++ description: 'Ingress class that will define the which controller + will manage ingresses. Defaults to `nginx`. NB: This drives the +- `is kubernetes.io/ingress.class` annotation on Che-related ingresses.' ++ `kubernetes.io/ingress.class` annotation on Che-related ingresses.' + type: string + ingressDomain: + description: 'Global ingress domain for a K8S cluster. This MUST + be explicitly specified: there are no defaults.' + type: string + ingressStrategy: +- description: Strategy for ingress creation. This can be `multi-host` ++ 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. If both are +- defined, `serverExposureStrategy` takes precedence. ++ 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: FSGroup the Che pod and Workspace pods containers should +- run in. Defaults to `1724`. ++ 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 +- should run as. Default to `1724`. ++ 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", ++ 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". ++ configured by this property. The possible values are `native`, ++ which means that the server and workspaces are exposed using ingresses ++ on K8s or `gateway` where the server and workspaces are exposed ++ using a custom gateway based on Traefik. All the endpoints whether ++ backed by the ingress or gateway `route` always point to the subpaths ++ on the same domain. Defaults to `native`. + type: string + tlsSecretName: +- description: Name of a secret that is used to set ingress TLS termination +- if TLS is enabled. If the specified secret does not exist, a self-signed +- certificate will be created. If the value is empty or omitted, +- the default ingress controller certificate will be used. See also +- the `tlsSupport` field. Note, when switching to the default ingress +- controller certificate, `self-signed-certificate` secret should +- be deleted manually. ++ 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: +@@ -386,7 +381,8 @@ + used by the Che installation. + properties: + enable: +- description: Enables `metrics` Che server endpoint. Default to `true`. ++ description: Enables `metrics` the Che server endpoint. Default ++ to `true`. + type: boolean + type: object + server: +@@ -394,29 +390,29 @@ + and the plugin and devfile registries + properties: + airGapContainerRegistryHostname: +- description: Optional hostname (or url) to an alternate container ++ description: Optional host name, or URL, to an alternate container + registry to pull images from. This value overrides the container +- registry hostname defined in all the default container images ++ registry host name defined in all the default container images + involved in a Che deployment. This is particularly useful to install +- Che in an air-gapped environment. ++ 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 +- Che in an air-gapped environment. ++ Eclipse Che in a restricted environment. + type: string + allowUserDefinedWorkspaceNamespaces: +- description: Defines if a user is able to specify Kubernetes namespace +- (or OpenShift project) different from the default. It's NOT RECOMMENDED +- to configured true without OAuth configured. This property is +- also used by the OpenShift infra. ++ 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: Comma-separated list of ClusterRoles that will be assigned +- to che ServiceAccount. Be aware that che-operator has to already +- have all permissions in these ClusterRoles to be able to grant ++ 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: +@@ -424,24 +420,25 @@ + `false`. + type: string + cheFlavor: +- description: Flavor of the installation. This is either `che` for +- upstream Che installations, or `codeready` for CodeReady Workspaces +- installation. In most cases the default value should not be overridden. ++ 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 hostname of the installed Che server. If value +- is omitted then it will be automatically set by the operator. +- (see the `cheHostTLSSecret` field). ++ 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/route for the custom hostname of the installed Che server. +- (see the `cheHost` field). ++ 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 defaut container image provided by the operator. ++ 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. +@@ -450,27 +447,27 @@ + type: string + cheImageTag: + description: Overrides the tag of the container image used in Che +- deployment. Omit it or leave it empty to use the defaut image +- tag provided by the operator. ++ 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: Che server ingress custom settings ++ description: The Che server ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ to organize and categorize objects by scoping and selecting. + type: string + type: object + cheServerRoute: +- description: Che server route custom settings ++ description: The Che server route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ to organize and categorize objects by scoping and selecting. + type: string + type: object + cheWorkspaceClusterRole: +@@ -481,252 +478,247 @@ + additionalProperties: + type: string + description: Map of additional environment variables that will be +- applied in the generated `che` config map to be used by the Che ++ 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). If `customCheProperties` ++ fields of the `CheCluster` custom resource (CR). When `customCheProperties` + contains a property that would be normally generated in `che` +- config map from other CR fields, then the value defined in the +- `customCheProperties` will be used instead. ++ 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 ++ 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 ++ 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 ++ description: Overrides the container image used in the devfile registry + deployment. This includes the image tag. Omit it or leave it empty +- to use the defaut container image provided by the operator. ++ to use the default container image provided by the Operator. + type: string + devfileRegistryIngress: +- description: Devfile registry ingress custom settings ++ description: The devfile registry ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 256Mi. ++ 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 In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 32Mi. ++ 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 ++ description: Overrides the image pull policy used in the devfile + registry deployment. Default value is `Always` for `nightly` or + `latest` images, and `IfNotPresent` in other cases. + type: string + devfileRegistryRoute: +- description: Devfile registry route custom settings ++ description: The devfile registry route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. You should set it ONLY if you use an external +- devfile registry (see the `externalDevfileRegistry` field). By +- default this will be automatically calculated by the operator. ++ 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 or not to deploy +- a dedicated Devfile registry server. By default a dedicated devfile +- registry server is started. But if `externalDevfileRegistry` is +- `true`, then no such dedicated server will be started by the operator +- and you will have to manually set the `devfileRegistryUrl` field ++ 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 or not to deploy +- a dedicated Plugin registry server. By default a dedicated plugin +- registry server is started. But if `externalPluginRegistry` is +- `true`, then no such dedicated server will be started by the operator +- and you will have to manually set the `pluginRegistryUrl` field. ++ 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: If enabled, then the certificate from `che-git-self-signed-cert` +- config map will be propagated to the Che components and provide ++ 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 should not use the configured proxy. +- So specify wild card domain use the following form `.` +- and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32` ++ description: 'List of hosts that will be reached directly, bypassing ++ the proxy. Specify wild card domain use the following form `.` ++ 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).' ++ 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 ++ 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 ++ 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 ++ 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. ++ to use the default container image provided by the Operator. + type: string + pluginRegistryIngress: +- description: Plugin registry ingress custom settings ++ description: Plugin registry ingress custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 256Mi. ++ 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. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 32Mi. ++ 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 ++ 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 ++ description: Plugin registry route custom settings. + properties: + labels: + description: Comma separated list of labels that can be used +- to organize and categorize (scope and select) objects. ++ 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. You should set it ONLY if you use an external +- devfile registry (see the `externalPluginRegistry` field). By +- default this will be automatically calculated by the operator. ++ 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 also the `proxyURL`, `proxyUser` and `proxySecret` +- fields). ++ 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). ++ a proxy is required. See also the `proxyURL` and `nonProxyHosts` ++ fields. + type: string + proxySecret: + description: The secret that contains `user` and `password` for +- a proxy server. If the secret is defined then `proxyUser` and +- `proxyPassword` are ignored ++ a proxy server. When the secret is defined, the `proxyUser` and ++ `proxyPassword` are ignored. + type: string + proxyURL: +- description: URL (protocol+hostname) of the proxy server. This drives +- the appropriate changes in the `JAVA_OPTS` and `https(s)_proxy` ++ 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). ++ 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). ++ a proxy is required. See also the `proxyURL`, `proxyPassword` ++ and `proxySecret` fields. + type: string + selfSignedCert: +- description: Deprecated. The value of this flag is ignored. Che +- operator will automatically detect if router certificate is self-signed. +- If so it will be propagated to Che server and some other components. ++ 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 ++ 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 ++ description: Overrides the CPU request used in the Che server deployment + In cores. (500m = .5 cores). Default to 100m. + type: string + serverExposureStrategy: + description: Sets the server and workspaces exposure type. Possible +- values are "multi-host", "single-host", "default-host". Defaults +- to "multi-host" which creates a separate ingress (or route on +- OpenShift) for every required endpoint. "single-host" makes Che +- exposed on a single hostname with workspaces exposed on subpaths. +- Please read the docs to learn about the limitations of this approach. +- Also consult the `singleHostExposureType` property to further +- configure how the operator and Che server make that happen on +- Kubernetes. "default-host" exposes che server on the host of the +- cluster. Please read the docs to learn about the limitations of +- this approach. ++ 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. +- In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). Defaults +- to 1Gi. ++ Defaults to 1Gi. + type: string + serverMemoryRequest: + description: Overrides the memory request used in the Che server +- deployment. In bytes. (500Gi = 500GiB = 500 * 1024 * 1024 * 1024). +- Defaults to 512Mi. ++ deployment. Defaults to 512Mi. + type: string + serverTrustStoreConfigMapName: +- description: Name of the config-map with public certificates to +- add to Java trust store of the Che server. This is usually required +- when adding the OpenShift OAuth provider which has https endpoint +- signed with self-signed cert. So, Che server must be aware of ++ 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 (and are put) on +- the configmaps representing the gateway configuration. ++ 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 defaut container image provided by the operator. ++ 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 defaut container image provided +- by the operator. ++ 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 may cause +- malfunction of some Che components. ++ 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 ++ description: Use internal cluster SVC names to communicate between + components to speed up the traffic and avoid proxy issues. The +- default value is `true`. ++ 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 , and placeholders (e.g.: +- che-workspace-). In that case, new namespace will be +- created for each user (or workspace). Is used by OpenShift infra +- as well to specify Project' ++ description: Defines Kubernetes default namespace in which user's ++ workspaces are created if user does not override it. It's possible ++ to use ``,`` and `` placeholders, ++ such as che-workspace-. 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: +@@ -735,24 +727,24 @@ + properties: + postgresPVCStorageClassName: + description: Storage class for the Persistent Volume Claim dedicated +- to the Postgres database. If omitted or left blank, default storage +- class is used. ++ to the PosgreSQL database. When omitted or left blank, a default ++ storage class is used. + type: string + preCreateSubPaths: +- description: Instructs the Che server to launch a special pod to +- pre-create a subpath in the Persistent Volumes. Defaults to `false`, +- however it might need to enable it according to the configuration ++ 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` ++ Defaults to `1Gi`. + type: string + pvcJobsImage: + description: Overrides the container image used to create sub-paths + in the Persistent Volumes. This includes the image tag. Omit it +- or leave it empty to use the defaut container image provided by +- the operator. See also the `preCreateSubPaths` field. ++ 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. +@@ -762,7 +754,7 @@ + type: string + workspacePVCStorageClassName: + description: Storage class for the Persistent Volume Claims dedicated +- to the Che workspaces. If omitted or left blank, default storage ++ to the Che workspaces. When omitted or left blank, a default storage + class is used. + type: string + type: object +@@ -772,51 +764,51 @@ + properties: + cheClusterRunning: + description: Status of a Che installation. Can be `Available`, `Unavailable`, +- or `Available, Rolling Update in Progress` ++ or `Available, Rolling Update in Progress`. + type: string + cheURL: +- description: Public URL to the Che server ++ description: Public URL to the Che server. + type: string + cheVersion: +- description: Current installed Che version ++ description: Current installed Che version. + type: string + dbProvisioned: +- description: Indicates if or not a Postgres instance has been correctly +- provisioned ++ description: Indicates that a PosgreSQL instance has been correctly ++ provisioned or not. + type: boolean + devfileRegistryURL: +- description: Public URL to the Devfile registry ++ description: Public URL to the devfile registry. + type: string + gitHubOAuthProvisioned: +- description: Indicates whether an Identity Provider instance (Keycloak +- / RH SSO) has been configured to integrate with the GitHub OAuth. ++ 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 can point to some URL where to find help related ++ 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 +- / RH SSO) has been provisioned with realm, client and user ++ 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 / +- RH SSO). ++ 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. ++ Pod is in this condition. + type: string + openShiftoAuthProvisioned: +- description: Indicates whether an Identity Provider instance (Keycloak +- / RH SSO) has been configured to integrate with the OpenShift OAuth. ++ 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 ++ 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. ++ the Pod is in this state. + type: string + type: object + type: object diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.v7.26.0.clusterserviceversion.yaml b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.v7.26.0.clusterserviceversion.yaml new file mode 100644 index 000000000..385ff7aa3 --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.v7.26.0.clusterserviceversion.yaml @@ -0,0 +1,1324 @@ +apiVersion: operators.coreos.com/v1alpha1 +kind: ClusterServiceVersion +metadata: + annotations: + alm-examples: |- + [ + { + "apiVersion": "org.eclipse.che/v1", + "kind": "CheCluster", + "metadata": { + "name": "eclipse-che" + }, + "spec": { + "auth": { + "externalIdentityProvider": false, + "identityProviderAdminUserName": "", + "identityProviderClientId": "", + "identityProviderImage": "", + "identityProviderPassword": "", + "identityProviderRealm": "", + "identityProviderURL": "", + "oAuthClientName": "", + "oAuthSecret": "" + }, + "database": { + "chePostgresDb": "", + "chePostgresHostName": "", + "chePostgresPassword": "", + "chePostgresPort": "", + "chePostgresUser": "", + "externalDb": false, + "postgresImage": "" + }, + "metrics": { + "enable": true + }, + "server": { + "allowUserDefinedWorkspaceNamespaces": false, + "cheClusterRoles": "", + "cheFlavor": "", + "cheImage": "", + "cheImageTag": "", + "cheWorkspaceClusterRole": "", + "devfileRegistryImage": "", + "gitSelfSignedCert": false, + "nonProxyHosts": "", + "pluginRegistryImage": "", + "proxyPassword": "", + "proxyPort": "", + "proxyURL": "", + "proxyUser": "", + "serverExposureStrategy": "", + "serverMemoryLimit": "", + "serverMemoryRequest": "", + "serverTrustStoreConfigMapName": "", + "singleHostGatewayConfigMapLabels": {}, + "singleHostGatewayConfigSidecarImage": "", + "singleHostGatewayImage": "", + "tlsSupport": true, + "useInternalClusterSVCNames": true, + "workspaceNamespaceDefault": "-che" + }, + "storage": { + "postgresPVCStorageClassName": "", + "preCreateSubPaths": true, + "pvcClaimSize": "1Gi", + "pvcJobsImage": "", + "pvcStrategy": "common", + "workspacePVCStorageClassName": "" + } + } + } + ] + capabilities: Seamless Upgrades + categories: Developer Tools, OpenShift Optional + certified: "false" + containerImage: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + createdAt: "2021-02-10T17:05:30Z" + 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.0 + namespace: placeholder +spec: + apiservicedefinitions: {} + customresourcedefinitions: + owned: + - description: The `CheCluster` custom resource allows defining and managing + a Che server installation + displayName: Eclipse Che Cluster + kind: CheCluster + name: checlusters.org.eclipse.che + specDescriptors: + - 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. + displayName: TLS support + path: server.tlsSupport + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:booleanSwitch + statusDescriptors: + - description: Status of a Che installation. Can be `Available`, `Unavailable`, + or `Available, Rolling Update in Progress`. + displayName: Status + path: cheClusterRunning + x-descriptors: + - urn:alm:descriptor:io.kubernetes.phase + - description: Public URL to the Che server. + displayName: Eclipse Che URL + path: cheURL + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: Current installed Che version. + displayName: 'displayName: Eclipse Che version' + path: cheVersion + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: A URL that points to some URL where to find help related + to the current Operator status. + displayName: Help link + path: helpLink + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: Public URL to the Identity Provider server, Keycloak or RH-SSO,. + displayName: Keycloak Admin Console URL + path: keycloakURL + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: A human readable message indicating details about why the + Pod is in this condition. + displayName: Message + path: message + x-descriptors: + - urn:alm:descriptor:text + - description: A brief CamelCase message indicating details about why the + Pod is in this state. + displayName: Reason + path: reason + x-descriptors: + - urn:alm:descriptor:io.kubernetes.phase:reason + - urn:alm:descriptor:text + version: v1 + description: | + A collaborative Kubernetes-native development solution that delivers OpenShift workspaces and in-browser IDE for rapid cloud application development. + This operator installs PostgreSQL, Keycloak, and the Eclipse Che server, as well as configures all three services. + + ## How to Install + + Press the **Install** button, choose the upgrade strategy, and wait for the **Installed** Operator status. + + When the operator is installed, create a new CR of Kind CheCluster (click the **Create New** button). + The CR spec contains all defaults (see below). + + You can start using Eclipse Che when the CR status is set to **Available**, and you see a URL to Eclipse Che. + + ## Defaults + + By default, the operator deploys Eclipse Che with: + + * Bundled PostgreSQL and Keycloak + + * Per-Workspace PVC strategy + + * Auto-generated passwords + + * TLS mode (secure routes) + + * Regular login extended with OpenShift OAuth authentication + + ## Installation Options + + Eclipse Che operator installation options include: + + * Connection to external database and Keycloak + + * Configuration of default passwords and object names + + * PVC strategy (once shared PVC for all workspaces, PVC per workspace, or PVC per volume) + + * Authentication options + + ### External Database and Keycloak + + To instruct the operator to skip deploying PostgreSQL and Keycloak and connect to an existing DB and Keycloak instead: + + * set respective fields to `true` in a custom resource spec + + * provide the operator with connection and authentication details: + + + + `externalDb: true` + + + `chePostgresHostname: 'yourPostgresHost'` + + + `chePostgresPort: '5432'` + + + `chePostgresUser: 'myuser'` + + + `chePostgresPassword: 'mypass'` + + + `chePostgresDb: 'mydb'` + + + `externalIdentityProvider: true` + + + `identityProviderURL: 'https://my-keycloak.com'` + + + `identityProviderRealm: 'myrealm'` + + + `identityProviderClientId: 'myClient'` + + + #### Self-signed Certificates + + Eclipse Che uses self-signed certificates by default. + + You can also manually create a secret: + + + + ``` + oc create secret generic self-signed-certificate --from-file=/path/to/certificate/ca.crt -n=$codeReadyNamespace + ``` + displayName: Eclipse Che + icon: + - base64data: iVBORw0KGgoAAAANSUhEUgAAANMAAAD0CAYAAAABrhNXAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAaNklEQVR42u3de3QU9dkH8O/zm91EQK0U77dqVdTW++1V20KigUSQahLjsSSbtp4eeqqVLHILCcoiyQZEIbF61B6PVQJ6XiOkr6TlYiABr603wHotar1bBUWUYDY787x/JIGoSchmZ+c3M/t8/iS7M8+M5+vs7szz/IiZIYRIntJdgBB+IWESwiYSJiFsImESwiYSJiFsImESwiaBvv5ARLprEwB4ddaJTBQF8w/JsKbQmI0v665JAL3dUqK+7jNJmPTiNWOHWYhNB1AOILPrn+MA369MazaNe+Iz3TWmMwmTB3AEyrwwu4SIbwVwWB+v+hxEt6gg7qLs1rjumtORhMnlePUlF5hk1RFw4QDf8rrFmBLMa12tu/Z0I2FyKV53yVGWyTVgLgGQ8IknoImMQBnlNL+t+1jShYTJZXjlhKFW8KsbQJgNYP8ktxYDcI8yh95E41bt1H1sfidhcpH4mtETCHQHgONs3vTHAEXUMy33UQSW7uP0KwmTC/DqS84xyaol4Bcp3tULiqiMxrY8pfuY/UjCpBG3ZB1sxfgmgK4HYDi1WwI9SnGaTuPXv6v7HPiJhEkDfv7coPX5AdeB+RaADtRURRtAC9UB7Qvo4md26z4nfiBhcljH6qwcRbgDwKm6a+nyATNVGrkt9USQrtAkSJgcwquyT2ZlLWLQON219FofsMEghGls6ybdtXiVhCnFuOnnw62gEQHoOvTz3KM7sAVSy5RS0yln3X91V+M1EqYU4ZasgBWjawGuAnCI7noStAOM+coaUkvjVrXrLsYrJEwp0LHmkksUrFoAp+uuJSnMbzLR1EBua5PuUrxAwmSj7tYIBhfprsVOBDQTU5jyWl7RXYubSZhs0KM1YiaA/XTXkyIdAN+tMmgOZbfu0F2MG0mYksAMMtdkh4h4AYDDddfj0FF3tnrsOOROurrB1F2Nm0iYBolXjT7fVFRHwEW6a9FkkyIK09iWDboLcQsJU4KSbY3wGwKaCNZkyt34ju5adJMwDRA/fdEQa2fmZBAqARygux536Wr1+CY+m6546ivd1Wg7CxKmfUtha4TP8EeAmpuurR4Spn7w46PONi2qJdAo3bV4CROeM1iFKXf907prcfS4JUzfx82XjrDM+M0Ot0b4TWerB8yplLvxfd3FOHLAEqYeJ2NPawTmAviB7np8YheA21QG5lN26ze6i0klCVOXjtVZOUpxHZh+orsWn3qfmWYH8lqW6C4kVdI+TLwq+2Q2+HZmjNddSzogoIUsI0yXrduiuxa7pW2YuOnnw62MwEwwTwEoQ3c96aWr1SMen+qnKbRpF6a901GthQAdqrueNPcFGAvUzkMW09UNMd3FJCutwtSxenS2ItQCdIbuWsS3vMFENwbGtvxddyHJSIsw8ZpRx1hkVIM5pLsW0TcCmsk0ymjculd11zIYvg5TmrRG+E1nq4cK3kxjmr/UXUwifBkmZpD5+OiriHEbQMfqrkcMynYQ5nmp1cN3YepsjUAtgS7WXYuwA7+oGGHK2/CE7kr2WalfwsRrxxxpcWwOgN8BJEuJ+gwBTWThBrqs9T+6a+mL58PEjxRlWAd99gcw5kFaI3yO20D0JxVEFWW3fq27mu9V5+UwdbVG1AE4XnctwlEfMlOF26bQejJMvDbrLJNRS8Bo3bUIfRj8T0NRGY1pfVZ3LYDHwsSrc39o0TdzpDVC7OWeKbSeCFOP1ogIgIO0FCHcrrPVwxxSo2sKrevD1LVqRC2Anzq+c+FFW5m4IjB2Q4PTO3ZtmLj50pFsmrczcLnTJ0V4HzHWESFMua3/cmqfrgsTt2QdZHWgHIwwgEynToTwpTjA96sMqqTs1m2p3plrwiStESJ1uqbQBnEXZbfGU7YXN4SpY1VWllKoBXBmqg5UCACvW4wpwbzW1anYuNYw8d+zjrYCFJXpqMJJBDSRESijnOa37dyuljDxyglDrYyvZkBaI4Q2XVNozaE30bhVO23ZopNhktYI4UIfAxSxYwqtY2HitVnndT0C9DOHT5YQA/GCIiqjsS1PDXYDKQ8Tr/7FERapCKQ1Qrhf5xTaOE2n8evfTfjNqQrT3tYIvgWgA3WfJSEGjtsAWpjoFNqUhKmzNQK1AP1Y92kRIgkfMFPlQFs9bA0TPz7qVLbUIgbydJ8FIezChFbDojDltWzu93V2hElaI4T/dbV6cHAa5a79tNdXJBMmbskKWDG6FszVIBys+3CFcMAOMOYra0jtd1s9Bh2mjrXZlyrmWgCn6T46IRzH/CYTTQ3ktjbt/acEw8RrR53EbFQzuEj38QihGwHNxBSmvJZXEgqT9Xj2bWC+QVaNEKInjoFQpca0zvvuXwJ9vwdT5XlUIXpiC6T+Vyn1597+Gkh0c0KkIwb+YUCV0diWfwBAbx/oJExC9G/AN3MlTEL0qudE2ZYBTZSVMAnxHQQ0Udz4Y6IPwEqYhNiDX1SdU2OfHMy7pU1CCMY2EMLqy0MvGGyQALkyifTWuXKhNfQmyku+nV3CJNISAc2krMk0ZuNrdm1TwiTSzRtMdKORgtXeJUwiXXwBwtzO4ZQtKRlOKWESftc5Ntm0ZtO4Jz5L5Y4kTMK3CLyerMAUumzdFif2J2HyBu58GkwmPg3QW8w01chr/T8ndyr/cVyPX1QKoxTUBcwY9D2QNLELwFyVgdMCeS2OBgmQK5N7MbZBoUrtOPROurrBBABmjDIfH30VgRaC8SPdJboIg2ip6uAZNL71E11F9N0cuDbbNStbp5nOG4n9zMXuMb99BoAhugvWiQnPGSaX0WUbnnF0vwl12kqYHEdAE5kqTOPWvzWQ16f5yiIfMlPFQOfc2U3C5F5vMHhKIHfDqsG8mddmj7Y6B96cpftAHLAbhDvU7o5quuKpr3QVIWFynx43EpNb5W7vaox8K4DDdB9YKhDQRLAmU+7Gd3TXImFyj5TdSOSWrP2tGKYBKIdf1glmvKRIhSl3/UbdpewpScKkH4HXk+Iwjdn4cir345MxbdtBmKd2HLLnF023kDDptZWJKwJjNzQ4udOO1Vk5ilAL4Ke6T0AiZQN8t1LBm2lM85e6i+mNhEmPXQBuS3TJEjvx8+cGre0H/tYLo617DnrUXUt/JEzOcsWNxG8V5OZFF3oZQexmEiaHMPifhoWw0zcSB1zf46NOZVMtZkKu7lrQPRx/5yGL6eqGmO5iBkrClHpabyQmqnOhOqoDcLzze9/3si1u1ltu5EFXe+wGYYHKwCmBvJYlXggSAARyN6xUXx5yCghhAI7dAGVCq2J1jjG2pdSLQeqLXJmSREATWbiBLmv9j+5aksFrxxxpcWwOUru49/vMNNsrV+7+yMc8OzFeUuAyytvwhO5SbD2stVnnmcx1BLrYxq0OahFmN5Mw2cO1NxLtwgwyHx99FTFuA+jYZDZFoEdJGdNoTPN7uo/LThKm5Lj+RqLdeM3YYRZi0wHMBLBfQu8FnjeIwjS25Sndx5GScyNhGhwCmsk0ymjculd116IDrxl1jEVGNZhDA3j5xwBF1DMt91EElu7aU3ZOJEwJe4OJbgykYMaaF3WsHp3d+WgSnfH9v3IMwD39NTX6iYRp4L4AY4HXbiQ6YW+rh7UQoEOBrl80jUAZ5TS/rbs+x86DhGmf4gD/WRmBmyln3XbdxbhZ56NJ7dMtqMeDuevX667H8eOXMPWNgBayjLBTM9aEt/WWG5lO1H0jMa9lie5ChLelc5h6tEa0+OJGotArHcPUeSMR5lTK3fi+7mKEf6RVmJjwnMEqTLnrn9Zdi/CfNHlqnD8C6PfG060XSpBEqvj9ytQ1Yy2udcaaSA++DdOeGWtj9c9YE/4RiUTUlreCpQAe+O7f/BimTQqqzE0z1oQ/FBTXnL9lK2oBvhg+D5PvWyOEHr+8ZsGRgUB8DsC/Qz+/M/ghTGnXGiGcUVS0aEg8s30ywawE6IB9vd7TYdo7Y63V1TPWhPcUhqommPxNHSUwbMabYeqasWZ4ZMaa8I4rJ1afpRTqmGlUou/1Wpg6Z6xZQ2tp3Kp23cUI/ygqivzQysiYw4RBD+j0SJh6zFjL889oKKHfpEn3Bre3bbvOBEUAHJTMtlwfJia0GpYKU27LZt21CH8pLK3J2bZrey2IbFnUwM1hep+ZZgdypTVC2Cu/NDpSMW5niy+3c/FSF4ap54w1aY0Q9rnyN5GDjHiwnC2EOQULwbkpTF0z1gK+m7Em9IpEImrz1mAJxelWTuESpa4Ik99nrAl98kPR0Vu2oo6AM1O9L81h4o8ANdfw+Yw14byC4gVHA2YUjBLAzm9GfdMSprhF2PThwZvf3Tli/NU33vOhjhqEP02YFBkabAvOAMwZAIY4uW/Hw/TCB4fgL8+fgv9+NeRMAM8Vhmoip5/Qfl8kEpErk0gCU35o/lXUxgsB/EhHBY6N+vrgy/3xwPMnY/NHI3r78/NghFcsq5DvTCJhV06sOVcprgPwM6f2ubx+1vc+Oqb8yvR1ewANL5+I1a8fA4v7/Oh6HghPFJZEH1VKTWtYUi6/5ol9KiipPgJAZF+tEU5J2ZXJtAgtbx2FhzediJ3fZCTy1jaAFx4Y6Jj/wAMRuc8kvqeoKJJhZQb/YIFuIeBAHTX0dmVKSZpf/mQEZvztItz77E8SDRIADAVozs54xr/zS6pLAXbklxjhDYWhqglmZsZrDKrVFaS+2Hpl+njnUDy86UQ88+7hthXIQCugwo1Ly+XZvDRW+KvoKWxgMYA83bUAKfzO9E2HgZWvHYfGl49Hh2XvxY6ALMB6saA4uoxVcFpj/XR5ajyN9GiNuA7a74v2L6krEwN44p0jUf/CSOzYnfDHucHYwaD53wwfVrvqT5Oln8nHsrIigRHHZF7LbFUDdLDuer7L1u9M/972A1Su+h/86cnTnAoSABxE4PlDvvh6S35x9HKndiqcdVVx9aUjjs54kZnvdWOQ+pLwZXN72354+KWTsPGdw8H6fhsYSYSVBcXRZgqo8PIHy2UGhA8UldScaIGjFlCku5bBGHCY2k2Fx145Hn995TjE4oPq6rUfIYdN66XC4ujdZjA2568PRHboLkkkLhRaOGwXx6ab4HKkoDXCKfv8zsRMePa9w1D/wkh8tiuhBbcdPhJ8Tsy3qPaT7mxouFrm5nkCU35JNESgBQDs+wnYAb19Z+o3TG9tPxAPPn8yXvt0uO7aE8CvEWHK8vrKNborEX27cmLVBUoZdQBfqLuWwUjop/G7nj4NG946AuzM0+s2olOZsbowFG1SMCc31N8ks8ZdpKi06ijTVDUglPjthnyfYWp960jdtSWFGZebMMYWFkfv6cg0Zj92/0xZBUOj7umopsWzQdhfdz2poP3hwBTLYMLkQMx8vTBUMykSifj9eF2pMFQ1wcz45lUCzwf8GSTA/2HqdiQz37tla8azV5VUXay7mHRRUFJ9Tn5JdCOzegyE43TXk2qufjwjBc63oJ6UVo/Uyi+NjlAmbmbgehrkdFQvSrcwAQAxUGRa1riCkurbpNXDPt3TUdnCXCb8QHc9TkuXj3m9GQbQnJ1mxpudrR4iGYWlNTmftW3fxKBaIP2CBKTnlenbGMcQ6MGCUPQ3RBxevqRyi+6SvKSoZN7JJoxFbPE4X/3OPQgSpm6MbGZ6SVo9Bmb8xJrh+ylrpgmaAsCxJ53dTML0bQqEkOKOy/NLahYE2tsXNzREYrqLcpM901HBCxl0qO563CSdvzP1iYHhBJ5vZma8XFBSPV53PW5RMLE6e8vWjJcI9CAACdJ3yJWpfyMBaioojjYbQFnDsopXdRekwxXXVB1jGKoahJDuWtxMwjQQhBwT2FRYHL1bxdTNDQ3labEQdXdrBEAzAbi4ZcAd5GPewAWZMNnMtN4qLKkuKyp6xMc3I5nyQzVFu7jjVYDmQII0IBKmxI1gUK2ZufW5gonzE15E2O0KimvOLyiZ/yQxPwLgWN31eIl8zBu8s6GsDX5p9fjlNQuODATic9wyHdWLJExJ6mr1uLSwpPqOjoxAtddaPbqnozLMeQAdoLseL5P/A9ljCINmBmLma16aQts1HfX1rkeAJEhJkiuTvY4i0IMFJTV/ZBUta1xS8YzugnqTH1pwKlnmYmbk6q7FTyRMqXE+WXiqoDi61AgGZjQ8MOMT3QUBPaajsnk9KH1aI5wiYUodAiFkxuMFuls9Jk26N7h99+e/NdmqBuCZoY5eI9+ZUm9Y16oeL+eHahwfrlhYWpOzbdf2l7w2HdWL5MrknBOJ+ZGCkuh6Ujwl1a0ehRPnnQTDWMQWX+65AVMeJWFy3iVs0QsFJdX3G0Ga3fCXis/s3PiVv4kcZMSD5QwKg707HdWLJEx6BACaZHWgyK5Wjz2tEXG6lYHDdB9gOpLvTBp1t3rEMzO3FIai4wa7nfxQdPTLWzNe6GqNkCBpIlcmFyDwycz4W0FxtJmVMbmxfuZrA3lfQfGCowEzCkYJQ74Z6SZhchNCDrG5ubA4encbYjetWhbZ2dvLJkyKDA22BWcA5gwAQ3SXLTrJxzz3CTJh8hAK9tLq0dkaEWzL6G6NkCC5SJ+rYBSGahJeIFqkxIsKCMctalOK6wD8THdBIoULRIuUOscCNijFDPkk4WoSJm8gyA8Mrif/pxPCJhImIWwiYRLCJhImIWwiYRLCJhImIWwiYRLCJhImIWwiYRLCJhImIWwiYRLCJhImIWzSd5iIbgcgS1AK8W2xrmx8T59hWlE/axpZ5mkENOiuXghXYDSToc5ZUT9rWm9/7rM5kGjvE/9XFVdfahHVAjhN9/EIocGbAN+4Ymnl37r/obfcDChMAJCVFQmMOCbzWmarWiaDijSxg0HzexvFllSYuu0Z/k64DtJcKPzJAmMZq+C0xvrpn/b2AlvC1K3wV9FT2MBiAHm6j1wIuzDQCqhw49Lyzf2+zs4wdSsMVU1gVrUAfqz7RAgxaIT3mXl249LKJQN5eW+5Sfo+0/L62SuN9tipBA4zsDPZ7QnhsDaA5x5oxEYONEh9SfrK1FNBSfURACIAySLDwu2YgEeVUtMalpS/l/CbU/ExrzdXTqw5V2a8CRd7HozwimUVTw12A46FqWt3lB+afxUxLwTwIyfPlBB9+JiIIqef0H5fJBKxktmQw2HqtHcuNslcbKFLjBj39De/PVFawtRtz4oNhBLIQEXhECI0waSy5Q/NetvO7WoNU7f8UHQ0MeoAnJmSHQgBAITXmWlK49JZq1Ox+ZT8NJ6oxvqKDWecGDuHwb8G8F+n9y98jvA5gcOfvx87PVVB6nPXTl+ZevrW+quQ9VdFUuIA399hZlaufHjatlTvzBUf83qTXxodqRi3M+Nyx3YqfIOBdSAON9ZX/suxfbo1TN0KS2ty2ORaEH7q+M6FB9G/mVDZWD/L8Z47V3xn6s/yJbOaDx424mwi+j3AKb9UC8/6GuC5u4cPO11HkPriqitTTz1aPa4HYCS9QeEHFhjL4hZPf+zhSq0/Xrn+Y15v8kMLTiXLXAxCru5ahEaEf8KyylYsm/2s7lIAj4apW1erRx2A43XXIhz1IYMrGpdW1APkmnWWXf+dqT9drR6nEDgM4Cvd9YiUayPwAqM9dkpna4R7gtQXz1yZevrlNQuODATic6TVw5+I0GQadMNfH5j1H9219MXTH/N6UxiqOo/ZqAP4Yt21CFu8qIDwo0srntBdyL74Lkxdh9Xd6nEbgGN1VyMGg7cRUKXaT7qzoeFqU3c1A6rYn2HqFAotHLaLY9MBmglgP931iAHpIMbddrZGOMXXYep2xTVVxxiGqgYhpLsW0Q9GMytjcmP9zNd0lzKo8tMhTN0KJlZnQ1EtgDN01yL2YtAbivjG5fUVf9ddS1LH4eWfxhO14qHKljNOjJ3d1erxadIbFEkh4AsGlQfa28/wepD6PEa/Xpl66tHqMQVAhu560owFxjIjA1Mb/lLxme5i7JJWH/N6k18aHUkWLQJ4vO5a0gKhhYjDy5dUbtFdit3SPkzdCktrciyL6wj4ie5afOo9Bt+U7FBHN0ur70z9Wb5kVvMhQ0ec1fVo0pe66/GRXQDPPTAQO9nPQepLWl6ZesovjY5QJm6WVo+kMBhLjWBgRsMDMz7RXYwjBywf8/pWWFpzNltWLUCjdNfiMc+xQlnjkopndBfiJAnTAEirx4B9xOBZbmuNcIqEaYCKihYNiWe2TyZwJYADdNfjMrsJfEdHRqD6sftnpm0rjIQpQUWlVUeZpqqRKbSdiNCkYE5uqL/pHd216CZhGqSC4przAa4D4SLdtWjyEiwVXvFQ+UbdhbiFhCkpTPkl0RCBFgA4XHc1DtlO4Hleao1wioTJBmnS6tFBjLtVTN3c0FAu9+F6IWGy0ZW/nneCYRo1DBTprsVWjGYKqPDyB8tf0V2Km0mYUiA/VHMJMS+G91s93mTG1MZlFU26C/ECeZwoBRrrZ63v0erhxaeidzCofPfw/c+QICVHrkw2Gj+xZvh+yprpkVYPC4xlrILTGuunS79XguRjnkOKSuadbMJYBGCc7lp6w0AroMKNS8s3667FqyRMDissrclhy7oDoFN119LlAwZXpusjQHaS70wOW75kVvPBQw8+0wWtHm1drREneWU6qhfJlckhmlo9mIBH2bKmr3ho9ru6z4GfyMc8FygoqT6HQbUE/CKV+yHCC2yhbMWyiqd0H7MfSZhcpDBUNYEtdQcIx9m86Y+JKHL6Ce33RSIRS/dx+pWEyWUmTIoMDbRl3kDg2QD2T3JzMWLc48XpqF4kYXKpZFs9iNAEk8qWPzTrbd3Hki4kTC535cSqC5Qy6gC+cEBvILzOTFMal85arbv2dCNh8oQBtHoQPifmW7Z/0HFXa2skrrvidCRh8pAerR7lADK7/jkO8P0dZmblyoenyWr0GkmYPKhw4ryTYBiL2EKQlTHFq6tG+E1CYRJCJEYeJxLCJhImIWwiYRLCJhImIWwiYRLCJv8P9sXhC7xE4kIAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTktMDQtMTNUMDg6MTY6MDgrMDI6MDCcYZVaAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE5LTA0LTEzVDA4OjE2OjA4KzAyOjAw7Twt5gAAAABJRU5ErkJggg== + mediatype: image/png + install: + spec: + clusterPermissions: + - rules: + - apiGroups: + - oauth.openshift.io + resources: + - oauthclients + verbs: + - create + - get + - delete + - list + - patch + - update + - watch + - apiGroups: + - config.openshift.io + resources: + - infrastructures + - oauths + - proxies + verbs: + - get + - list + - watch + - apiGroups: + - user.openshift.io + resources: + - users + verbs: + - list + - apiGroups: + - console.openshift.io + resources: + - consolelinks + verbs: + - get + - list + - create + - update + - patch + - delete + - apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterrolebindings + verbs: + - list + - create + - watch + - update + - get + - delete + - apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterroles + verbs: + - list + - create + - watch + - update + - get + - delete + - apiGroups: + - authorization.openshift.io + resources: + - roles + verbs: + - get + - create + - delete + - apiGroups: + - authorization.openshift.io + resources: + - rolebindings + verbs: + - get + - create + - update + - delete + - apiGroups: + - rbac.authorization.k8s.io + resources: + - roles + verbs: + - get + - create + - delete + - apiGroups: + - rbac.authorization.k8s.io + resources: + - rolebindings + verbs: + - get + - create + - update + - delete + - apiGroups: + - org.eclipse.che + resources: + - checlusters + - checlusters/finalizers + verbs: + - '*' + - apiGroups: + - project.openshift.io + resources: + - projectrequests + verbs: + - create + - update + - apiGroups: + - "" + resources: + - namespaces + verbs: + - get + - create + - update + - apiGroups: + - project.openshift.io + resources: + - projects + verbs: + - get + - apiGroups: + - "" + resources: + - serviceaccounts + verbs: + - get + - create + - watch + - apiGroups: + - "" + resources: + - pods/exec + verbs: + - create + - apiGroups: + - apps + resources: + - secrets + verbs: + - list + - apiGroups: + - "" + resources: + - secrets + verbs: + - list + - create + - delete + - apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - create + - get + - list + - watch + - apiGroups: + - "" + resources: + - pods + verbs: + - get + - list + - create + - watch + - delete + - apiGroups: + - apps + resources: + - deployments + verbs: + - get + - list + - create + - patch + - watch + - delete + - apiGroups: + - "" + resources: + - services + verbs: + - list + - create + - delete + - apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - create + - delete + - list + - apiGroups: + - route.openshift.io + resources: + - routes + verbs: + - list + - create + - delete + - apiGroups: + - "" + resources: + - events + verbs: + - watch + - apiGroups: + - apps + resources: + - replicasets + verbs: + - list + - get + - patch + - delete + - apiGroups: + - extensions + resources: + - ingresses + verbs: + - list + - create + - watch + - get + - delete + serviceAccountName: che-operator + - rules: + - apiGroups: + - "" + resources: + - namespaces + verbs: + - update + - list + - create + - get + serviceAccountName: che-namespace-editor + deployments: + - name: che-operator + spec: + replicas: 1 + selector: + matchLabels: + app: che-operator + strategy: + type: RollingUpdate + template: + metadata: + labels: + app: che-operator + app.kubernetes.io/component: che-operator + app.kubernetes.io/instance: che + app.kubernetes.io/managed-by: olm + app.kubernetes.io/name: che + spec: + containers: + - command: + - /usr/local/bin/che-operator + env: + - name: WATCH_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.annotations['olm.targetNamespaces'] + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: OPERATOR_NAME + value: che-operator + - name: CHE_VERSION + value: 7.26.0 + - name: RELATED_IMAGE_che_server + value: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + - name: RELATED_IMAGE_plugin_registry + value: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + - name: RELATED_IMAGE_devfile_registry + value: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + - 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:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + - 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 + value: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58 + - name: RELATED_IMAGE_che_server_secure_exposer_jwt_proxy_image + value: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033 + - name: RELATED_IMAGE_single_host_gateway + value: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + - name: RELATED_IMAGE_single_host_gateway_config_sidecar + value: quay.io/che-incubator/configbump@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + - name: CHE_FLAVOR + value: che + - name: CONSOLE_LINK_NAME + value: che + - name: CONSOLE_LINK_DISPLAY_NAME + value: Eclipse Che + - name: CONSOLE_LINK_SECTION + value: Red Hat Applications + - name: CONSOLE_LINK_IMAGE + value: /dashboard/assets/branding/loader.svg + - name: CHE_IDENTITY_SECRET + value: che-identity-secret + - name: CHE_IDENTITY_POSTGRES_SECRET + value: che-identity-postgres-secret + - name: CHE_POSTGRES_SECRET + value: che-postgres-secret + - name: CHE_SERVER_TRUST_STORE_CONFIGMAP_NAME + value: ca-certs + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUN3DMY3GMMBQMQZWMMTEMFTDANBWG42TMMJYMM2DAODFGA4GMMBRHFTDENLCHEYWKYZQHBSDENZZGA4TIZTEMRRDAMLGGU2TSNJQGJRA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRSGVTDSYRYMVSWMN3FGJQTOYLFMEZWKOBUGJSWKMJTGYZDMOJTGVRDSODGHE3DGMRXMY2WGNJWMI3GEYTGGQ4GENBZG42TIYZUGVSA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUYLFGUYTENDFGMYTSODBMM3DSNZXMNQTSNZTMFQWMNBYHA2WCMJUMU4DAMDEGY2DOYZZGZQTEM3EGE2WCMTCGZRGCYTCMU4GMZLGGJQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNRUGMYTCMRRGBSTOMJQMNQTCNRRGQ4DGOLGHA4TOMRYGVTGGMLEGM4WEMTDMEYTOMRRGVSDKNTDGE3DKZBQHEYWCYLGMQYTSYJRGRRA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUM3BGVTDCMRYMIZDCNZWGI2WGMRRGFTDMOLGMQZDENZXGMYDAYLFGYYTCZTDMY3WIYJSHA3WGMRXHA3GKNJSGJTDCM3BHAYWKZBXGAYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUOBWGE2WCMRZGQZTKYRQGI2TMYTGMZQWMOBVMFRDEY3GHEZTEN3CGA2TSZRRGRSWCYJWGYYTIMZUGZSGMZBVGFSTGYJWMRSDSZRQGQYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNJVG4YDGYLFGVTGCZLCMVSGKZJVGZTGIY3FGM4DOOLGMEZDEOBRMNRTENRQGQ4DQZBYME2DQODGMY3TOZLEGNSDIMDGG43TQZDEMY3Q____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBXGJTGENRZMMZDINBTMMYDSNLEHE2GKOJUMJQWKMZUGYYTOODBGQZDIOJVGIYTQOBSGZTDMYLBMVQTQYTGGY4DOYRSMIYTKYJQG5QQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBZGVRTENBQGU2TAMZTMUZDCOLEGVQTSZRWMZSTSOBTGVRDOOLDGVSDGNBRGZTDAZDGMJRDEMRYMQZDSNJXGEZWKOBRMQZDOYZWGYYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJWGQYGMOJVGAYWMOLBMUYWKM3DHFRDENZWMU3DEMBQME2WGM3BMJRTCMJVMEZTMYRSMMYGMZDEGZRTANRVGNSTQZJRHFRWINJYMY3Q____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZDCHA3GGOJSGQYTQYRZMY2DAYRSGY2TIYRYMZRTINZTGA3TGNJWHFSTAZDDHBQTAMLEG5QWIYZTGFRTSOJSGVSTKNBWHFSDEYRRGE2A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_IBZWQYJSGU3DUZBTGYZGCMTCMRSWINZZGEZTINJQGZQTEM3GHFQTONZUHE4GMNLBG4ZDSN3EMY3GGYZZMEZTGOJRGQ2DOZDBHBSTCYTBG42GKYRWME2Q____ + value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBYGAZDKZLBMRRTENJZGQYTIMDFG43WINLEMJSWGNLEGY2WCZRYMVRTQNJRGJSTKMRWGY4TGNRXGQ2TSMRUMQ2TKZDEGQ3DONBYGJQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZJTG42GKYZTGY3TINBXMFTGKYJZMIYTEZRVME4GMNRWHEYGCNTGHE4TGNJSGY2DAODBGM3TGMLGGUZDEYJVGNSTKZBQMJTGGMRYG5TA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTDMI2GMNZQMVSGEY3EMFRDGYRSG44WIYLFGUZWENTBG42TGZBWGNTGKZJQGNRGGYLFGNSDEYJTHA2WKMRUMYZDKZJWHE2WGMBTMRTA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDGMRRDANBQGI3GGYTFMRSGEZTFGUZTCOBUMFTGGZBWMZRTKY3CGYYTGMTBGIZGEZJVHAYTAYRRGNSDGODBGEZDKYLGMQYDQMZSGIYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBZGFRTMMTBGNQWGNZXGVSDKNBSGZSDOMTBGU4WCYZRHBRGIZBVGBTDKZRVMQ3DCZBQG5TGEZTCGM2GKMDDMQ3WMZLEGNSDIZDBGIYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTCHFRTOMZZMY2DQNZXGM4GCNLCMZRDEMDFGA2TEYJSGFRDIZLEMZTDIMRYHFRTOMZYGQ4TMNZQHBQWEZRYMFSGGNDEGU4DEMDEG44Q____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTEGBRTINBQME3WIYZWGQ4DQMJWMZRWINBYHA2WEOLDMM4DKZRQMVRDAZRTHEYTMNJZMJRDSZTDHBQTSMJSGMYDONLCMVQTONJRGY2Q____ + 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_IBZWQYJSGU3DUMJWGY2DEZLDGBQTIOBYGQ4DIYRXGBSWCZLBGJRDINLGGM4TSZRUHBRTAMRSMZSWCNLBMVSTCZRRGM2WCYZXMNRTANRYMQ2TGNTDMM3Q____ + value: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUZBXGUZTMMRTGY2TQZBWMNSWKNJZGQZTKNZXMIYTMZTGG4YTAMBUMM3WENBVHBSGEYLFGM3TKZLCMNRTAZTFMZSWEOLFMRQWKZLEGQ2A____ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + - 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____ + value: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + - name: RELATED_IMAGE_che_editor_intellij_community_plugin_registry_image_IBZWQYJSGU3DUMRZGAZDKZDCHA2TSMRWHBTDKZDDMYZDCYTBGZSWENDFGI4DINZUGRRDKM3DHEZGINTEGIZTKMJUMU2TMNLBGAZDCMJWGA3GMNRYGYZQ____ + value: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + - name: RELATED_IMAGE_eclipse_broadway_plugin_registry_image_IBZWQYJSGU3DUNJXMM4DEY3EHAYDMYJVGZTDMOLBME4DMNRTMY3DQNBQGVSDANZXHBRDMMRYMEZDSYJWGRTGEMJWHA4DCYRRGFRWKOLGGQ4DIZDEME3Q____ + value: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + - name: RELATED_IMAGE_code_server_plugin_registry_image_IBZWQYJSGU3DUZLGGA3TEOBRGAYDIOJQHFRGEMTDGIZDQNBSGJSGMMTFHE4WCNLCME2WKNBVGBTGGZJXGU2DMYRYMZQTCOBWHA2TEZRSGNRGMNRXGUYQ____ + value: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + - name: RELATED_IMAGE_che_buildah_base_plugin_registry_image_IBZWQYJSGU3DUNBRG4ZDAM3EHA3DEOLFMRSDSMTGGE4DOYLGMQZWKYTCGNSDQZDDGI4DGMZYMQZTIOBQHFSWENZVMZTGGMTFGA4GCNBQGBTDQZBVGZRA____ + value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + - 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_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_IBZWQYJSGU3DUMZWMJSGGZJUGJRWEZTFMVSWEODBGE3TEZJRMMYTOZJRGU2TCZJWG42DAZJRG42TMNJWGBSDQNTDGRRDSNRTGY3DAYJSGRQWGMTCGJQQ____ + value: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + - 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_G4XDENROGA______ + value: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 + - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 + - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 + - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 + - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 + - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c + - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 + - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 + - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a + - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa + - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 + - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 + - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENROGA______ + value: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + - name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___ + value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + imagePullPolicy: IfNotPresent + livenessProbe: + failureThreshold: 10 + httpGet: + path: /healthz + port: 6789 + initialDelaySeconds: 15 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + name: che-operator + ports: + - containerPort: 60000 + name: metrics + readinessProbe: + exec: + command: + - stat + - /tmp/operator-sdk-ready + failureThreshold: 10 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 500m + memory: 256Mi + requests: + cpu: 100m + memory: 64Mi + securityContext: + capabilities: + drop: + - ALL + restartPolicy: Always + serviceAccountName: che-operator + terminationGracePeriodSeconds: 20 + permissions: + - rules: + - apiGroups: + - extensions + resources: + - ingresses + verbs: + - '*' + - apiGroups: + - batch + resources: + - jobs + verbs: + - '*' + - apiGroups: + - route.openshift.io + resources: + - routes + - routes/custom-host + verbs: + - '*' + - apiGroups: + - rbac.authorization.k8s.io + resources: + - roles + - rolebindings + verbs: + - '*' + - apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterroles + - clusterrolebindings + verbs: + - '*' + - apiGroups: + - "" + resources: + - pods + - services + - serviceaccounts + - endpoints + - persistentvolumeclaims + - events + - configmaps + - secrets + - pods/exec + - pods/log + verbs: + - '*' + - apiGroups: + - "" + resources: + - namespaces + verbs: + - get + - apiGroups: + - apps + resources: + - deployments + verbs: + - '*' + - apiGroups: + - monitoring.coreos.com + resources: + - servicemonitors + verbs: + - get + - create + - apiGroups: + - org.eclipse.che + resources: + - checlusters + - checlusters/status + - checlusters/finalizers + verbs: + - '*' + - apiGroups: + - metrics.k8s.io + resources: + - pods + - nodes + verbs: + - get + - list + - watch + - apiGroups: + - che.eclipse.org + resources: + - kubernetesimagepullers + verbs: + - '*' + - apiGroups: + - operators.coreos.com + resources: + - subscriptions + - clusterserviceversions + - operatorgroups + verbs: + - '*' + - apiGroups: + - packages.operators.coreos.com + resources: + - packagemanifests + verbs: + - get + - list + serviceAccountName: che-operator + strategy: deployment + installModes: + - supported: true + type: OwnNamespace + - supported: true + type: SingleNamespace + - supported: true + type: MultiNamespace + - supported: false + type: AllNamespaces + keywords: + - workspaces + - devtools + - developer + - ide + - java + links: + - name: Product Page + url: http://www.eclipse.org/che + - name: Documentation + url: https://www.eclipse.org/che/docs + - name: Operator GitHub Repo + url: https://github.com/eclipse/che-operator + maintainers: + - email: dfestal@redhat.com + name: David Festal + maturity: stable + provider: + name: Eclipse Foundation + replaces: eclipse-che-preview-openshift.v7.25.2 + version: 7.26.0 + relatedImages: + - name: che-operator-7.26.0 + image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + # tag: quay.io/eclipse/che-operator:7.26.0 + - name: traefik-v2.2.8 + image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + # tag: docker.io/traefik:v2.2.8 + - name: traefik-@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + # tag: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + image: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + # tag: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + - name: dirigible-openshift-@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + image: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + # tag: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + - 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 + - name: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + image: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + # tag: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + - name: che-editor-intellij-community-@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + # tag: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + - name: configbump-0.1.4 + image: quay.io/che-incubator/configbump@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + # tag: quay.io/che-incubator/configbump:0.1.4 + - name: configbump-@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + image: quay.io/che-incubator/configbump@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + # tag: quay.io/che-incubator/configbump@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + - name: che--centos--mongodb-36-centos7-@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + image: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + # tag: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + - name: che--centos--mysql-57-centos7-@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + image: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + # tag: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + - 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--centos--postgresql-96-centos7-@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + image: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: quay.io/eclipse/che--centos--postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + - name: che-buildah-base-@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + image: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + # tag: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + - 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:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 + image: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 + # tag: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 + - name: che-devfile-registry-7.26.0 + image: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + # tag: quay.io/eclipse/che-devfile-registry:7.26.0 + - name: che-devfile-registry-@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + image: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + # tag: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + - name: che-dotnet-2.2-@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 + image: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 + # tag: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 + - name: che-dotnet-3.1-@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 + image: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 + # tag: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 + - name: che-golang-1.14-@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 + image: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 + # tag: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 + - name: che-java11-gradle-@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 + image: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 + # tag: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 + - name: che-java11-maven-@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c + image: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c + # tag: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c + - name: che-java8-maven-@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + image: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + # tag: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + - 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.0 + image: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + # tag: quay.io/eclipse/che-keycloak:7.26.0 + - name: che-keycloak-@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + image: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + # tag: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + - name: che-machine-exec-@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + image: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + # tag: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + - name: che-nodejs10-community-@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 + image: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 + # tag: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 + - name: che-nodejs10-ubi-@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 + image: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 + # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 + - name: che-nodejs12-community-@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a + image: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a + # tag: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a + - name: che-nodejs8-centos-@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa + image: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa + # tag: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa + - name: che-php-7-@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + image: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + # tag: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + - 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-artifacts-broker-@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58 + image: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58 + # tag: quay.io/eclipse/che-plugin-artifacts-broker@sha256:4891a6e19be9eae59372f4b31144653f9bd1284e0301ecfe896a099ca6a12b58 + - 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-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.0 + image: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + # tag: quay.io/eclipse/che-plugin-registry:7.26.0 + - name: che-plugin-registry-@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + image: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + # tag: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + - name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + - name: che-plugin-sidecar-@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + image: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + image: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + - name: che-plugin-sidecar-@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: che-plugin-sidecar-@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + - name: che-plugin-sidecar-@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + image: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + - name: che-plugin-sidecar-@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + image: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + - 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-plugin-sidecar-@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + image: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + - name: che-plugin-sidecar-@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + image: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + - name: che-plugin-sidecar-@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + image: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + - name: che-plugin-sidecar-@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + image: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + - name: che-plugin-sidecar-@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + image: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + image: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + - name: che-plugin-sidecar-@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + image: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + - name: che-plugin-sidecar-@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + image: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + - name: che-plugin-sidecar-@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + image: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + - name: che-plugin-sidecar-@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + image: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + - name: che-plugin-sidecar-@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + image: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + - 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:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 + image: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 + # tag: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 + - name: che-quarkus-@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 + image: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 + # tag: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 + - name: che-rust-1.39-@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + image: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + # tag: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + - name: che-server-7.26.0 + image: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + # tag: quay.io/eclipse/che-server:7.26.0 + - name: che-server-@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + image: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + # tag: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + - 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:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + - name: che-theia-@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + image: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + # tag: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + - 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 + - name: mta-vscode-extension-@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + # tag: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + - name: ubi8-minimal-8.3-230 + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal:8.3-230 + - name: ubi8-minimal-@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + - name: ubi-minimal-@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + - 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-plugin-sidecar-@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 + - name: che-plugin-sidecar-@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + image: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + - 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-plugin-sidecar-@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + image: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d + - name: che-plugin-sidecar-@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + image: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: che-plugin-sidecar-@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + image: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b + - name: che-plugin-sidecar-@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 + - name: che-plugin-sidecar-@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + image: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + - name: che-plugin-sidecar-@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + image: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 + - name: che-plugin-sidecar-@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + image: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + image: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 + - name: che-plugin-sidecar-@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + image: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 + - name: che-plugin-sidecar-@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + image: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + - 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-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + - name: mta-vscode-extension-@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + # tag: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + - 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-plugin-sidecar-@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a + - name: che-plugin-sidecar-@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + image: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + - name: che-plugin-sidecar-@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: che-plugin-sidecar-@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + image: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + - name: che-plugin-sidecar-@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + image: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 + - name: che-plugin-sidecar-@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + image: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + - name: che-plugin-sidecar-@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + image: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 + - 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:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + image: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + # tag: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + - name: che-theia-endpoint-runtime-binary-@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 + - 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 + - name: dirigible-openshift-@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + image: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + # tag: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 + - name: che-editor-intellij-community-@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + # tag: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + - name: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + image: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + # tag: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + image: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + # tag: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + - name: che-buildah-base-@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + image: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + # tag: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b + - 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-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:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + image: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + # tag: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a + - 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--centos--mongodb-36-centos7-latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + image: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + # tag: quay.io/eclipse/che--centos--mongodb-36-centos7:latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + - 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.0 + image: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 + # tag: quay.io/eclipse/che-cpp-rhel7:7.26.0 + - name: che-dotnet-2.2-7.26.0 + image: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 + # tag: quay.io/eclipse/che-dotnet-2.2:7.26.0 + - name: che-dotnet-3.1-7.26.0 + image: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 + # tag: quay.io/eclipse/che-dotnet-3.1:7.26.0 + - name: che-golang-1.14-7.26.0 + image: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 + # tag: quay.io/eclipse/che-golang-1.14:7.26.0 + - name: che-java11-gradle-7.26.0 + image: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 + # tag: quay.io/eclipse/che-java11-gradle:7.26.0 + - name: che-java11-maven-7.26.0 + image: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c + # tag: quay.io/eclipse/che-java11-maven:7.26.0 + - name: che-java8-maven-7.26.0 + image: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + # tag: quay.io/eclipse/che-java8-maven:7.26.0 + - name: che-nodejs10-community-7.26.0 + image: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 + # tag: quay.io/eclipse/che-nodejs10-community:7.26.0 + - name: che-nodejs10-ubi-7.26.0 + image: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 + # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.0 + - name: che-nodejs12-community-7.26.0 + image: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a + # tag: quay.io/eclipse/che-nodejs12-community:7.26.0 + - name: che-nodejs8-centos-7.26.0 + image: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa + # tag: quay.io/eclipse/che-nodejs8-centos:7.26.0 + - name: che-php-7-7.26.0 + image: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + # tag: quay.io/eclipse/che-php-7:7.26.0 + - name: che-python-3.8-7.26.0 + image: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 + # tag: quay.io/eclipse/che-python-3.8:7.26.0 + - name: che-quarkus-7.26.0 + image: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 + # tag: quay.io/eclipse/che-quarkus:7.26.0 + - name: che-rust-1.39-7.26.0 + image: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + # tag: quay.io/eclipse/che-rust-1.39:7.26.0 + - name: ubi8-minimal-8.3 + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal:8.3 + - name: ubi-minimal- + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8/ubi-minimal diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.v7.26.0.clusterserviceversion.yaml.diff b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.v7.26.0.clusterserviceversion.yaml.diff new file mode 100644 index 000000000..25f9b2a40 --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.v7.26.0.clusterserviceversion.yaml.diff @@ -0,0 +1,1180 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.25.2/eclipse-che-preview-openshift.v7.25.2.clusterserviceversion.yaml 2021-02-10 16:08:25.529203981 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.26.0/eclipse-che-preview-openshift.v7.26.0.clusterserviceversion.yaml 2021-02-10 17:06:07.383425194 +0000 +@@ -58,7 +58,7 @@ + "singleHostGatewayImage": "", + "tlsSupport": true, + "useInternalClusterSVCNames": true, +- "workspaceNamespaceDefault": "" ++ "workspaceNamespaceDefault": "-che" + }, + "storage": { + "postgresPVCStorageClassName": "", +@@ -74,14 +74,14 @@ + capabilities: Seamless Upgrades + categories: Developer Tools, OpenShift Optional + certified: "false" +- containerImage: quay.io/eclipse/che-operator@sha256:eaaf23aef2d721be21f03ee2863e868de51f5c5d9899ca09e34909dcdf0e8bdd +- createdAt: "2021-02-05T12:55:03Z" ++ containerImage: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 ++ createdAt: "2021-02-10T17:05:30Z" + description: A Kube-native development solution that delivers portable and collaborative + developer workspaces in OpenShift. + operatorframework.io/suggested-namespace: eclipse-che + repository: https://github.com/eclipse/che-operator + support: Eclipse Foundation +- name: eclipse-che-preview-openshift.v7.25.2 ++ name: eclipse-che-preview-openshift.v7.26.0 + namespace: placeholder + spec: + apiservicedefinitions: {} +@@ -93,50 +93,49 @@ + kind: CheCluster + name: checlusters.org.eclipse.che + specDescriptors: +- - description: Deprecated. Instructs the operator to deploy Che in TLS mode. +- This is enabled by default. Disabling TLS may cause malfunction of some +- Che components. +- displayName: Tls support ++ - 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. ++ displayName: TLS support + path: server.tlsSupport + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:booleanSwitch + statusDescriptors: + - description: Status of a Che installation. Can be `Available`, `Unavailable`, +- or `Available, Rolling Update in Progress` ++ or `Available, Rolling Update in Progress`. + displayName: Status + path: cheClusterRunning + x-descriptors: + - urn:alm:descriptor:io.kubernetes.phase +- - description: Public URL to the Che server ++ - description: Public URL to the Che server. + displayName: Eclipse Che URL + path: cheURL + x-descriptors: + - urn:alm:descriptor:org.w3:link +- - description: Current installed Che version ++ - description: Current installed Che version. + displayName: 'displayName: Eclipse Che version' + path: cheVersion + x-descriptors: + - urn:alm:descriptor:org.w3:link +- - description: A URL that can point to some URL where to find help related ++ - description: A URL that points to some URL where to find help related + to the current Operator status. + displayName: Help link + path: helpLink + x-descriptors: + - urn:alm:descriptor:org.w3:link +- - description: Public URL to the Identity Provider server (Keycloak / RH +- SSO). ++ - description: Public URL to the Identity Provider server, Keycloak or RH-SSO,. + displayName: Keycloak Admin Console URL + path: keycloakURL + x-descriptors: + - urn:alm:descriptor:org.w3:link + - description: A human readable message indicating details about why the +- pod is in this condition. ++ Pod is in this condition. + displayName: Message + path: message + x-descriptors: + - urn:alm:descriptor:text + - description: A brief CamelCase message indicating details about why the +- pod is in this state. ++ Pod is in this state. + displayName: Reason + path: reason + x-descriptors: +@@ -289,6 +288,189 @@ + - create + - watch + - update ++ - get ++ - delete ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - clusterroles ++ verbs: ++ - list ++ - create ++ - watch ++ - update ++ - get ++ - delete ++ - apiGroups: ++ - authorization.openshift.io ++ resources: ++ - roles ++ verbs: ++ - get ++ - create ++ - delete ++ - apiGroups: ++ - authorization.openshift.io ++ resources: ++ - rolebindings ++ verbs: ++ - get ++ - create ++ - update ++ - delete ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - roles ++ verbs: ++ - get ++ - create ++ - delete ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - rolebindings ++ verbs: ++ - get ++ - create ++ - update ++ - delete ++ - apiGroups: ++ - org.eclipse.che ++ resources: ++ - checlusters ++ - checlusters/finalizers ++ verbs: ++ - '*' ++ - apiGroups: ++ - project.openshift.io ++ resources: ++ - projectrequests ++ verbs: ++ - create ++ - update ++ - apiGroups: ++ - "" ++ resources: ++ - namespaces ++ verbs: ++ - get ++ - create ++ - update ++ - apiGroups: ++ - project.openshift.io ++ resources: ++ - projects ++ verbs: ++ - get ++ - apiGroups: ++ - "" ++ resources: ++ - serviceaccounts ++ verbs: ++ - get ++ - create ++ - watch ++ - apiGroups: ++ - "" ++ resources: ++ - pods/exec ++ verbs: ++ - create ++ - apiGroups: ++ - apps ++ resources: ++ - secrets ++ verbs: ++ - list ++ - apiGroups: ++ - "" ++ resources: ++ - secrets ++ verbs: ++ - list ++ - create ++ - delete ++ - apiGroups: ++ - "" ++ resources: ++ - persistentvolumeclaims ++ verbs: ++ - create ++ - get ++ - list ++ - watch ++ - apiGroups: ++ - "" ++ resources: ++ - pods ++ verbs: ++ - get ++ - list ++ - create ++ - watch ++ - delete ++ - apiGroups: ++ - apps ++ resources: ++ - deployments ++ verbs: ++ - get ++ - list ++ - create ++ - patch ++ - watch ++ - delete ++ - apiGroups: ++ - "" ++ resources: ++ - services ++ verbs: ++ - list ++ - create ++ - delete ++ - apiGroups: ++ - "" ++ resources: ++ - configmaps ++ verbs: ++ - get ++ - create ++ - delete ++ - list ++ - apiGroups: ++ - route.openshift.io ++ resources: ++ - routes ++ verbs: ++ - list ++ - create ++ - delete ++ - apiGroups: ++ - "" ++ resources: ++ - events ++ verbs: ++ - watch ++ - apiGroups: ++ - apps ++ resources: ++ - replicasets ++ verbs: ++ - list ++ - get ++ - patch ++ - delete ++ - apiGroups: ++ - extensions ++ resources: ++ - ingresses ++ verbs: ++ - list ++ - create ++ - watch ++ - get ++ - delete + serviceAccountName: che-operator + - rules: + - apiGroups: +@@ -297,6 +479,8 @@ + - namespaces + verbs: + - update ++ - list ++ - create + - get + serviceAccountName: che-namespace-editor + deployments: +@@ -312,6 +496,10 @@ + metadata: + labels: + app: che-operator ++ app.kubernetes.io/component: che-operator ++ app.kubernetes.io/instance: che ++ app.kubernetes.io/managed-by: olm ++ app.kubernetes.io/name: che + spec: + containers: + - command: +@@ -328,19 +516,19 @@ + - name: OPERATOR_NAME + value: che-operator + - name: CHE_VERSION +- value: 7.25.2 ++ value: 7.26.0 + - name: RELATED_IMAGE_che_server +- value: quay.io/eclipse/che-server@sha256:5ad78983b667e2e6752aa29b3a9500eca480723f497e9bb753461c8c6a2fa441 ++ value: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + - name: RELATED_IMAGE_plugin_registry +- value: quay.io/eclipse/che-plugin-registry@sha256:96941f7c013202e078b65af27d54da09227a96d2a03dfc4a8497cc135d9c5bad ++ value: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + - name: RELATED_IMAGE_devfile_registry +- value: quay.io/eclipse/che-devfile-registry@sha256:d0e873f2ceb1ba2affa10f98b1968862f82ed695045ba01a3f502bd5a8476343 ++ value: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd + - 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:136d6a88383466465517b24ca7e99213f7481a99054d4a22a0a8894e4e2a808a ++ value: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 + - 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 +@@ -369,117 +557,149 @@ + value: che-postgres-secret + - name: CHE_SERVER_TRUST_STORE_CONFIGMAP_NAME + value: ca-certs +- - name: RELATED_IMAGE_code_server_plugin_registry_image_GMXDMLRS +- value: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- - name: RELATED_IMAGE_dirigible_openshift_plugin_registry_image_GMXDILRQ +- value: docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 +- - name: RELATED_IMAGE_che_editor_jupyter_plugin_registry_image_GUXDOLRQ +- value: docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47 +- - name: RELATED_IMAGE_eclipse_broadway_plugin_registry_image_ +- value: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 +- - name: RELATED_IMAGE_che_editor_intellij_community_plugin_registry_image_GIYDEMBOGIWWGZDDGAYDEYY_ +- value: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 +- - name: RELATED_IMAGE_che_buildah_base_plugin_registry_image_GEXDCNBOGAWWEMDDHEYWIMY_ +- value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b +- - name: RELATED_IMAGE_che_buildkit_base_plugin_registry_image_GAXDOLRRFVRGCY3CGA3DS___ +- value: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:90a6f2065410b35a7e32dbdca6913406cf38b41c005004c99f3bd7f635116632 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MFZWG2LJMRXWGLJVGMZTOZRYGA______ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MJQXUZLMFVTDCNLDGVSDM___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUN3DMY3GMMBQMQZWMMTEMFTDANBWG42TMMJYMM2DAODFGA4GMMBRHFTDENLCHEYWKYZQHBSDENZZGA4TIZTEMRRDAMLGGU2TSNJQGJRA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MNQW2ZLMNMWWMMJVMM2WINQ_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MNWGC3THFU3GEY3GMQ3WE___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRSGVTDSYRYMVSWMN3FGJQTOYLFMEZWKOBUGJSWKMJTGYZDMOJTGVRDSODGHE3DGMRXMY2WGNJWMI3GEYTGGQ4GENBZG42TIYZUGVSA____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUYLFGUYTENDFGMYTSODBMM3DSNZXMNQTSNZTMFQWMNBYHA2WCMJUMU4DAMDEGY2DOYZZGZQTEM3EGE2WCMTCGZRGCYTCMU4GMZLGGJQQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MRQXE5BNMI3DIMBTHFTA____ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MRSXAZLOMRSW4Y3ZFVQW4YLMPF2GSY3TFVRTSMZZMJQTI___ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MRXXI3TFOQWWGOJTHFRGCNA_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_MZWHK5DUMVZC2YRWGQYDGOLG +- value: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_M5XS2YZZGM4WEYJU ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNRUGMYTCMRRGBSTOMJQMNQTCNRRGQ4DGOLGHA4TOMRYGVTGGMLEGM4WEMTDMEYTOMRRGVSDKNTDGE3DKZBQHEYWCYLGMQYTSYJRGRRA____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUM3BGVTDCMRYMIZDCNZWGI2WGMRRGFTDMOLGMQZDENZXGMYDAYLFGYYTCZTDMY3WIYJSHA3WGMRXHA3GKNJSGJTDCM3BHAYWKZBXGAYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUOBWGE2WCMRZGQZTKYRQGI2TMYTGMZQWMOBVMFRDEY3GHEZTEN3CGA2TSZRRGRSWCYJWGYYTIMZUGZSGMZBVGFSTGYJWMRSDSZRQGQYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NJQXMYJNMI4GMMBVGI4A____ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNJVG4YDGYLFGVTGCZLCMVSGKZJVGZTGIY3FGM4DOOLGMEZDEOBRMNRTENRQGQ4DQZBYME2DQODGMY3TOZLEGNSDIMDGG43TQZDEMY3Q____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBXGJTGENRZMMZDINBTMMYDSNLEHE2GKOJUMJQWKMZUGYYTOODBGQZDIOJVGIYTQOBSGZTDMYLBMVQTQYTGGY4DOYRSMIYTKYJQG5QQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NJQXMYJYFVRDQZRQGUZDQ___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NN2WEZLSNZSXIZLTFV2G633MNFXGOLJSMZRWMMZUGE______ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NZXWIZJNMM4TGOLCME2A____ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_N5YGK3TTNBUWM5BNORXW63DJNZTS2MTGMNTDGNBR ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBZGVRTENBQGU2TAMZTMUZDCOLEGVQTSZRWMZSTSOBTGVRDOOLDGVSDGNBRGZTDAZDGMJRDEMRYMQZDSNJXGEZWKOBRMQZDOYZWGYYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJWGQYGMOJVGAYWMOLBMUYWKM3DHFRDENZWMU3DEMBQME2WGM3BMJRTCMJVMEZTMYRSMMYGMZDEGZRTANRVGNSTQZJRHFRWINJYMY3Q____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZDCHA3GGOJSGQYTQYRZMY2DAYRSGY2TIYRYMZRTINZTGA3TGNJWHFSTAZDDHBQTAMLEG5QWIYZTGFRTSOJSGVSTKNBWHFSDEYRRGE2A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OBUHALLDHEZTSYTBGQ______ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDCMNSTEZJTHFTGKZJWMI4WKNDBHBRDIZJYGY4DCMZYGBRWKMRUGYZDMNZUGU4TOYJUHBRDQMLDGEZTCY3CMJTDANJVMRSDKZBQMMZQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTFGQ4WMYLGMI4WCYJWGUYTSZTDGYZTAMJZME3TEYJUGUZDMMRSGJRDMOJQGVSWIMBRMRRTIOBUMMZWKOLGGUYTGMLBMUYDAYRVGQ3A____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OBZG65DPMJ2WMLJSMZRWMMZUGE______ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OB4XI2DPNYWTEZTDMYZTIMI_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OJ2XG5BNGUZGMOLFHFQQ____ ++ - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_IBZWQYJSGU3DUZBTGYZGCMTCMRSWINZZGEZTINJQGZQTEM3GHFQTONZUHE4GMNLBG4ZDSN3EMY3GGYZZMEZTGOJRGQ2DOZDBHBSTCYTBG42GKYRWME2Q____ ++ value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMBYGAZDKZLBMRRTENJZGQYTIMDFG43WINLEMJSWGNLEGY2WCZRYMVRTQNJRGJSTKMRWGY4TGNRXGQ2TSMRUMQ2TKZDEGQ3DONBYGJQQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZRTHE4GKM3GMZSDKMRQGBRTKNTCMY2TMYJWMY3WMOLFHBSGENDBMEZWMNRTHFQTMMJSGU4DKMDGGE3DSNBRGQ2TEOBSGYYGIY3FHBQQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUZJTG42GKYZTGY3TINBXMFTGKYJZMIYTEZRVME4GMNRWHEYGCNTGHE4TGNJSGY2DAODBGM3TGMLGGUZDEYJVGNSTKZBQMJTGGMRYG5TA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONRWC3DBFUYWEZJWHA3TO___ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMTDMI2GMNZQMVSGEY3EMFRDGYRSG44WIYLFGUZWENTBG42TGZBWGNTGKZJQGNRGGYLFGNSDEYJTHA2WKMRUMYZDKZJWHE2WGMBTMRTA____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONUGK3DMMNUGKY3LFUZGMY3GGM2DC___ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONXW4YLSNRUW45BNGJTGGZRTGQYQ____ ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNDGMRRDANBQGI3GGYTFMRSGEZTFGUZTCOBUMFTGGZBWMZRTKY3CGYYTGMTBGIZGEZJVHAYTAYRRGNSDGODBGEZDKYLGMQYDQMZSGIYQ____ + value: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ORSWW5DPNYWWENRUGAZTSZQ_ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 +- - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_OZQWYZJNGJRDSOBXGIZA____ +- value: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d +- - name: RELATED_IMAGE_che_sidecar_workspace_data_sync_plugin_registry_image_GAXDALRR ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNZQHAZTMZTEGJTGGMBRGE4TQYZRMEZTCZRUGRSDAYLGHFRWIZRSMQ3TINBVGAZTKYTFGU2GMMDCMM3WCZJSMNRGMZJSGYZGKMBSGMYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNBZGFRTMMTBGNQWGNZXGVSDKNBSGZSDOMTBGU4WCYZRHBRGIZBVGBTDKZRVMQ3DCZBQG5TGEZTCGM2GKMDDMQ3WMZLEGNSDIZDBGIYQ____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTCHFRTOMZZMY2DQNZXGM4GCNLCMZRDEMDFGA2TEYJSGFRDIZLEMZTDIMRYHFRTOMZYGQ4TMNZQHBQWEZRYMFSGGNDEGU4DEMDEG44Q____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUMJUGY3DMZJRMVSDGYZSMNRGKNDBMRTDEZRVGYZTEYJWMFRWCNTFGRRTIYJSGM3GEODCME4WGYZTGU3WCNLFGMZDOYZTGM3GEZTFHA3A____ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_IBZWQYJSGU3DUNTEGBRTINBQME3WIYZWGQ4DQMJWMZRWINBYHA2WEOLDMM4DKZRQMVRDAZRTHEYTMNJZMJRDSZTDHBQTSMJSGMYDONLCMVQTONJRGY2Q____ ++ 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_IBZWQYJSGU3DUMJWGY2DEZLDGBQTIOBYGQ4DIYRXGBSWCZLBGJRDINLGGM4TSZRUHBRTAMRSMZSWCNLBMVSTCZRRGM2WCYZXMNRTANRYMQ2TGNTDMM3Q____ ++ value: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_IBZWQYJSGU3DUZBXGUZTMMRTGY2TQZBWMNSWKNJZGQZTKNZXMIYTMZTGG4YTAMBUMM3WENBVHBSGEYLFGM3TKZLCMNRTAZTFMZSWEOLFMRQWKZLEGQ2A____ ++ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ - 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____ ++ value: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ - name: RELATED_IMAGE_che_editor_intellij_community_plugin_registry_image_IBZWQYJSGU3DUMRZGAZDKZDCHA2TSMRWHBTDKZDDMYZDCYTBGZSWENDFGI4DINZUGRRDKM3DHEZGINTEGIZTKMJUMU2TMNLBGAZDCMJWGA3GMNRYGYZQ____ ++ value: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ - name: RELATED_IMAGE_eclipse_broadway_plugin_registry_image_IBZWQYJSGU3DUNJXMM4DEY3EHAYDMYJVGZTDMOLBME4DMNRTMY3DQNBQGVSDANZXHBRDMMRYMEZDSYJWGRTGEMJWHA4DCYRRGFRWKOLGGQ4DIZDEME3Q____ ++ value: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ - name: RELATED_IMAGE_code_server_plugin_registry_image_IBZWQYJSGU3DUZLGGA3TEOBRGAYDIOJQHFRGEMTDGIZDQNBSGJSGMMTFHE4WCNLCME2WKNBVGBTGGZJXGU2DMYRYMZQTCOBWHA2TEZRSGNRGMNRXGUYQ____ ++ value: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ - name: RELATED_IMAGE_che_buildah_base_plugin_registry_image_IBZWQYJSGU3DUNBRG4ZDAM3EHA3DEOLFMRSDSMTGGE4DOYLGMQZWKYTCGNSDQZDDGI4DGMZYMQZTIOBQHFSWENZVMZTGGMTFGA4GCNBQGBTDQZBVGZRA____ ++ value: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ - 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_theia_endpoint_runtime_binary_plugin_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c3b136d8dda3120b30a80bccedb4d7f5030325e40a946a3da9dba33656bc7650 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-theia@sha256:dd70ca1baa69b2c18520aaf2581b7e83028fb8444f617b3136c9df9a1bb481b0 +- - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______ +- value: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ - 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_IBZWQYJSGU3DUMZWMJSGGZJUGJRWEZTFMVSWEODBGE3TEZJRMMYTOZJRGU2TCZJWG42DAZJRG42TMNJWGBSDQNTDGRRDSNRTGY3DAYJSGRQWGMTCGJQQ____ ++ value: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ - 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_G4XDENJOGI______ +- value: quay.io/eclipse/che-cpp-rhel7@sha256:a69a78586a52def2f030cf1648d7a77e4dbdd67228ff6a8bcb11ccbdc2180bbc +- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-dotnet-2.2@sha256:6d28148fbffa76ecbd7085a75d1f1ff4fba1f31df1dfbf2ba8ad0bbb3349520d +- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-dotnet-3.1@sha256:139588b061d051dad52a71c7f7e779da2d22d1fb6c3332ba30bee4307c4c3e2c +- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-golang-1.14@sha256:b41a561cfcd2b5fd62a80d600f7b547c9f155b010627e47eccde962ac4253794 +- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-java11-gradle@sha256:433546307e6b9cc4fa5c0eb54dd04a550e9c22f200503cd0caa0f51cfd28689f +- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-java11-maven@sha256:dc3366db4a740606ba6ce5208f642ad0f8993ef38cfcc3c1215d3ea9e279ca2a +- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-java8-maven@sha256:f5784e53a598bf73f380a9873a571d686c817c57a2b09ad9e1581651a656b0d7 +- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs10-community@sha256:3ae6654f3855c20c4083e6462527fb7af5bfc50f55d8f95877fe50cd9c35d29a +- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs10-ubi@sha256:67ed65f29c6ffc44c7fc401c4d9e7b5266ba9301173923e0083e0b468812b91f +- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs12-community@sha256:e0a180f53041b2f2b0e432082351a301dc6eb1c02ff96cc946a342c4e1edf53e +- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-nodejs8-centos@sha256:8d5e3b93bb5fcdb47149038bed53ceee9f3cf9063b8ee6dba76ab8d93d8d95c0 +- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-php-7@sha256:1701391313dfbcafca5946586b9a4915faa2bdf6c32b1837a8021524bdfc9029 +- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-python-3.7@sha256:d971f85f68b004a3245d3b75361cceddf4dae6055168d3d177b0cd7e04ad04a3 +- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-python-3.8@sha256:9192bdb4c7e660b71f7ab30d8782b5bc0ef7319bac25d53574be39664c735eb4 +- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-quarkus@sha256:09f6332964ad28d0b70eb1b0126f8b8635a3faa498eb90cd4909f929de5e1e24 +- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENJOGI______ +- value: quay.io/eclipse/che-rust-1.39@sha256:04ae0e0fbf3eab860159d7c601ae2f5f037bc12f6e48e96d97b0d683525aaed6 ++ - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 ++ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 ++ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 ++ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 ++ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 ++ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c ++ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf ++ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 ++ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 ++ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a ++ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa ++ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 ++ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 ++ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 ++ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDENROGA______ ++ value: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d + - name: RELATED_IMAGE_ubi8_minimal_devfile_registry_image_HAXDG___ + value: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a +- image: quay.io/eclipse/che-operator@sha256:eaaf23aef2d721be21f03ee2863e868de51f5c5d9899ca09e34909dcdf0e8bdd ++ image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 + imagePullPolicy: IfNotPresent + livenessProbe: + failureThreshold: 10 +@@ -517,7 +737,7 @@ + - ALL + restartPolicy: Always + serviceAccountName: che-operator +- terminationGracePeriodSeconds: 5 ++ terminationGracePeriodSeconds: 20 + permissions: + - rules: + - apiGroups: +@@ -590,7 +810,9 @@ + - apiGroups: + - org.eclipse.che + resources: +- - '*' ++ - checlusters ++ - checlusters/status ++ - checlusters/finalizers + verbs: + - '*' + - apiGroups: +@@ -653,30 +875,30 @@ + maturity: stable + provider: + name: Eclipse Foundation +- replaces: eclipse-che-preview-openshift.v7.25.1 +- version: 7.25.2 ++ replaces: eclipse-che-preview-openshift.v7.25.2 ++ version: 7.26.0 + relatedImages: +- - name: che-operator-7.25.2 +- image: quay.io/eclipse/che-operator@sha256:eaaf23aef2d721be21f03ee2863e868de51f5c5d9899ca09e34909dcdf0e8bdd +- # tag: quay.io/eclipse/che-operator:7.25.2 +- - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- image: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- # tag: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- - name: dirigible-openshift-@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 +- image: docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 +- # tag: docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 +- - name: che-editor-jupyter-@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47 +- image: docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47 +- # tag: docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47 ++ - name: che-operator-7.26.0 ++ image: quay.io/eclipse/che-operator@sha256:da471836f96456e3abb23c5c5bfa576bd1b81c36640411ddc7b1ad8ecfbb5696 ++ # tag: quay.io/eclipse/che-operator:7.26.0 + - name: traefik-v2.2.8 + image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + # tag: docker.io/traefik:v2.2.8 + - name: traefik-@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + # tag: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 ++ - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ image: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ # tag: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ - name: dirigible-openshift-@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ image: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ # tag: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ - 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 + - name: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 +- image: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 +- # tag: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ image: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ # tag: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + - name: che-editor-intellij-community-@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 + # tag: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 +@@ -704,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:a69a78586a52def2f030cf1648d7a77e4dbdd67228ff6a8bcb11ccbdc2180bbc +- image: quay.io/eclipse/che-cpp-rhel7@sha256:a69a78586a52def2f030cf1648d7a77e4dbdd67228ff6a8bcb11ccbdc2180bbc +- # tag: quay.io/eclipse/che-cpp-rhel7@sha256:a69a78586a52def2f030cf1648d7a77e4dbdd67228ff6a8bcb11ccbdc2180bbc +- - name: che-devfile-registry-7.25.2 +- image: quay.io/eclipse/che-devfile-registry@sha256:d0e873f2ceb1ba2affa10f98b1968862f82ed695045ba01a3f502bd5a8476343 +- # tag: quay.io/eclipse/che-devfile-registry:7.25.2 +- - name: che-devfile-registry-@sha256:d0e873f2ceb1ba2affa10f98b1968862f82ed695045ba01a3f502bd5a8476343 +- image: quay.io/eclipse/che-devfile-registry@sha256:d0e873f2ceb1ba2affa10f98b1968862f82ed695045ba01a3f502bd5a8476343 +- # tag: quay.io/eclipse/che-devfile-registry@sha256:d0e873f2ceb1ba2affa10f98b1968862f82ed695045ba01a3f502bd5a8476343 +- - name: che-dotnet-2.2-@sha256:6d28148fbffa76ecbd7085a75d1f1ff4fba1f31df1dfbf2ba8ad0bbb3349520d +- image: quay.io/eclipse/che-dotnet-2.2@sha256:6d28148fbffa76ecbd7085a75d1f1ff4fba1f31df1dfbf2ba8ad0bbb3349520d +- # tag: quay.io/eclipse/che-dotnet-2.2@sha256:6d28148fbffa76ecbd7085a75d1f1ff4fba1f31df1dfbf2ba8ad0bbb3349520d +- - name: che-dotnet-3.1-@sha256:139588b061d051dad52a71c7f7e779da2d22d1fb6c3332ba30bee4307c4c3e2c +- image: quay.io/eclipse/che-dotnet-3.1@sha256:139588b061d051dad52a71c7f7e779da2d22d1fb6c3332ba30bee4307c4c3e2c +- # tag: quay.io/eclipse/che-dotnet-3.1@sha256:139588b061d051dad52a71c7f7e779da2d22d1fb6c3332ba30bee4307c4c3e2c +- - name: che-golang-1.14-@sha256:b41a561cfcd2b5fd62a80d600f7b547c9f155b010627e47eccde962ac4253794 +- image: quay.io/eclipse/che-golang-1.14@sha256:b41a561cfcd2b5fd62a80d600f7b547c9f155b010627e47eccde962ac4253794 +- # tag: quay.io/eclipse/che-golang-1.14@sha256:b41a561cfcd2b5fd62a80d600f7b547c9f155b010627e47eccde962ac4253794 +- - name: che-java11-gradle-@sha256:433546307e6b9cc4fa5c0eb54dd04a550e9c22f200503cd0caa0f51cfd28689f +- image: quay.io/eclipse/che-java11-gradle@sha256:433546307e6b9cc4fa5c0eb54dd04a550e9c22f200503cd0caa0f51cfd28689f +- # tag: quay.io/eclipse/che-java11-gradle@sha256:433546307e6b9cc4fa5c0eb54dd04a550e9c22f200503cd0caa0f51cfd28689f +- - name: che-java11-maven-@sha256:dc3366db4a740606ba6ce5208f642ad0f8993ef38cfcc3c1215d3ea9e279ca2a +- image: quay.io/eclipse/che-java11-maven@sha256:dc3366db4a740606ba6ce5208f642ad0f8993ef38cfcc3c1215d3ea9e279ca2a +- # tag: quay.io/eclipse/che-java11-maven@sha256:dc3366db4a740606ba6ce5208f642ad0f8993ef38cfcc3c1215d3ea9e279ca2a +- - name: che-java8-maven-@sha256:f5784e53a598bf73f380a9873a571d686c817c57a2b09ad9e1581651a656b0d7 +- image: quay.io/eclipse/che-java8-maven@sha256:f5784e53a598bf73f380a9873a571d686c817c57a2b09ad9e1581651a656b0d7 +- # tag: quay.io/eclipse/che-java8-maven@sha256:f5784e53a598bf73f380a9873a571d686c817c57a2b09ad9e1581651a656b0d7 ++ - name: che-cpp-rhel7-@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 ++ image: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 ++ # tag: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 ++ - name: che-devfile-registry-7.26.0 ++ image: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd ++ # tag: quay.io/eclipse/che-devfile-registry:7.26.0 ++ - name: che-devfile-registry-@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd ++ image: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd ++ # tag: quay.io/eclipse/che-devfile-registry@sha256:4702015099642abe25b9905b1054eea016da5d115070a726b77aa16138ea51dd ++ - name: che-dotnet-2.2-@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 ++ image: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 ++ # tag: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 ++ - name: che-dotnet-3.1-@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 ++ image: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 ++ # tag: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 ++ - name: che-golang-1.14-@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 ++ image: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 ++ # tag: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 ++ - name: che-java11-gradle-@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 ++ image: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 ++ # tag: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 ++ - name: che-java11-maven-@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c ++ image: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c ++ # tag: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c ++ - name: che-java8-maven-@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf ++ image: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf ++ # tag: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf + - name: che-jwtproxy-0.10.0 + image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033 + # tag: quay.io/eclipse/che-jwtproxy:0.10.0 + - name: che-jwtproxy-@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033 + image: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033 + # tag: quay.io/eclipse/che-jwtproxy@sha256:881d1c91e7f5840314f25104ef5c0acee59ed484a5f9ef39daf3008725ea1033 +- - name: che-keycloak-7.25.2 +- image: quay.io/eclipse/che-keycloak@sha256:136d6a88383466465517b24ca7e99213f7481a99054d4a22a0a8894e4e2a808a +- # tag: quay.io/eclipse/che-keycloak:7.25.2 +- - name: che-keycloak-@sha256:136d6a88383466465517b24ca7e99213f7481a99054d4a22a0a8894e4e2a808a +- image: quay.io/eclipse/che-keycloak@sha256:136d6a88383466465517b24ca7e99213f7481a99054d4a22a0a8894e4e2a808a +- # tag: quay.io/eclipse/che-keycloak@sha256:136d6a88383466465517b24ca7e99213f7481a99054d4a22a0a8894e4e2a808a +- - name: che-machine-exec-@sha256:90a6f2065410b35a7e32dbdca6913406cf38b41c005004c99f3bd7f635116632 +- image: quay.io/eclipse/che-machine-exec@sha256:90a6f2065410b35a7e32dbdca6913406cf38b41c005004c99f3bd7f635116632 +- # tag: quay.io/eclipse/che-machine-exec@sha256:90a6f2065410b35a7e32dbdca6913406cf38b41c005004c99f3bd7f635116632 +- - name: che-nodejs10-community-@sha256:3ae6654f3855c20c4083e6462527fb7af5bfc50f55d8f95877fe50cd9c35d29a +- image: quay.io/eclipse/che-nodejs10-community@sha256:3ae6654f3855c20c4083e6462527fb7af5bfc50f55d8f95877fe50cd9c35d29a +- # tag: quay.io/eclipse/che-nodejs10-community@sha256:3ae6654f3855c20c4083e6462527fb7af5bfc50f55d8f95877fe50cd9c35d29a +- - name: che-nodejs10-ubi-@sha256:67ed65f29c6ffc44c7fc401c4d9e7b5266ba9301173923e0083e0b468812b91f +- image: quay.io/eclipse/che-nodejs10-ubi@sha256:67ed65f29c6ffc44c7fc401c4d9e7b5266ba9301173923e0083e0b468812b91f +- # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:67ed65f29c6ffc44c7fc401c4d9e7b5266ba9301173923e0083e0b468812b91f +- - name: che-nodejs12-community-@sha256:e0a180f53041b2f2b0e432082351a301dc6eb1c02ff96cc946a342c4e1edf53e +- image: quay.io/eclipse/che-nodejs12-community@sha256:e0a180f53041b2f2b0e432082351a301dc6eb1c02ff96cc946a342c4e1edf53e +- # tag: quay.io/eclipse/che-nodejs12-community@sha256:e0a180f53041b2f2b0e432082351a301dc6eb1c02ff96cc946a342c4e1edf53e +- - name: che-nodejs8-centos-@sha256:8d5e3b93bb5fcdb47149038bed53ceee9f3cf9063b8ee6dba76ab8d93d8d95c0 +- image: quay.io/eclipse/che-nodejs8-centos@sha256:8d5e3b93bb5fcdb47149038bed53ceee9f3cf9063b8ee6dba76ab8d93d8d95c0 +- # tag: quay.io/eclipse/che-nodejs8-centos@sha256:8d5e3b93bb5fcdb47149038bed53ceee9f3cf9063b8ee6dba76ab8d93d8d95c0 +- - name: che-php-7-@sha256:1701391313dfbcafca5946586b9a4915faa2bdf6c32b1837a8021524bdfc9029 +- image: quay.io/eclipse/che-php-7@sha256:1701391313dfbcafca5946586b9a4915faa2bdf6c32b1837a8021524bdfc9029 +- # tag: quay.io/eclipse/che-php-7@sha256:1701391313dfbcafca5946586b9a4915faa2bdf6c32b1837a8021524bdfc9029 ++ - name: che-keycloak-7.26.0 ++ image: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 ++ # tag: quay.io/eclipse/che-keycloak:7.26.0 ++ - name: che-keycloak-@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 ++ image: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 ++ # tag: quay.io/eclipse/che-keycloak@sha256:cd43b49f27e3ccc856fdc22f43c922a53e25978d5d43fefdaa271c97c7032da2 ++ - name: che-machine-exec-@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ image: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ # tag: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ - name: che-nodejs10-community-@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 ++ image: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 ++ # tag: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 ++ - name: che-nodejs10-ubi-@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 ++ image: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 ++ # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 ++ - name: che-nodejs12-community-@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a ++ image: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a ++ # tag: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a ++ - name: che-nodejs8-centos-@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa ++ image: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa ++ # tag: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa ++ - name: che-php-7-@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 ++ image: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 ++ # tag: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 + - 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 +@@ -773,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.25.2 +- image: quay.io/eclipse/che-plugin-registry@sha256:96941f7c013202e078b65af27d54da09227a96d2a03dfc4a8497cc135d9c5bad +- # tag: quay.io/eclipse/che-plugin-registry:7.25.2 +- - name: che-plugin-registry-@sha256:96941f7c013202e078b65af27d54da09227a96d2a03dfc4a8497cc135d9c5bad +- image: quay.io/eclipse/che-plugin-registry@sha256:96941f7c013202e078b65af27d54da09227a96d2a03dfc4a8497cc135d9c5bad +- # tag: quay.io/eclipse/che-plugin-registry@sha256:96941f7c013202e078b65af27d54da09227a96d2a03dfc4a8497cc135d9c5bad ++ - name: che-plugin-registry-7.26.0 ++ image: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 ++ # tag: quay.io/eclipse/che-plugin-registry:7.26.0 ++ - name: che-plugin-registry-@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 ++ image: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 ++ # tag: quay.io/eclipse/che-plugin-registry@sha256:4f446c4c59590922c60e0808a0f164c2869af996639a4bfb8f9040f259c3cbb7 + - name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a +@@ -848,33 +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.7-@sha256:d971f85f68b004a3245d3b75361cceddf4dae6055168d3d177b0cd7e04ad04a3 +- image: quay.io/eclipse/che-python-3.7@sha256:d971f85f68b004a3245d3b75361cceddf4dae6055168d3d177b0cd7e04ad04a3 +- # tag: quay.io/eclipse/che-python-3.7@sha256:d971f85f68b004a3245d3b75361cceddf4dae6055168d3d177b0cd7e04ad04a3 +- - name: che-python-3.8-@sha256:9192bdb4c7e660b71f7ab30d8782b5bc0ef7319bac25d53574be39664c735eb4 +- image: quay.io/eclipse/che-python-3.8@sha256:9192bdb4c7e660b71f7ab30d8782b5bc0ef7319bac25d53574be39664c735eb4 +- # tag: quay.io/eclipse/che-python-3.8@sha256:9192bdb4c7e660b71f7ab30d8782b5bc0ef7319bac25d53574be39664c735eb4 +- - name: che-quarkus-@sha256:09f6332964ad28d0b70eb1b0126f8b8635a3faa498eb90cd4909f929de5e1e24 +- image: quay.io/eclipse/che-quarkus@sha256:09f6332964ad28d0b70eb1b0126f8b8635a3faa498eb90cd4909f929de5e1e24 +- # tag: quay.io/eclipse/che-quarkus@sha256:09f6332964ad28d0b70eb1b0126f8b8635a3faa498eb90cd4909f929de5e1e24 +- - name: che-rust-1.39-@sha256:04ae0e0fbf3eab860159d7c601ae2f5f037bc12f6e48e96d97b0d683525aaed6 +- image: quay.io/eclipse/che-rust-1.39@sha256:04ae0e0fbf3eab860159d7c601ae2f5f037bc12f6e48e96d97b0d683525aaed6 +- # tag: quay.io/eclipse/che-rust-1.39@sha256:04ae0e0fbf3eab860159d7c601ae2f5f037bc12f6e48e96d97b0d683525aaed6 +- - name: che-server-7.25.2 +- image: quay.io/eclipse/che-server@sha256:5ad78983b667e2e6752aa29b3a9500eca480723f497e9bb753461c8c6a2fa441 +- # tag: quay.io/eclipse/che-server:7.25.2 +- - name: che-server-@sha256:5ad78983b667e2e6752aa29b3a9500eca480723f497e9bb753461c8c6a2fa441 +- image: quay.io/eclipse/che-server@sha256:5ad78983b667e2e6752aa29b3a9500eca480723f497e9bb753461c8c6a2fa441 +- # tag: quay.io/eclipse/che-server@sha256:5ad78983b667e2e6752aa29b3a9500eca480723f497e9bb753461c8c6a2fa441 ++ - name: che-python-3.8-@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 ++ image: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 ++ # tag: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 ++ - name: che-quarkus-@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 ++ image: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 ++ # tag: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 ++ - name: che-rust-1.39-@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d ++ image: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d ++ # tag: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d ++ - name: che-server-7.26.0 ++ image: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c ++ # tag: quay.io/eclipse/che-server:7.26.0 ++ - name: che-server-@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c ++ image: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c ++ # tag: quay.io/eclipse/che-server@sha256:0e46c3046e7e3862d15db62f5861d2e914c8ea59cd52fb71bbab20de4d9a314c + - 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:c3b136d8dda3120b30a80bccedb4d7f5030325e40a946a3da9dba33656bc7650 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c3b136d8dda3120b30a80bccedb4d7f5030325e40a946a3da9dba33656bc7650 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c3b136d8dda3120b30a80bccedb4d7f5030325e40a946a3da9dba33656bc7650 +- - name: che-theia-@sha256:dd70ca1baa69b2c18520aaf2581b7e83028fb8444f617b3136c9df9a1bb481b0 +- image: quay.io/eclipse/che-theia@sha256:dd70ca1baa69b2c18520aaf2581b7e83028fb8444f617b3136c9df9a1bb481b0 +- # tag: quay.io/eclipse/che-theia@sha256:dd70ca1baa69b2c18520aaf2581b7e83028fb8444f617b3136c9df9a1bb481b0 ++ - name: che-theia-endpoint-runtime-binary-@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ - name: che-theia-@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ image: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ # tag: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 + - 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 +@@ -890,165 +1109,213 @@ + - name: ubi-minimal-@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8/ubi-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a +- - name: code-server-3.6.2 +- image: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- # tag: codercom/code-server:3.6.2 +- - name: dirigible-openshift-3.4.0 +- image: docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 +- # tag: docker.io/dirigiblelabs/dirigible-openshift:3.4.0 +- - name: che-editor-jupyter-5.7.0 +- image: docker.io/ksmster/che-editor-jupyter@sha256:83439ae9edcaa3a97536742315a7912f93e499f49847da094c480031eae4ba47 +- # tag: docker.io/ksmster/che-editor-jupyter:5.7.0 +- - name: eclipse-broadway- +- image: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 +- # tag: docker.io/wsskeleton/eclipse-broadway +- - name: che-editor-intellij-community-2020.2-cdc002c +- image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 +- # tag: quay.io/che-incubator/che-editor-intellij-community:2020.2-cdc002c +- - name: che-buildah-base-1.14.0-b0c91d3 +- image: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b +- # tag: quay.io/eclipse/che-buildah-base:1.14.0-b0c91d3 +- - name: che-buildkit-base-0.7.1-bacb069 +- image: quay.io/eclipse/che-buildkit-base@sha256:effa98dd2ced30b520b25afff1a880d121cf6b3f8ab42a5149eada46ba793ce9 +- # tag: quay.io/eclipse/che-buildkit-base:0.7.1-bacb069 +- - name: che-machine-exec-7.25.2 +- image: quay.io/eclipse/che-machine-exec@sha256:90a6f2065410b35a7e32dbdca6913406cf38b41c005004c99f3bd7f635116632 +- # tag: quay.io/eclipse/che-machine-exec:7.25.2 +- - name: che-plugin-sidecar-asciidoc-5337f80 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 +- # tag: quay.io/eclipse/che-plugin-sidecar:asciidoc-5337f80 +- - name: che-plugin-sidecar-bazel-f15c5d6 ++ - 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-plugin-sidecar-@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 ++ - name: che-plugin-sidecar-@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b + image: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b +- # tag: quay.io/eclipse/che-plugin-sidecar:bazel-f15c5d6 +- - name: che-plugin-sidecar-camelk-f15c5d6 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a +- # tag: quay.io/eclipse/che-plugin-sidecar:camelk-f15c5d6 +- - name: che-plugin-sidecar-clang-6bcfd7b ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:7cf6f00d3f2daf04675618c408e08f019f25b91ec08d279094fddb01f559502b ++ - 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-plugin-sidecar-@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d ++ - name: che-plugin-sidecar-@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a + image: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a +- # tag: quay.io/eclipse/che-plugin-sidecar:clang-6bcfd7b +- - name: che-plugin-sidecar-dart-b64039f +- image: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 +- # tag: quay.io/eclipse/che-plugin-sidecar:dart-b64039f +- - name: che-plugin-sidecar-dependency-analytics-c939ba4 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 +- # tag: quay.io/eclipse/che-plugin-sidecar:dependency-analytics-c939ba4 +- - name: che-plugin-sidecar-dotnet-c939ba4 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a +- # tag: quay.io/eclipse/che-plugin-sidecar:dotnet-c939ba4 +- - name: che-plugin-sidecar-flutter-b64039f +- image: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 +- # tag: quay.io/eclipse/che-plugin-sidecar:flutter-b64039f +- - name: che-plugin-sidecar-go-c939ba4 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:ae5124e3198ac6977ca973aaf4885a14e800d647c96a23d15a2b6babbe8fef2a ++ - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ - name: che-plugin-sidecar-@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b ++ - name: che-plugin-sidecar-@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:3a5f128b217625c211f69fd2277300ae611fcf7da287c2786e522f13a81ed701 ++ - name: che-plugin-sidecar-@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 + image: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 +- # tag: quay.io/eclipse/che-plugin-sidecar:go-c939ba4 +- - name: che-plugin-sidecar-java-b8f0528 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:8615a29435b0256bffaf85ab2cf9327b059f14eaa6614346dfd51e3a6dd9f041 ++ - name: che-plugin-sidecar-@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:55703ae5faebedee56fdce3879fa2281cc260488d8a488ff77ed3d40f778ddf7 ++ - name: che-plugin-sidecar-@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:472fb69c2443c095d94e94bae346178a42495218826f6aaea8bf687b2b15a07a ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 + image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 +- # tag: quay.io/eclipse/che-plugin-sidecar:java-b8f0528 +- - name: che-plugin-sidecar-java8-b8f0528 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 + image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 +- # tag: quay.io/eclipse/che-plugin-sidecar:java8-b8f0528 +- - name: che-plugin-sidecar-kubernetes-tooling-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a +- # tag: quay.io/eclipse/che-plugin-sidecar:kubernetes-tooling-2fcf341 +- - name: che-plugin-sidecar-node-c939ba4 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:4bce2e39fee6b9e4a8b4e8681380ce2462674597a48b81c131cbbf055dd5d0c3 +- # tag: quay.io/eclipse/che-plugin-sidecar:node-c939ba4 +- - name: che-plugin-sidecar-openshift-tooling-2fcf341 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:095c24055033e219d5a9f6fe9835b79c5d3416f0dfbb228d295713e81d27c661 ++ - name: che-plugin-sidecar-@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 ++ - name: che-plugin-sidecar-@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 + image: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 +- # tag: quay.io/eclipse/che-plugin-sidecar:openshift-tooling-2fcf341 +- - name: che-plugin-sidecar-php-c939ba4 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:db86c92418b9f40b2654b8fc473073569e0dc8a01d7adc31c9925e5469d2b114 ++ - 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-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 +- # tag: quay.io/eclipse/che-plugin-sidecar:php-c939ba4 +- - name: che-plugin-sidecar-protobuf-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 +- # tag: quay.io/eclipse/che-plugin-sidecar:protobuf-2fcf341 +- - name: che-plugin-sidecar-python-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:64311210e710ca1614839f897285fc1d39b2ca17215d56c165d091aafd19a14b +- # tag: quay.io/eclipse/che-plugin-sidecar:python-2fcf341 +- - name: che-plugin-sidecar-rust-52f9e9a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2e49fafb9aa6519fc63019a72a4526222b6905ed01dc484c3e9f5131ae00b546 ++ - name: mta-vscode-extension-@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ # tag: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:08025eadc2594140e77d5dbec5d65af8ec8512e5266936745924d55dd467482a ++ - 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-plugin-sidecar-@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:f398e3ffd5200c56bf56a6f7f9e8db4aa3f639a6125850f169414528260dce8a ++ - name: che-plugin-sidecar-@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f + image: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f +- # tag: quay.io/eclipse/che-plugin-sidecar:rust-52f9e9a +- - name: che-plugin-sidecar-scala-1be6877 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:e374ec367447afea9b12f5a8f6690a6f993526408a3731f522a53e5d0bfc287f ++ - name: che-plugin-sidecar-@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df +- # tag: quay.io/eclipse/che-plugin-sidecar:scala-1be6877 +- - name: che-plugin-sidecar-shellcheck-2fcf341 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 +- # tag: quay.io/eclipse/che-plugin-sidecar:shellcheck-2fcf341 +- - name: che-plugin-sidecar-sonarlint-2fcf341 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df ++ - name: che-plugin-sidecar-@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 + image: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 +- # tag: quay.io/eclipse/che-plugin-sidecar:sonarlint-2fcf341 +- - name: che-plugin-sidecar-tekton-b64039f +- image: quay.io/eclipse/che-plugin-sidecar@sha256:1640f9501f9ae1e3c9b276e6200a5c3abc115a36b2c0fdd6c0653e8e19cd58f7 +- # tag: quay.io/eclipse/che-plugin-sidecar:tekton-b64039f +- - name: che-plugin-sidecar-vale-2b98722 +- image: quay.io/eclipse/che-plugin-sidecar@sha256:f25f9b8eef7e2a7aea3e842ee13626935b98f96327f5c56b6bbf48b49754c45d +- # tag: quay.io/eclipse/che-plugin-sidecar:vale-2b98722 +- - name: che-sidecar-workspace-data-sync-0.0.1 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:4fdb04026cbeddbfe53184afcd6fc5cb6132a22be5810b13d38a125afd083221 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:70836fd2fc01198c1a31f44d0af9cdf2d7445035be54f0bc7ae2cbfe262e0231 ++ - name: che-plugin-sidecar-@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:491c62a3ac775d5426d72a59ac18bdd50f5f5d61d07fbfb34e0cd7fed3d4da21 ++ - name: che-plugin-sidecar-@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6b9c739f487738a5bfb20e052a21b4edff4289c738496708abf8adc4d5820d79 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:14666e1ed3c2cbe4adf2f5632a6aca6e4c4a236b8ba9cc357a5e327c336bfe86 ++ - name: che-plugin-sidecar-@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:6d0c440a7dc648816fcd4885b9cc85f0eb0f391659bb9fc8a9123075bea75165 ++ - 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:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ image: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ # tag: quay.io/eclipse/che-theia@sha256:16642ec0a488484b70eaea2b45f399f48c022fea5aee1f135ac7cc068d536cc7 ++ - name: che-theia-endpoint-runtime-binary-@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:d753623658d6cee5943577b16ff71004c7b458dbae375ebcc0fefeb9edaeed44 ++ - 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 ++ - name: dirigible-openshift-@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ image: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ # tag: index.docker.io/dirigiblelabs/dirigible-openshift@sha256:3365635d1e0403697dea0674bbbdc749c4be2db29818a93b8e1e53c3c5144113 ++ - name: che-editor-intellij-community-@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ image: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ # tag: quay.io/che-incubator/che-editor-intellij-community@sha256:29025db859268f5dcf21ba6eb4e284744b53c92d6d23514e565a0211606f6863 ++ - name: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ image: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ # tag: index.docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 ++ - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ image: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ # tag: index.docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 ++ - name: che-buildah-base-@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ image: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ # tag: quay.io/eclipse/che-buildah-base@sha256:417203d8629edd92f187afd3ebb3d8dc28338d34809eb75ffc2e08a400f8d56b ++ - 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:0.0.1 +- - name: che-theia-endpoint-runtime-binary-7.25.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c3b136d8dda3120b30a80bccedb4d7f5030325e40a946a3da9dba33656bc7650 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.25.2 +- - name: che-theia-7.25.2 +- image: quay.io/eclipse/che-theia@sha256:dd70ca1baa69b2c18520aaf2581b7e83028fb8444f617b3136c9df9a1bb481b0 +- # tag: quay.io/eclipse/che-theia:7.25.2 +- - name: mta-vscode-extension-latest +- image: quay.io/windupeng/mta-vscode-extension@sha256:d362a2bded79134506a23f9a77498f5a7297df6cc9a3391447da8e1ba74eb6a5 +- # tag: quay.io/windupeng/mta-vscode-extension:latest ++ # tag: quay.io/eclipse/che-sidecar-workspace-data-sync@sha256:88d0125837d5a57cb24bb3ed81e6a8f4119a5043b7926bd2bd01710854c44f10 ++ - 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:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ image: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ # tag: quay.io/eclipse/che-machine-exec@sha256:36bdce42cbfeeeb8a172e1c17e1551e6740e1756560d86c4b963660a24ac2b2a ++ - 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--centos--mongodb-36-centos7-latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + image: quay.io/eclipse/che--centos--mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + # tag: quay.io/eclipse/che--centos--mongodb-36-centos7:latest-a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 + - name: che--centos--mysql-57-centos7-latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + image: quay.io/eclipse/che--centos--mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + # tag: quay.io/eclipse/che--centos--mysql-57-centos7:latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- - name: che-cpp-rhel7-7.25.2 +- image: quay.io/eclipse/che-cpp-rhel7@sha256:a69a78586a52def2f030cf1648d7a77e4dbdd67228ff6a8bcb11ccbdc2180bbc +- # tag: quay.io/eclipse/che-cpp-rhel7:7.25.2 +- - name: che-dotnet-2.2-7.25.2 +- image: quay.io/eclipse/che-dotnet-2.2@sha256:6d28148fbffa76ecbd7085a75d1f1ff4fba1f31df1dfbf2ba8ad0bbb3349520d +- # tag: quay.io/eclipse/che-dotnet-2.2:7.25.2 +- - name: che-dotnet-3.1-7.25.2 +- image: quay.io/eclipse/che-dotnet-3.1@sha256:139588b061d051dad52a71c7f7e779da2d22d1fb6c3332ba30bee4307c4c3e2c +- # tag: quay.io/eclipse/che-dotnet-3.1:7.25.2 +- - name: che-golang-1.14-7.25.2 +- image: quay.io/eclipse/che-golang-1.14@sha256:b41a561cfcd2b5fd62a80d600f7b547c9f155b010627e47eccde962ac4253794 +- # tag: quay.io/eclipse/che-golang-1.14:7.25.2 +- - name: che-java11-gradle-7.25.2 +- image: quay.io/eclipse/che-java11-gradle@sha256:433546307e6b9cc4fa5c0eb54dd04a550e9c22f200503cd0caa0f51cfd28689f +- # tag: quay.io/eclipse/che-java11-gradle:7.25.2 +- - name: che-java11-maven-7.25.2 +- image: quay.io/eclipse/che-java11-maven@sha256:dc3366db4a740606ba6ce5208f642ad0f8993ef38cfcc3c1215d3ea9e279ca2a +- # tag: quay.io/eclipse/che-java11-maven:7.25.2 +- - name: che-java8-maven-7.25.2 +- image: quay.io/eclipse/che-java8-maven@sha256:f5784e53a598bf73f380a9873a571d686c817c57a2b09ad9e1581651a656b0d7 +- # tag: quay.io/eclipse/che-java8-maven:7.25.2 +- - name: che-nodejs10-community-7.25.2 +- image: quay.io/eclipse/che-nodejs10-community@sha256:3ae6654f3855c20c4083e6462527fb7af5bfc50f55d8f95877fe50cd9c35d29a +- # tag: quay.io/eclipse/che-nodejs10-community:7.25.2 +- - name: che-nodejs10-ubi-7.25.2 +- image: quay.io/eclipse/che-nodejs10-ubi@sha256:67ed65f29c6ffc44c7fc401c4d9e7b5266ba9301173923e0083e0b468812b91f +- # tag: quay.io/eclipse/che-nodejs10-ubi:7.25.2 +- - name: che-nodejs12-community-7.25.2 +- image: quay.io/eclipse/che-nodejs12-community@sha256:e0a180f53041b2f2b0e432082351a301dc6eb1c02ff96cc946a342c4e1edf53e +- # tag: quay.io/eclipse/che-nodejs12-community:7.25.2 +- - name: che-nodejs8-centos-7.25.2 +- image: quay.io/eclipse/che-nodejs8-centos@sha256:8d5e3b93bb5fcdb47149038bed53ceee9f3cf9063b8ee6dba76ab8d93d8d95c0 +- # tag: quay.io/eclipse/che-nodejs8-centos:7.25.2 +- - name: che-php-7-7.25.2 +- image: quay.io/eclipse/che-php-7@sha256:1701391313dfbcafca5946586b9a4915faa2bdf6c32b1837a8021524bdfc9029 +- # tag: quay.io/eclipse/che-php-7:7.25.2 +- - name: che-python-3.7-7.25.2 +- image: quay.io/eclipse/che-python-3.7@sha256:d971f85f68b004a3245d3b75361cceddf4dae6055168d3d177b0cd7e04ad04a3 +- # tag: quay.io/eclipse/che-python-3.7:7.25.2 +- - name: che-python-3.8-7.25.2 +- image: quay.io/eclipse/che-python-3.8@sha256:9192bdb4c7e660b71f7ab30d8782b5bc0ef7319bac25d53574be39664c735eb4 +- # tag: quay.io/eclipse/che-python-3.8:7.25.2 +- - name: che-quarkus-7.25.2 +- image: quay.io/eclipse/che-quarkus@sha256:09f6332964ad28d0b70eb1b0126f8b8635a3faa498eb90cd4909f929de5e1e24 +- # tag: quay.io/eclipse/che-quarkus:7.25.2 +- - name: che-rust-1.39-7.25.2 +- image: quay.io/eclipse/che-rust-1.39@sha256:04ae0e0fbf3eab860159d7c601ae2f5f037bc12f6e48e96d97b0d683525aaed6 +- # tag: quay.io/eclipse/che-rust-1.39:7.25.2 ++ - name: che-cpp-rhel7-7.26.0 ++ image: quay.io/eclipse/che-cpp-rhel7@sha256:518f36edbd4fde7886a44ba8d1009606e2ea239e68d39eda3107061f29bd7755 ++ # tag: quay.io/eclipse/che-cpp-rhel7:7.26.0 ++ - name: che-dotnet-2.2-7.26.0 ++ image: quay.io/eclipse/che-dotnet-2.2@sha256:232d28b69935ed48c6c48937bee5ebb38cf4d329afa264f0a8b1887a80048e06 ++ # tag: quay.io/eclipse/che-dotnet-2.2:7.26.0 ++ - name: che-dotnet-3.1-7.26.0 ++ image: quay.io/eclipse/che-dotnet-3.1@sha256:3af7bbaaa99b44123c0f97835dc6c8eaa088aa5b0e50d4df72c1eaa3335883d5 ++ # tag: quay.io/eclipse/che-dotnet-3.1:7.26.0 ++ - name: che-golang-1.14-7.26.0 ++ image: quay.io/eclipse/che-golang-1.14@sha256:a31cc1b8bf8e8f40b2c04bafa2b485fdc7348005a2f5693ea5ed6529fa5fb630 ++ # tag: quay.io/eclipse/che-golang-1.14:7.26.0 ++ - name: che-java11-gradle-7.26.0 ++ image: quay.io/eclipse/che-java11-gradle@sha256:c2681ccc5da2c3e3f415d81145f00324eb59adb67e0eed88b002ebaec43d46d2 ++ # tag: quay.io/eclipse/che-java11-gradle:7.26.0 ++ - name: che-java11-maven-7.26.0 ++ image: quay.io/eclipse/che-java11-maven@sha256:e69ee17bae230db82c03d537b904888d70cb0297ad166d75e13b994c4b61230c ++ # tag: quay.io/eclipse/che-java11-maven:7.26.0 ++ - name: che-java8-maven-7.26.0 ++ image: quay.io/eclipse/che-java8-maven@sha256:ade3ea5b837b2e20c2b6cf0d32536d9c4ca8e9abaa1bfa897c68f4521c2c4ebf ++ # tag: quay.io/eclipse/che-java8-maven:7.26.0 ++ - name: che-nodejs10-community-7.26.0 ++ image: quay.io/eclipse/che-nodejs10-community@sha256:3fdcc11fcbb109a780dacf505dc43d9c954dd6d31ddf56ee1ba58cacedaa7624 ++ # tag: quay.io/eclipse/che-nodejs10-community:7.26.0 ++ - name: che-nodejs10-ubi-7.26.0 ++ image: quay.io/eclipse/che-nodejs10-ubi@sha256:2c8b10bc8f56393f41b61d8e4389cfff204f655a569b3875f6870ee0b095ba19 ++ # tag: quay.io/eclipse/che-nodejs10-ubi:7.26.0 ++ - name: che-nodejs12-community-7.26.0 ++ image: quay.io/eclipse/che-nodejs12-community@sha256:a7e9d9d297f697a47511fe26ab0484e8039fbf41a3ea875565dbad92d345328a ++ # tag: quay.io/eclipse/che-nodejs12-community:7.26.0 ++ - name: che-nodejs8-centos-7.26.0 ++ image: quay.io/eclipse/che-nodejs8-centos@sha256:cbe82a751c18f0f7aad5040e6a721280f9d0364bcd07463efd8d622ad4ec1bfa ++ # tag: quay.io/eclipse/che-nodejs8-centos:7.26.0 ++ - name: che-php-7-7.26.0 ++ image: quay.io/eclipse/che-php-7@sha256:a060b2a9b63527172b741615c2796a31f9d33ef73659e8c129dc79b750713a68 ++ # tag: quay.io/eclipse/che-php-7:7.26.0 ++ - name: che-python-3.8-7.26.0 ++ image: quay.io/eclipse/che-python-3.8@sha256:2b018f64a97d3e9ff3f42a89452207802e03ed51c8d18236223331abee883963 ++ # tag: quay.io/eclipse/che-python-3.8:7.26.0 ++ - name: che-quarkus-7.26.0 ++ image: quay.io/eclipse/che-quarkus@sha256:68acabcd82bd081a0c912f03cc06c27ebc84ac63d448a754e4d069188cda76c2 ++ # tag: quay.io/eclipse/che-quarkus:7.26.0 ++ - name: che-rust-1.39-7.26.0 ++ image: quay.io/eclipse/che-rust-1.39@sha256:fe8ecd80aa39c672d373d7c3f1b1a8fb35eb81f53c72bb42072ee27489f7dc0d ++ # tag: quay.io/eclipse/che-rust-1.39:7.26.0 + - name: ubi8-minimal-8.3 + image: registry.access.redhat.com/ubi8-minimal@sha256:4b9899b5c2906aae8e8fcd1012a5949e98bda68192c5e7bf6c1e171686c97d7a + # tag: registry.access.redhat.com/ubi8-minimal:8.3 diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/eclipse-che-preview-openshift.package.yaml b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/eclipse-che-preview-openshift.package.yaml index dc3fe43cd..e28c67f10 100644 --- a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/eclipse-che-preview-openshift.package.yaml +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/eclipse-che-preview-openshift.package.yaml @@ -1,5 +1,5 @@ channels: -- currentCSV: eclipse-che-preview-openshift.v7.25.2 +- currentCSV: eclipse-che-preview-openshift.v7.26.0 name: stable defaultChannel: stable packageName: eclipse-che-preview-openshift