diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.crd.yaml b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.crd.yaml new file mode 100644 index 000000000..a3cee19ff --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.crd.yaml @@ -0,0 +1,679 @@ +# +# Copyright (c) 2012-2020 Red Hat, Inc. +# This program and the accompanying materials are made +# available under the terms of the Eclipse Public License 2.0 +# which is available at https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +# +# Contributors: +# Red Hat, Inc. - initial API and implementation +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: checlusters.org.eclipse.che +spec: + group: org.eclipse.che + names: + kind: CheCluster + listKind: CheClusterList + plural: checlusters + singular: checluster + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + description: The `CheCluster` custom resource allows defining and managing a + Che server installation + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired configuration of the Che installation. Based on these + settings, the operator automatically creates and maintains several config + maps that will contain the appropriate environment variables the various + components of the Che installation. These generated config maps should + NOT be updated manually. + properties: + auth: + description: Configuration settings related to the Authentication used + by the Che installation. + properties: + externalIdentityProvider: + description: 'Instructs the operator on whether or not to deploy + a dedicated Identity Provider (Keycloak or RH SSO instance). By + default a dedicated Identity Provider server is deployed as part + of the Che installation. But if `externalIdentityProvider` is + `true`, then no dedicated identity provider will be deployed by + the operator and you might need to provide details about the external + identity provider you want to use. See also all the other fields + starting with: `identityProvider`.' + type: boolean + identityProviderAdminUserName: + description: Overrides the name of the Identity Provider admin user. + Defaults to `admin`. + type: string + identityProviderClientId: + description: Name of a Identity provider (Keycloak / RH SSO) `client-id` + that should be used for Che. This is useful to override it ONLY + if you use an external Identity Provider (see the `externalIdentityProvider` + field). If omitted or left blank, it will be set to the value + of the `flavour` field suffixed with `-public`. + type: string + identityProviderImage: + description: Overrides the container image used in the Identity + Provider (Keycloak / RH SSO) deployment. This includes the image + tag. Omit it or leave it empty to use the defaut container image + provided by the operator. + type: string + identityProviderImagePullPolicy: + description: Overrides the image pull policy used in the Identity + Provider (Keycloak / RH SSO) deployment. Default value is `Always` + for `nightly` or `latest` images, and `IfNotPresent` in other + cases. + type: string + identityProviderIngress: + description: Ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + identityProviderPassword: + description: Overrides the password of Keycloak admin user. This + is useful to override it ONLY if you use an external Identity + Provider (see the `externalIdentityProvider` field). If omitted + or left blank, it will be set to an auto-generated password. + type: string + identityProviderPostgresPassword: + description: Password for The Identity Provider (Keycloak / RH SSO) + to connect to the database. This is useful to override it ONLY + if you use an external Identity Provider (see the `externalIdentityProvider` + field). If omitted or left blank, it will be set to an auto-generated + password. + type: string + identityProviderPostgresSecret: + description: 'The secret that contains `password` for The Identity + Provider (Keycloak / RH SSO) to connect to the database. If the + secret is defined then `identityProviderPostgresPassword` will + be ignored. If the value is omitted or left blank then there are + two scenarios: 1. `identityProviderPostgresPassword` is defined, + then it will be used to connect to the database. 2. `identityProviderPostgresPassword` + is not defined, then a new secret with the name `che-identity-postgres-secret` + will be created with an auto-generated value for `password`.' + type: string + identityProviderRealm: + description: Name of a Identity provider (Keycloak / RH SSO) realm + that should be used for Che. This is useful to override it ONLY + if you use an external Identity Provider (see the `externalIdentityProvider` + field). If omitted or left blank, it will be set to the value + of the `flavour` field. + type: string + identityProviderRoute: + description: Route custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + identityProviderSecret: + description: 'The secret that contains `user` and `password` for + Identity Provider. If the secret is defined then `identityProviderAdminUserName` + and `identityProviderPassword` are ignored. If the value is omitted + or left blank then there are two scenarios: 1. `identityProviderAdminUserName` + and `identityProviderPassword` are defined, then they will be + used. 2. `identityProviderAdminUserName` or `identityProviderPassword` + are not defined, then a new secret with the name `che-identity-secret` + will be created with default value `admin` for `user` and with + an auto-generated value for `password`.' + type: string + identityProviderURL: + description: Public URL of the Identity Provider server (Keycloak + / RH SSO server). You should set it ONLY if you use an external + Identity Provider (see the `externalIdentityProvider` field). + By default this will be automatically calculated and set by the + operator. + type: string + oAuthClientName: + description: Name of the OpenShift `OAuthClient` resource used to + setup identity federation on the OpenShift side. Auto-generated + if left blank. See also the `OpenShiftoAuth` field. + type: string + oAuthSecret: + description: Name of the secret set in the OpenShift `OAuthClient` + resource used to setup identity federation on the OpenShift side. + Auto-generated if left blank. See also the `OAuthClientName` field. + type: string + openShiftoAuth: + description: 'Enables the integration of the identity provider (Keycloak + / RHSSO) with OpenShift OAuth. Enabled by default on OpenShift. + This will allow users to directly login with their Openshift user + through the Openshift login, and have their workspaces created + under personal OpenShift namespaces. WARNING: the `kubeadmin` + user is NOT supported, and logging through it will NOT allow accessing + the Che Dashboard.' + type: boolean + updateAdminPassword: + description: Forces the default `admin` Che user to update password + on first login. Defaults to `false`. + type: boolean + type: object + database: + description: Configuration settings related to the database used by + the Che installation. + properties: + chePostgresDb: + description: Postgres database name that the Che server uses to + connect to the DB. Defaults to `dbche`. + type: string + chePostgresHostName: + description: Postgres Database hostname that the Che server uses + to connect to. Defaults to postgres. This value should be overridden + ONLY when using an external database (see field `externalDb`). + In the default case it will be automatically set by the operator. + type: string + chePostgresPassword: + description: Postgres password that the Che server should use to + connect to the DB. If omitted or left blank, it will be set to + an auto-generated value. + type: string + chePostgresPort: + description: Postgres Database port that the Che server uses to + connect to. Defaults to 5432. This value should be overridden + ONLY when using an external database (see field `externalDb`). + In the default case it will be automatically set by the operator. + type: string + chePostgresSecret: + description: 'The secret that contains Postgres `user` and `password` + that the Che server should use to connect to the DB. If the secret + is defined then `chePostgresUser` and `chePostgresPassword` are + ignored. If the value is omitted or left blank then there are + two scenarios: 1. `chePostgresUser` and `chePostgresPassword` + are defined, then they will be used to connect to the DB. 2. `chePostgresUser` + or `chePostgresPassword` are not defined, then a new secret with + the name `che-postgres-secret` will be created with default value + of `pgche` for `user` and with an auto-generated value for `password`.' + type: string + chePostgresUser: + description: Postgres user that the Che server should use to connect + to the DB. Defaults to `pgche`. + type: string + externalDb: + description: 'Instructs the operator on whether or not to deploy + a dedicated database. By default a dedicated Postgres database + is deployed as part of the Che installation. But if `externalDb` + is `true`, then no dedicated database will be deployed by the + operator and you might need to provide connection details to the + external DB you want to use. See also all the fields starting + with: `chePostgres`.' + type: boolean + postgresImage: + description: Overrides the container image used in the Postgres + database deployment. This includes the image tag. Omit it or leave + it empty to use the defaut container image provided by the operator. + type: string + postgresImagePullPolicy: + description: Overrides the image pull policy used in the Postgres + database deployment. Default value is `Always` for `nightly` or + `latest` images, and `IfNotPresent` in other cases. + type: string + type: object + k8s: + description: Configuration settings specific to Che installations made + on upstream Kubernetes. + properties: + ingressClass: + description: 'Ingress class that will define the which controler + will manage ingresses. Defaults to `nginx`. NB: This drives the + `is kubernetes.io/ingress.class` annotation on Che-related ingresses.' + type: string + ingressDomain: + description: 'Global ingress domain for a K8S cluster. This MUST + be explicitly specified: there are no defaults.' + type: string + ingressStrategy: + description: Strategy for ingress creation. This can be `multi-host` + (host is explicitly provided in ingress), `single-host` (host + is provided, path-based rules) and `default-host.*`(no host is + provided, path-based rules). Defaults to `"multi-host` Deprecated + in favor of "serverExposureStrategy" in the "server" section, + which defines this regardless of the cluster type. If both are + defined, `serverExposureStrategy` takes precedence. + type: string + securityContextFsGroup: + description: FSGroup the Che pod and Workspace pods containers should + run in. Defaults to `1724`. + type: string + securityContextRunAsUser: + description: ID of the user the Che pod and Workspace pods containers + should run as. Default to `1724`. + type: string + singleHostExposureType: + description: When the serverExposureStrategy is set to "single-host", + the way the server, registries and workspaces are exposed is further + configured by this property. The possible values are "native" + (which means that the server and workspaces are exposed using + ingresses on K8s) or "gateway" where the server and workspaces + are exposed using a custom gateway based on Traefik. All the endpoints + whether backed by the ingress or gateway "route" always point + to the subpaths on the same domain. Defaults to "native". + type: string + tlsSecretName: + description: Name of a secret that will be used to setup ingress + TLS termination if TLS is enabled. If the field is empty string, + then 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` Che server endpoint. Default to `true`. + type: boolean + type: object + server: + description: General configuration settings related to the Che server + and the plugin and devfile registries + properties: + airGapContainerRegistryHostname: + description: Optional hostname (or url) to an alternate container + registry to pull images from. This value overrides the container + registry hostname defined in all the default container images + involved in a Che deployment. This is particularly useful to install + Che in an air-gapped environment. + type: string + airGapContainerRegistryOrganization: + description: Optional repository name of an alternate container + registry to pull images from. This value overrides the container + registry organization defined in all the default container images + involved in a Che deployment. This is particularly useful to install + Che in an air-gapped environment. + type: string + allowUserDefinedWorkspaceNamespaces: + description: Defines if a user is able to specify Kubernetes namespace + (or OpenShift project) different from the default. It's NOT RECOMMENDED + to configured true without OAuth configured. This property is + also used by the OpenShift infra. + type: boolean + cheDebug: + description: Enables the debug mode for Che server. Defaults to + `false`. + type: string + cheFlavor: + description: Flavor of the installation. This is either `che` for + upstream Che installations, or `codeready` for CodeReady Workspaces + installation. In most cases the default value should not be overridden. + type: string + cheHost: + description: Public hostname of the installed Che server. If value + is omitted then it will be automatically set by the operator. + (see the `cheHostTLSSecret` field). + type: string + cheHostTLSSecret: + description: Name of a secret containing certificates to secure + ingress/route for the custom hostname of the installed Che server. + (see the `cheHost` field). + type: string + cheImage: + description: Overrides the container image used in Che deployment. + This does NOT include the container image tag. Omit it or leave + it empty to use the defaut container image provided by the operator. + type: string + cheImagePullPolicy: + description: Overrides the image pull policy used in Che deployment. + Default value is `Always` for `nightly` or `latest` images, and + `IfNotPresent` in other cases. + type: string + cheImageTag: + description: Overrides the tag of the container image used in Che + deployment. Omit it or leave it empty to use the defaut image + tag provided by the operator. + type: string + cheLogLevel: + description: 'Log level for the Che server: `INFO` or `DEBUG`. Defaults + to `INFO`.' + type: string + cheServerIngress: + description: Che server ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + cheServerRoute: + description: Che server route custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + cheWorkspaceClusterRole: + description: Custom cluster role bound to the user for the Che workspaces. + The default roles are used if this is omitted or left blank. + type: string + customCheProperties: + additionalProperties: + type: string + description: Map of additional environment variables that will be + applied in the generated `che` config map to be used by the Che + server, in addition to the values already generated from other + fields of the `CheCluster` custom resource (CR). If `customCheProperties` + contains a property that would be normally generated in `che` + config map from other CR fields, then the value defined in the + `customCheProperties` will be used instead. + type: object + devfileRegistryImage: + description: Overrides the container image used in the Devfile registry + deployment. This includes the image tag. Omit it or leave it empty + to use the defaut container image provided by the operator. + type: string + devfileRegistryIngress: + description: Devfile registry ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + devfileRegistryMemoryLimit: + description: Overrides the memory limit used in the Devfile registry + deployment. 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: Devfile registry route custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + devfileRegistryUrl: + description: Public URL of the Devfile registry, that serves sample, + ready-to-use devfiles. You should set it ONLY if you use an external + devfile registry (see the `externalDevfileRegistry` field). By + default this will be automatically calculated by the operator. + type: string + externalDevfileRegistry: + description: Instructs the operator on whether or not to deploy + a dedicated Devfile registry server. By default a dedicated devfile + registry server is started. But if `externalDevfileRegistry` is + `true`, then no such dedicated server will be started by the operator + and you will have to manually set the `devfileRegistryUrl` field + type: boolean + externalPluginRegistry: + description: Instructs the operator on whether or not to deploy + a dedicated Plugin registry server. By default a dedicated plugin + registry server is started. But if `externalPluginRegistry` is + `true`, then no such dedicated server will be started by the operator + and you will have to manually set the `pluginRegistryUrl` field. + type: boolean + gitSelfSignedCert: + description: If enabled, then the certificate from `che-git-self-signed-cert` + config map will be propagated to the Che components and provide + particular configuration for Git. + type: boolean + nonProxyHosts: + description: 'List of hosts that should not use the configured proxy. + So specify wild card domain use the following form `.` + and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32` + Only use when configuring a proxy is required. Operator respects + OpenShift cluster wide proxy configuration and no additional configuration + is required, but defining `nonProxyHosts` in a custom resource + leads to merging non proxy hosts lists from the cluster proxy + configuration and ones defined in the custom resources. (see the + doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html) + (see also the `proxyURL` fields).' + type: string + pluginRegistryImage: + description: Overrides the container image used in the Plugin registry + deployment. This includes the image tag. Omit it or leave it empty + to use the default container image provided by the operator. + type: string + pluginRegistryIngress: + description: Plugin registry ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + pluginRegistryMemoryLimit: + description: Overrides the memory limit used in the Plugin registry + deployment. 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 (scope and select) objects. + type: string + type: object + pluginRegistryUrl: + description: Public URL of the Plugin registry, that serves sample + ready-to-use devfiles. You should set it ONLY if you use an external + devfile registry (see the `externalPluginRegistry` field). By + default this will be automatically calculated by the operator. + type: string + proxyPassword: + description: Password of the proxy server Only use when proxy configuration + is required (see also the `proxyURL`, `proxyUser` and `proxySecret` + fields). + type: string + proxyPort: + description: Port of the proxy server. Only use when configuring + a proxy is required. (see also the `proxyURL` and `nonProxyHosts` + fields). + type: string + proxySecret: + description: The secret that contains `user` and `password` for + a proxy server. If the secret is defined then `proxyUser` and + `proxyPassword` are ignored + type: string + proxyURL: + description: URL (protocol+hostname) of the proxy server. This drives + the appropriate changes in the `JAVA_OPTS` and `https(s)_proxy` + variables in the Che server and workspaces containers. Only use + when configuring a proxy is required. Operator respects OpenShift + cluster wide proxy configuration and no additional configuration + is required, but defining `proxyUrl` in a custom resource leads + to overrides the cluster proxy configuration with fields `proxyUrl`, + `proxyPort`, `proxyUser` and `proxyPassword` from the custom resource. + (see the doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html) + (see also the `proxyPort` and `nonProxyHosts` fields). + type: string + proxyUser: + description: User name of the proxy server. Only use when configuring + a proxy is required (see also the `proxyURL`, `proxyPassword` + and `proxySecret` fields). + type: string + selfSignedCert: + description: Deprecated. The value of this flag is ignored. Che + operator will automatically detect if router certificate is self-signed. + If so it will be propagated to Che server and some other components. + type: boolean + serverExposureStrategy: + description: Sets the server and workspaces exposure type. Possible + values are "multi-host", "single-host", "default-host". Defaults + to "multi-host" which creates a separate ingress (or route on + OpenShift) for every required endpoint. "single-host" makes Che + exposed on a single hostname with workspaces exposed on subpaths. + Please read the docs to learn about the limitations of this approach. + Also consult the `singleHostExposureType` property to further + configure how the operator and Che server make that happen on + Kubernetes. "default-host" exposes che server on the host of the + cluster. Please read the docs to learn about the limitations of + this approach. + type: string + serverMemoryLimit: + description: Overrides the memory limit used in the Che server deployment. + Defaults to 1Gi. + type: string + serverMemoryRequest: + description: Overrides the memory request used in the Che server + deployment. Defaults to 512Mi. + type: string + serverTrustStoreConfigMapName: + description: Name of the config-map with public certificates to + add to Java trust store of the Che server. This is usually required + when adding the OpenShift OAuth provider which has https endpoint + signed with self-signed cert. So, Che server must be aware of + its CA cert to be able to request it. This is disabled by default. + type: string + singleHostGatewayConfigMapLabels: + additionalProperties: + type: string + description: The labels that need to be present (and are put) on + the configmaps representing the gateway configuration. + type: object + singleHostGatewayConfigSidecarImage: + description: The image used for the gateway sidecar that provides + configuration to the gateway. Omit it or leave it empty to use + the defaut container image provided by the operator. + type: string + singleHostGatewayImage: + description: The image used for the gateway in the single host mode. + Omit it or leave it empty to use the defaut container image provided + by the operator. + type: string + tlsSupport: + description: Deprecated. Instructs the operator to deploy Che in + TLS mode. This is enabled by default. Disabling TLS may cause + malfunction of some Che components. + type: boolean + 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' + type: string + type: object + storage: + description: Configuration settings related to the persistent storage + used by the Che installation. + properties: + postgresPVCStorageClassName: + description: Storage class for the Persistent Volume Claim dedicated + to the Postgres database. If omitted or left blank, default storage + class is used. + type: string + preCreateSubPaths: + description: Instructs the Che server to launch a special pod to + pre-create a subpath in the Persistent Volumes. Defaults to `false`, + however it might need to enable it according to the configuration + of your K8S cluster. + type: boolean + pvcClaimSize: + description: Size of the persistent volume claim for workspaces. + Defaults to `1Gi` + type: string + pvcJobsImage: + description: Overrides the container image used to create sub-paths + in the Persistent Volumes. This includes the image tag. Omit it + or leave it empty to use the defaut container image provided by + the operator. See also the `preCreateSubPaths` field. + type: string + pvcStrategy: + description: Persistent volume claim strategy for the Che server. + This Can be:`common` (all workspaces PVCs in one volume), `per-workspace` + (one PVC per workspace for all declared volumes) and `unique` + (one PVC per declared volume). Defaults to `common`. + type: string + workspacePVCStorageClassName: + description: Storage class for the Persistent Volume Claims dedicated + to the Che workspaces. If omitted or left blank, default storage + class is used. + type: string + type: object + type: object + status: + description: CheClusterStatus defines the observed state of Che installation + properties: + cheClusterRunning: + description: Status of a Che installation. Can be `Available`, `Unavailable`, + or `Available, Rolling Update in Progress` + type: string + cheURL: + description: Public URL to the Che server + type: string + cheVersion: + description: Current installed Che version + type: string + dbProvisioned: + description: Indicates if or not a Postgres instance has been correctly + provisioned + type: boolean + devfileRegistryURL: + description: Public URL to the Devfile registry + type: string + helpLink: + description: A URL that can point to some URL where to find help related + to the current Operator status. + type: string + keycloakProvisioned: + description: Indicates whether an Identity Provider instance (Keycloak + / RH SSO) has been provisioned with realm, client and user + type: boolean + keycloakURL: + description: Public URL to the Identity Provider server (Keycloak / + RH SSO). + type: string + message: + description: A human readable message indicating details about why the + pod is in this condition. + type: string + openShiftoAuthProvisioned: + description: Indicates whether an Identity Provider instance (Keycloak + / RH SSO) has been configured to integrate with the OpenShift OAuth. + type: boolean + pluginRegistryURL: + description: Public URL to the Plugin registry + type: string + reason: + description: A brief CamelCase message indicating details about why + the pod is in this state. + type: string + type: object + type: object + version: v1 + versions: + - name: v1 + served: true + storage: true diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.crd.yaml.diff b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.crd.yaml.diff new file mode 100644 index 000000000..8a42a6c78 --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.crd.yaml.diff @@ -0,0 +1,42 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.21.2/eclipse-che-preview-kubernetes.crd.yaml 2020-11-20 14:14:56.431152015 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.crd.yaml 2020-11-20 14:18:33.461072931 +0000 +@@ -24,16 +24,18 @@ + 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/api-conventions.md#resources' ++ 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/api-conventions.md#types-kinds' ++ 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 +@@ -271,7 +273,9 @@ + type: string + tlsSecretName: + description: Name of a secret that will be used to setup ingress +- TLS termination if TLS is enabled. See also the `tlsSupport` field. ++ TLS termination if TLS is enabled. If the field is empty string, ++ then default cluster certificate will be used. See also the `tlsSupport` ++ field. + type: string + type: object + metrics: +@@ -667,6 +671,7 @@ + the pod is in this state. + type: string + type: object ++ type: object + version: v1 + versions: + - name: v1 diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.v7.22.0.clusterserviceversion.yaml b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.v7.22.0.clusterserviceversion.yaml new file mode 100644 index 000000000..6e9659e69 --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.v7.22.0.clusterserviceversion.yaml @@ -0,0 +1,815 @@ +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, + "cheFlavor": "", + "cheImage": "", + "cheImageTag": "", + "cheWorkspaceClusterRole": "", + "devfileRegistryImage": "", + "gitSelfSignedCert": false, + "nonProxyHosts": "", + "pluginRegistryImage": "", + "proxyPassword": "", + "proxyPort": "", + "proxyURL": "", + "proxyUser": "", + "serverExposureStrategy": "", + "serverMemoryLimit": "", + "serverMemoryRequest": "", + "serverTrustStoreConfigMapName": "", + "singleHostGatewayConfigMapLabels": {}, + "singleHostGatewayConfigSidecarImage": "", + "singleHostGatewayImage": "", + "tlsSupport": true, + "workspaceNamespaceDefault": "" + }, + "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:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + createdAt: "2020-11-20T14:18:33Z" + description: A Kube-native development solution that delivers portable and collaborative + developer workspaces. + operatorframework.io/suggested-namespace: eclipse-che + repository: https://github.com/eclipse/che-operator + support: Eclipse Foundation + name: eclipse-che-preview-kubernetes.v7.22.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 may 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 can point 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). + 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: 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 + mediatype: image/png + install: + spec: + clusterPermissions: + - rules: + - apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterrolebindings + verbs: + - list + - create + - watch + serviceAccountName: che-operator + - rules: + - apiGroups: + - "" + resources: + - namespaces + verbs: + - update + - get + serviceAccountName: che-namespace-editor + deployments: + - name: che-operator + spec: + replicas: 1 + selector: + matchLabels: + app: che-operator + strategy: {} + template: + metadata: + labels: + app: che-operator + 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.22.0 + - name: RELATED_IMAGE_che_server + value: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + - name: RELATED_IMAGE_plugin_registry + value: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + - name: RELATED_IMAGE_devfile_registry + value: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + - 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:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - name: RELATED_IMAGE_postgres + value: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + - name: RELATED_IMAGE_keycloak + value: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + - 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_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_GIYDEMBOGIWTANZVHE3DSMY_ + value: quay.io/che-incubator/che-editor-intellij-community@sha256:7e2b1812b55739bd6dd894625d4d2b684207af07dbd9706e5b26f720aefbb6db + - 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_G4XDEMJOGE______ + value: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NBQXG23FNRWC2YRWGQYDGOLG + value: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONRWC3DBFUYWEZJWHA3TO___ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: RELATED_IMAGE_che_sidecar_bazel_plugin_registry_image_GMXDELRQFVSTGNJSMU3GE___ + value: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRHAWTGOLGGE4WIZA_ + value: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + - name: RELATED_IMAGE_che_sidecar_clang_plugin_registry_image_HAWTQM3BMRRDGYI_ + value: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + - name: RELATED_IMAGE_che_sidecar_dart_plugin_registry_image_GIXDCMBNMEZDSNJZMU3A____ + value: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGMWTEZRTMIYDKOA_ + value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + - name: RELATED_IMAGE_che_sidecar_dotnet_plugin_registry_image_GMXDCLRTGAYS2NDCMRRWIYZS + value: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + - name: RELATED_IMAGE_che_sidecar_flutter_plugin_registry_image_GMXDCNBOGEWTKNDBHE2TCZA_ + value: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + - name: RELATED_IMAGE_che_sidecar_go_plugin_registry_image_GEXDCNBOGQWTGZLEMM4TENY_ + value: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2N3CMQ4GGODD + value: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2OBWGI3TIZJT + value: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_HAWTAY3GMJQWGYQ_ + value: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDELRRFU3DCNBUGE2DI___ + value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEYC2MDDMI2WINZY + value: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEZC2MBSGY2DCNTD + value: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEZC2ZDBHFRTGNTC + value: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDELRQFU3GIMRSGE2GE___ + value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WWEOJVMYZDGZQ_ + value: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + - name: RELATED_IMAGE_che_sidecar_protobuf_plugin_registry_image_GAXDILRSFVQTOOLBGJTGM___ + value: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + - name: RELATED_IMAGE_che_sidecar_python_plugin_registry_image_GMXDQLRWFU2TSMJTMZRTE___ + value: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + - name: RELATED_IMAGE_che_sidecar_ruby_plugin_registry_image_GIXDMLJXGZTDCMJSGU______ + value: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + - name: RELATED_IMAGE_che_sidecar_shellcheck_plugin_registry_image_OYYC4NZOGEWWEMJWMM2WENI_ + value: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + - name: RELATED_IMAGE_che_sidecar_sonarlint_plugin_registry_image_GEXDCNROGAWTIYLGGUYDGOI_ + value: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + - name: RELATED_IMAGE_che_sidecar_tekton_plugin_registry_image_GAXDELRQFU3WCODCGRQWI___ + value: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFVQTQZTFGM4TA___ + value: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______ + value: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 + - 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_G4XDEMROGA______ + value: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 + - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e + - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d + - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 + - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 + - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d + - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b + - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 + - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 + - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 + - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 + - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da + - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 + - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + imagePullPolicy: IfNotPresent + name: che-operator + ports: + - containerPort: 60000 + name: metrics + resources: {} + restartPolicy: Always + serviceAccountName: che-operator + terminationGracePeriodSeconds: 5 + 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: + - '*' + verbs: + - '*' + 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.21.2 + version: 7.22.0 + relatedImages: + - name: che-operator-7.22.0 + image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + # tag: quay.io/eclipse/che-operator:7.22.0 + - name: postgresql-96-centos7-9.6 + image: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: centos/postgresql-96-centos7:9.6 + - 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-devfile-registry-7.22.0 + image: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + # tag: quay.io/eclipse/che-devfile-registry:7.22.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.22.0 + image: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + # tag: quay.io/eclipse/che-keycloak:7.22.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.22.0 + image: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + # tag: quay.io/eclipse/che-plugin-registry:7.22.0 + - name: che-server-7.22.0 + image: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + # tag: quay.io/eclipse/che-server:7.22.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-201 + image: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8-minimal:8.3-201 + - 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-0759693 + image: quay.io/che-incubator/che-editor-intellij-community@sha256:7e2b1812b55739bd6dd894625d4d2b684207af07dbd9706e5b26f720aefbb6db + # tag: quay.io/che-incubator/che-editor-intellij-community:2020.2-0759693 + - 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.21.1 + image: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + # tag: quay.io/eclipse/che-machine-exec:7.21.1 + - name: che-machine-exec-7.21.2 + image: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + # tag: quay.io/eclipse/che-machine-exec:7.21.2 + - name: che-machine-exec-7.22.0 + image: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + # tag: quay.io/eclipse/che-machine-exec:7.22.0 + - name: che-plugin-sidecar-haskell-b64039f + image: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 + # tag: quay.io/eclipse/che-plugin-sidecar:haskell-b64039f + - name: che-plugin-sidecar-scala-1be6877 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + # tag: quay.io/eclipse/che-plugin-sidecar:scala-1be6877 + - name: che-sidecar-bazel-3.2.0-e352e6b + image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + # tag: quay.io/eclipse/che-sidecar-bazel:3.2.0-e352e6b + - name: che-sidecar-camelk-0.0.18-39f19dd + image: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + # tag: quay.io/eclipse/che-sidecar-camelk:0.0.18-39f19dd + - name: che-sidecar-clang-8-83adb3a + image: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + # tag: quay.io/eclipse/che-sidecar-clang:8-83adb3a + - name: che-sidecar-dart-2.10-a2959e6 + image: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + # tag: quay.io/eclipse/che-sidecar-dart:2.10-a2959e6 + - name: che-sidecar-dependency-analytics-0.0.13-2f3b058 + image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.13-2f3b058 + - name: che-sidecar-dotnet-3.1.301-4bdcdc2 + image: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + # tag: quay.io/eclipse/che-sidecar-dotnet:3.1.301-4bdcdc2 + - name: che-sidecar-flutter-3.14.1-54a951d + image: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + # tag: quay.io/eclipse/che-sidecar-flutter:3.14.1-54a951d + - name: che-sidecar-go-1.14.4-3edc927 + image: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + # tag: quay.io/eclipse/che-sidecar-go:1.14.4-3edc927 + - name: che-sidecar-java-11-7bd8c8c + image: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + # tag: quay.io/eclipse/che-sidecar-java:11-7bd8c8c + - name: che-sidecar-java-11-86274e3 + image: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + # tag: quay.io/eclipse/che-sidecar-java:11-86274e3 + - name: che-sidecar-java-8-0cfbacb + image: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + # tag: quay.io/eclipse/che-sidecar-java:8-0cfbacb + - name: che-sidecar-kubernetes-tooling-1.2.1-6144144 + image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.2.1-6144144 + - name: che-sidecar-node-10-0cb5d78 + image: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + # tag: quay.io/eclipse/che-sidecar-node:10-0cb5d78 + - name: che-sidecar-node-12-026416c + image: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + # tag: quay.io/eclipse/che-sidecar-node:12-026416c + - name: che-sidecar-node-12-da9c36b + image: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + # tag: quay.io/eclipse/che-sidecar-node:12-da9c36b + - name: che-sidecar-openshift-connector-0.2.0-6d2214b + image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.2.0-6d2214b + - name: che-sidecar-php-7-b95f23f + image: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + # tag: quay.io/eclipse/che-sidecar-php:7-b95f23f + - name: che-sidecar-protobuf-0.4.2-a79a2ff + image: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + # tag: quay.io/eclipse/che-sidecar-protobuf:0.4.2-a79a2ff + - name: che-sidecar-python-3.8.6-5913fc2 + image: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + # tag: quay.io/eclipse/che-sidecar-python:3.8.6-5913fc2 + - name: che-sidecar-ruby-2.6-76f1125 + image: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + # tag: quay.io/eclipse/che-sidecar-ruby:2.6-76f1125 + - name: che-sidecar-shellcheck-v0.7.1-b16c5b5 + image: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + # tag: quay.io/eclipse/che-sidecar-shellcheck:v0.7.1-b16c5b5 + - name: che-sidecar-sonarlint-1.16.0-4af5039 + image: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + # tag: quay.io/eclipse/che-sidecar-sonarlint:1.16.0-4af5039 + - name: che-sidecar-tekton-0.2.0-7a8b4ad + image: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + # tag: quay.io/eclipse/che-sidecar-tekton:0.2.0-7a8b4ad + - name: che-sidecar-vale-0.9.1-a8fe390 + image: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-a8fe390 + - name: che-theia-endpoint-runtime-binary-7.21.1 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.1 + - name: che-theia-endpoint-runtime-binary-7.21.2 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.2 + - name: che-theia-endpoint-runtime-binary-7.22.0 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.22.0 + - name: che-theia-7.21.1 + image: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + # tag: quay.io/eclipse/che-theia:7.21.1 + - name: che-theia-7.21.2 + image: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + # tag: quay.io/eclipse/che-theia:7.21.2 + - name: che-theia-7.22.0 + image: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + # tag: quay.io/eclipse/che-theia:7.22.0 + - name: mta-vscode-extension-latest + image: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 + # tag: quay.io/windupeng/mta-vscode-extension:latest + - 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.22.0 + image: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 + # tag: quay.io/eclipse/che-cpp-rhel7:7.22.0 + - name: che-dotnet-2.2-7.22.0 + image: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e + # tag: quay.io/eclipse/che-dotnet-2.2:7.22.0 + - name: che-dotnet-3.1-7.22.0 + image: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d + # tag: quay.io/eclipse/che-dotnet-3.1:7.22.0 + - name: che-golang-1.14-7.22.0 + image: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 + # tag: quay.io/eclipse/che-golang-1.14:7.22.0 + - name: che-java11-gradle-7.22.0 + image: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 + # tag: quay.io/eclipse/che-java11-gradle:7.22.0 + - name: che-java11-maven-7.22.0 + image: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d + # tag: quay.io/eclipse/che-java11-maven:7.22.0 + - name: che-java8-maven-7.22.0 + image: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + # tag: quay.io/eclipse/che-java8-maven:7.22.0 + - name: che-nodejs10-community-7.22.0 + image: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b + # tag: quay.io/eclipse/che-nodejs10-community:7.22.0 + - name: che-nodejs10-ubi-7.22.0 + image: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 + # tag: quay.io/eclipse/che-nodejs10-ubi:7.22.0 + - name: che-nodejs12-community-7.22.0 + image: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 + # tag: quay.io/eclipse/che-nodejs12-community:7.22.0 + - name: che-nodejs8-centos-7.22.0 + image: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 + # tag: quay.io/eclipse/che-nodejs8-centos:7.22.0 + - name: che-php-7-7.22.0 + image: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + # tag: quay.io/eclipse/che-php-7:7.22.0 + - name: che-python-3.7-7.22.0 + image: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 + # tag: quay.io/eclipse/che-python-3.7:7.22.0 + - name: che-python-3.8-7.22.0 + image: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da + # tag: quay.io/eclipse/che-python-3.8:7.22.0 + - name: che-quarkus-7.22.0 + image: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 + # tag: quay.io/eclipse/che-quarkus:7.22.0 + - name: che-rust-1.39-7.22.0 + image: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + # tag: quay.io/eclipse/che-rust-1.39:7.22.0 + - name: ubi-minimal- + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8/ubi-minimal diff --git a/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.v7.22.0.clusterserviceversion.yaml.diff b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.v7.22.0.clusterserviceversion.yaml.diff new file mode 100644 index 000000000..aa5fc2ff0 --- /dev/null +++ b/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.v7.22.0.clusterserviceversion.yaml.diff @@ -0,0 +1,1130 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.21.2/eclipse-che-preview-kubernetes.v7.21.2.clusterserviceversion.yaml 2020-11-20 14:14:56.431152015 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-kubernetes/deploy/olm-catalog/eclipse-che-preview-kubernetes/7.22.0/eclipse-che-preview-kubernetes.v7.22.0.clusterserviceversion.yaml 2020-11-20 14:19:50.717987079 +0000 +@@ -8,108 +8,147 @@ + "apiVersion": "org.eclipse.che/v1", + "kind": "CheCluster", + "metadata": { +- "name": "eclipse-che" ++ "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": { +- "ingressDomain": "", +- "tlsSecretName": "" +- }, +- "server": { +- "cheImageTag": "", +- "devfileRegistryImage": "", +- "pluginRegistryImage": "", +- "tlsSupport": true, +- "selfSignedCert": false +- }, +- "database": { +- "externalDb": false, +- "chePostgresHostName": "", +- "chePostgresPort": "", +- "chePostgresUser": "", +- "chePostgresPassword": "", +- "chePostgresDb": "" +- }, +- "auth": { +- "identityProviderImage": "", +- "externalIdentityProvider": false, +- "identityProviderURL": "", +- "identityProviderRealm": "", +- "identityProviderClientId": "" +- }, +- "storage": { +- "pvcStrategy": "per-workspace", +- "pvcClaimSize": "1Gi", +- "preCreateSubPaths": true +- }, +- "metrics": { +- "enable": true +- } ++ "ingressClass": "", ++ "ingressDomain": "", ++ "ingressStrategy": "", ++ "securityContextFsGroup": "", ++ "securityContextRunAsUser": "", ++ "singleHostExposureType": "", ++ "tlsSecretName": "che-tls" ++ }, ++ "metrics": { ++ "enable": true ++ }, ++ "server": { ++ "allowUserDefinedWorkspaceNamespaces": false, ++ "cheFlavor": "", ++ "cheImage": "", ++ "cheImageTag": "", ++ "cheWorkspaceClusterRole": "", ++ "devfileRegistryImage": "", ++ "gitSelfSignedCert": false, ++ "nonProxyHosts": "", ++ "pluginRegistryImage": "", ++ "proxyPassword": "", ++ "proxyPort": "", ++ "proxyURL": "", ++ "proxyUser": "", ++ "serverExposureStrategy": "", ++ "serverMemoryLimit": "", ++ "serverMemoryRequest": "", ++ "serverTrustStoreConfigMapName": "", ++ "singleHostGatewayConfigMapLabels": {}, ++ "singleHostGatewayConfigSidecarImage": "", ++ "singleHostGatewayImage": "", ++ "tlsSupport": true, ++ "workspaceNamespaceDefault": "" ++ }, ++ "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:de7b3a191546f1ae2c0c7dc3845378d0e084b51db2fafa8a07145504eece1b91 +- createdAt: "2020-11-17T08:39:07Z" ++ containerImage: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 ++ createdAt: "2020-11-20T14:18:33Z" + description: A Kube-native development solution that delivers portable and collaborative + developer workspaces. + operatorframework.io/suggested-namespace: eclipse-che + repository: https://github.com/eclipse/che-operator + support: Eclipse Foundation +- name: eclipse-che-preview-kubernetes.v7.21.2 ++ name: eclipse-che-preview-kubernetes.v7.22.0 + namespace: placeholder + spec: + apiservicedefinitions: {} + customresourcedefinitions: + owned: +- - description: Eclipse Che cluster with DB and Auth Server ++ - 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: TLS routes +- displayName: TLS Mode ++ - 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 + path: server.tlsSupport + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:booleanSwitch + statusDescriptors: +- - description: Ingress to access Eclipse Che ++ - 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: Ingress to access Keycloak Admin Console +- displayName: Keycloak Admin Console URL +- path: keycloakURL +- x-descriptors: +- - urn:alm:descriptor:org.w3:link +- - description: Eclipse Che server version +- displayName: Eclipse Che version ++ - description: Current installed Che version ++ displayName: 'displayName: Eclipse Che version' + path: cheVersion + x-descriptors: +- - urn:alm:descriptor:com.tectonic.ui:label +- - description: The current status of the application +- displayName: Status +- path: cheClusterRunning ++ - urn:alm:descriptor:org.w3:link ++ - description: A URL that can point to some URL where to find help related ++ to the current Operator status. ++ displayName: Help link ++ path: helpLink + x-descriptors: +- - urn:alm:descriptor:io.kubernetes.phase +- - description: Reason of the current status +- displayName: Reason +- path: reason ++ - urn:alm:descriptor:org.w3:link ++ - description: Public URL to the Identity Provider server (Keycloak / RH ++ SSO). ++ displayName: Keycloak Admin Console URL ++ path: keycloakURL + x-descriptors: +- - urn:alm:descriptor:text +- - description: Message explaining the current status ++ - 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: Link providing help related to the current status +- displayName: Help link +- path: helpLink ++ - description: A brief CamelCase message indicating details about why the ++ pod is in this state. ++ displayName: Reason ++ path: reason + x-descriptors: +- - urn:alm:descriptor:org.w3:link ++ - 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. +@@ -222,6 +261,26 @@ + mediatype: image/png + install: + spec: ++ clusterPermissions: ++ - rules: ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - clusterrolebindings ++ verbs: ++ - list ++ - create ++ - watch ++ serviceAccountName: che-operator ++ - rules: ++ - apiGroups: ++ - "" ++ resources: ++ - namespaces ++ verbs: ++ - update ++ - get ++ serviceAccountName: che-namespace-editor + deployments: + - name: che-operator + spec: +@@ -250,21 +309,21 @@ + - name: OPERATOR_NAME + value: che-operator + - name: CHE_VERSION +- value: 7.21.2 ++ value: 7.22.0 + - name: RELATED_IMAGE_che_server +- value: quay.io/eclipse/che-server@sha256:089f499781d8061ea9f0b621424378ac719a7928c19ae7868a156f4092d279a0 ++ value: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + - name: RELATED_IMAGE_plugin_registry +- value: quay.io/eclipse/che-plugin-registry@sha256:3e8e0b171b37c525ca4f00df878338a976038215505d751b67e7792b9a57d96c ++ value: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + - name: RELATED_IMAGE_devfile_registry +- value: quay.io/eclipse/che-devfile-registry@sha256:f4613d1e2bcc9111e3462b009249528b79e7b7dde27b0eccc2f80d56d2ca0e8f ++ value: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + - 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:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6 ++ value: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - name: RELATED_IMAGE_postgres + value: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + - name: RELATED_IMAGE_keycloak +- value: quay.io/eclipse/che-keycloak@sha256:32573a11e1f0dd4e1c4d03051f88d3dc4c2b38f5a31587c61406545115f4b5d0 ++ value: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + - 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 +@@ -295,18 +354,10 @@ + value: ca-certs + - name: RELATED_IMAGE_code_server_plugin_registry_image_GMXDMLRS + value: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- - name: RELATED_IMAGE_coder_plugin_registry_image_GIXDCNJSGMWXM43DGEXDGOBOGEWWG2DF +- value: docker.io/chinodesuuu/coder@sha256:6387eee627678d36fa1313017cf5620890f25559df8b24cb53e1d5f4ab6f4726 +- - name: RELATED_IMAGE_coder_plugin_registry_image_GIXDCNRVGAWXM43DGEXDGOJOGIWWG2DF +- value: docker.io/chinodesuuu/coder@sha256:1af9c45c3f8c9836dba10c4a2c7b43915bc04fa4b9b9cc598d4bad5cf036817e +- - name: RELATED_IMAGE_coder_plugin_registry_image_NZSXQ5A_ +- value: docker.io/chinodesuuu/coder@sha256:77f51200f6f9ff62551794be48a3497e464c93f2420877253b98de3e041e0e9d + - 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_rhamt_vscode_extension_plugin_registry_image_NJQXMYJY +- value: docker.io/windup3/rhamt-vscode-extension@sha256:a5cd9002cb992803a34a210e519582d341c74ee91248061103c08278c3db1f76 + - 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_GIYDEMBOGIWTANZVHE3DSMY_ +@@ -315,98 +366,38 @@ + 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_G4XDCNJOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNJOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:5d721f6e3b436a16ada88e19fd4bdc43c6ed9daab4ca168f4497f856146b383a +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNJOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNROGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:6c10be6622777471f0baacd0be488d9b57eb8ff9c5d3b107f9a0de9a5d3c19f8 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNROGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNROGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:c37020496b61157f109260477d0aa6e27d9e7a33058a64c20c02626834707cc6 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOJOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:06d8d0735033f5371613f9e1d8f6f54b298a2b93387702f5aecdf8818e393ada +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOJOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:bcb3f5458775291d0177688c77346a98d9ebc84a0f47cf93731134472e9fc5a5 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOJOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:0a6487575d43255875f67fe5cc38904a7a630d1bcb4e36d3d94ba614b429ac1d +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMBOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:abd5405e08cf7f5b6f46bd8aa558cbc82e4c70f332c0062af9b2c1c07d06045e +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMBOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:ccdf212f7466b255013ed56b3c567988b4601864baabd7d61be834aa4d9fb38c +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:cd4c3f246eddae4d5932429ec55451b46b014b0da67801eed1b18af33eb0924d + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 ++ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NBQXG23FNRWC2YRWGQYDGOLG ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONRWC3DBFUYWEZJWHA3TO___ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: RELATED_IMAGE_che_sidecar_bazel_plugin_registry_image_GMXDELRQFVSTGNJSMU3GE___ + value: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGQWTKOLEGI2TQYQ_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:ddd941979443a9962a27f2a059d95550768cbab76848d606ce410536ff2bdaa0 +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGUWWCNJXHBRTIYI_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:f830861c2a1d99ebb0579b4ee3761fbcd51cf42af54306cc6ae02d865866ffc3 +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGYWTOZBXGUZTQZQ_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:7e1e9b422cfd7bef16858c404eaad0ab1b288f273f89f056cf1b086744435954 +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRG4WTGZBXHBRTANY_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:602674d78a88c0d19a2103c2258b3c9e03aa5759e9a9a8c7dd9b11af96f7e61b + - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRHAWTGOLGGE4WIZA_ + value: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + - name: RELATED_IMAGE_che_sidecar_clang_plugin_registry_image_HAWTQM3BMRRDGYI_ + value: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + - name: RELATED_IMAGE_che_sidecar_dart_plugin_registry_image_GIXDCMBNMEZDSNJZMU3A____ + value: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 +- - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGIWWINBXHAZTKMI_ +- value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:392eb12ffac4c1369faec782221fe1758fd826c77aba8ce88ad3ecbf59154ed7 + - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGMWTEZRTMIYDKOA_ + value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 +- - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGMWWCMZYMNRDAYY_ +- value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:0708b3c63d2065ef96667cacec9a46570f00fcb0f107df3e902ac444e68e1170 +- - name: RELATED_IMAGE_che_sidecar_dotnet_plugin_registry_image_GIXDELRRGA2S2MTGMQ3GKNZY +- value: quay.io/eclipse/che-sidecar-dotnet@sha256:5c0957a726a0cafb4ffa9e757425128e3f702123d11c5e673ff8ee58c712aea2 + - name: RELATED_IMAGE_che_sidecar_dotnet_plugin_registry_image_GMXDCLRTGAYS2NDCMRRWIYZS + value: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + - name: RELATED_IMAGE_che_sidecar_flutter_plugin_registry_image_GMXDCNBOGEWTKNDBHE2TCZA_ + value: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + - name: RELATED_IMAGE_che_sidecar_go_plugin_registry_image_GEXDCNBOGQWTGZLEMM4TENY_ + value: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 +- - name: RELATED_IMAGE_che_sidecar_haskell_plugin_registry_image_HAXDCMBOGEWWKY3DMQ2TAMY_ +- value: quay.io/eclipse/che-sidecar-haskell@sha256:970d658ce856e6185db301c259017ef1e1588e3affea4f8fd6cf047f7f2a532b +- - name: RELATED_IMAGE_che_sidecar_haskell_plugin_registry_image_HAXDCMBOGIWWCNZZMM3DQYI_ +- value: quay.io/eclipse/che-sidecar-haskell@sha256:8e67a721a458fb07b8b8f975c5b313237b44e101be209905afddf4ddf66bebc0 +- - name: RELATED_IMAGE_che_sidecar_haskell_plugin_registry_image_HAXDQLRUFUYTIZRRMRSTS___ +- value: quay.io/eclipse/che-sidecar-haskell@sha256:8de87b3926b3ec9106c0fc0d1087787a07f935b64880323e78c3b30357af3554 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2N3CMQ4GGODD + value: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2OBWGI3TIZJT + value: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a +- - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2YJQGZRWEYRR +- value: quay.io/eclipse/che-sidecar-java@sha256:d35c57b1194f94672fcce2e1a4ea62448c6273966eb0d7d1df776e3164ed8dbb +- - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2ZRXGZRWCNBV +- value: quay.io/eclipse/che-sidecar-java@sha256:54a5f721588455403d8c2a81d1fbc8fef2c6a32aead44f2fb3e24a8a1fddb9a2 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_HAWTAY3GMJQWGYQ_ + value: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d +- - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDALRZFU4DEYZXGA2GK___ +- value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:55e83d7f8cbf6a044ca68a4beb95e1192ae71a6d27f24cec7e300588f127480f +- - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDCLRQFUZTCYJYGQ3DI___ +- value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:3f551189a697cac40870696f39dd92195021bbb3279e2f26902234ab65a88f10 +- - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDELRQFUZWKYJVG5SDK___ +- value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:882fca5fc7aad06a663a9c2b499e4f2de1cc991b48b0390b380e4ede1cb47f1f + - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDELRRFU3DCNBUGE2DI___ + value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEYC2MDDMI2WINZY +@@ -415,157 +406,77 @@ + value: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEZC2ZDBHFRTGNTC + value: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 +- - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDCLRSFUZDMMBRGUYDS___ +- value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:8e4403ef1f7f74af3568abd60ccf1b959e2f43bef0001ba7a77ca5f8bc0d5a0e +- - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDCLRVFU3DEMDEMJRTO___ +- value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:d780f74b137e21c56b6815e6a4ab7907b69dfaefb377b0838649c88c947287aa + - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDELRQFU3GIMRSGE2GE___ + value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 +- - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WTKYZVMVRWGNI_ +- value: quay.io/eclipse/che-sidecar-php@sha256:e4f1db4b5bc641485f42a5e0534c37894042c5302acfb1fefcfdf6d659aa7925 +- - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WTSZJZG4YTKZI_ +- value: quay.io/eclipse/che-sidecar-php@sha256:4f1af8a266fbbab9542c794cc8a74575d24813bc7f48f5efbd451b850931592c ++ - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WWEOJVMYZDGZQ_ ++ value: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + - name: RELATED_IMAGE_che_sidecar_protobuf_plugin_registry_image_GAXDILRSFVQTOOLBGJTGM___ + value: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c +- - name: RELATED_IMAGE_che_sidecar_python_plugin_registry_image_GMXDOLRTFU4GMMZZGM2DQ___ +- value: quay.io/eclipse/che-sidecar-python@sha256:9d910486a81d92ebdeaab4c2fc71546bee23ff7e3a986fdb9df4e458819cb958 + - name: RELATED_IMAGE_che_sidecar_python_plugin_registry_image_GMXDQLRWFU2TSMJTMZRTE___ + value: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + - name: RELATED_IMAGE_che_sidecar_ruby_plugin_registry_image_GIXDMLJXGZTDCMJSGU______ + value: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f +- - name: RELATED_IMAGE_che_sidecar_scala_plugin_registry_image_GAXDSLRQFU3GCOBTGNSWG___ +- value: quay.io/eclipse/che-sidecar-scala@sha256:bdae1cc3e0886421f610adf38f4216a5f2184eccd731107f3bbd3c1f3444b69b +- - name: RELATED_IMAGE_che_sidecar_scala_plugin_registry_image_GAXDSLRQFVRGEOBUGI2DI___ +- value: quay.io/eclipse/che-sidecar-scala@sha256:8585ac9d41a1e4a754d89225ec7cc25836236fbb370220bb8050fa121f34d82a + - name: RELATED_IMAGE_che_sidecar_shellcheck_plugin_registry_image_OYYC4NZOGEWWEMJWMM2WENI_ + value: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + - name: RELATED_IMAGE_che_sidecar_sonarlint_plugin_registry_image_GEXDCNROGAWTIYLGGUYDGOI_ + value: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + - name: RELATED_IMAGE_che_sidecar_tekton_plugin_registry_image_GAXDELRQFU3WCODCGRQWI___ + value: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 +- - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFUYDIZRSGU2GK___ +- value: quay.io/eclipse/che-sidecar-vale@sha256:a775aeac18fb50b3c0b517f3bcc63eaa497ded4250db0b868fabb1caf2c598b3 +- - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFVQWINJTMNRWM___ +- value: quay.io/eclipse/che-sidecar-vale@sha256:654b3efbdb73b2242ce32d4a0d7da77ac561942c2a37906cff49029a9481b2cc +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNJOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:ec9d069625d64d9525d540cb3adce6f798374bbbbe0334c1fd71cefd2bd9fd58 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNJOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNJOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNROGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNROGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14c3debebf62ec92dbf2b1536e4823ea66a89886b0b57a7518670af72727c252 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNROGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:41c4fbb43648aa0aab62f4ca9b4d9a1debce35c13cc64225a04f9df83c6a2c20 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOJOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2e4a64b57603f3a4471cbdf4e9e4078bb0246811c2a1da940d1cf7370595745a +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOJOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4dd127ad0c95c710cf5b65f9dc0bb9a607dffbd0e8e0dc2e0b1fa02e53fe3b9c +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOJOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e701676a75c1a34aaa141a6909fdd9caa42e2917427d84eb0d2ab82d0540774d +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMBOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a618b628130b2f8cac00ea45f7a30da497ca1905699a884d9ed6b623109f702f +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMBOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:3cc5fe39bf8ad43f9be221f5a34978bbfdbd44c8cfc6ddef96d1a4c67dd3fa91 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:de21ef29794811a87278d363cdedeab4f75af38a2850f69fa7988a53477276ea ++ - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFVQTQZTFGM4TA___ ++ value: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGA______ +- value: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGE______ +- value: quay.io/eclipse/che-theia@sha256:74d65d2d0accc3bb8c09ea2a0653c3b95c9e4602917252d6e1d5ef652102696f +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGI______ +- value: quay.io/eclipse/che-theia@sha256:f52414ef293498e14316de52c3d64e8b8537ef2b3044afd9ac9cf19489da7451 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNROGA______ +- value: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNROGE______ +- value: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNROGI______ +- value: quay.io/eclipse/che-theia@sha256:73639e49c4e369fefa21c73bac3933d17c68fb0912da9b377bec6e239f575bab +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGA______ +- value: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGE______ +- value: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGI______ +- value: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGA______ +- value: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGE______ +- value: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGI______ +- value: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOJOGA______ +- value: quay.io/eclipse/che-theia@sha256:acdf1ea0afe14143585cc81ae069b9db8ecc92b139f702ebc4a2f7fc6b67ea57 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOJOGE______ +- value: quay.io/eclipse/che-theia@sha256:3d29098601f80aef9e9ca6ccc353b07bd3f2334345b9665160050484b68794ca +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOJOGI______ +- value: quay.io/eclipse/che-theia@sha256:11b5fe33edd72df22f76d7933ba79029051f4c0c6adc6c1a91f2dfe4228455c9 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMBOGA______ +- value: quay.io/eclipse/che-theia@sha256:92a8bac94e446f1f933d1a92bc96dace9450c9f4efdef5539a429a37d14be904 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMBOGE______ +- value: quay.io/eclipse/che-theia@sha256:a56428ee28ceefca2a1cba51093f6015e0eee82659fec786f2e1fdc939fdb856 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGA______ +- value: quay.io/eclipse/che-theia@sha256:350aa6b1a2dcbfb25b9b02607257c5197494dcf2327fab0955681116a6883216 ++ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 +- - name: RELATED_IMAGE_mongodb_36_centos7_devfile_registry_image_ +- value: docker.io/centos/mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 +- - name: RELATED_IMAGE_mysql_57_centos7_devfile_registry_image_ +- value: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-cpp-rhel7@sha256:4b097d9f23977675e251ef2e6035d6697e6d30e996486e605dc808c6447cc169 +- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-dotnet-2.2@sha256:87cb6d5d941602f70913d5a2a77c22f01602004d34ba6f38667c00528f138522 +- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-dotnet-3.1@sha256:a32bde3f550f69aee2e396b0ec50a2c6f146b93a91ac3d8dbb76439c050aa6cb +- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-golang-1.14@sha256:36ad7da570e8e91bc04f12dc227b57836846080214a63c732eec829eeb903999 +- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-java11-gradle@sha256:99dd2cb3695bd1ac3e00cf62d4fd3e85ed33b034028e4f9c11390d866e1340c8 +- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-java11-maven@sha256:0e264808a1a1d5baf4fd83586ac6de2563ef0f419f263be1ffe6c3d9249d6da2 +- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-java8-maven@sha256:09a3078ca8cebf5ab51c8561818cd400e843cb5c885c5809ca870e21eab36156 +- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs10-community@sha256:b5e99db4c4b4fdcabd192a6ba7a460bf6553083c2d2e00861b3d14281e82d499 +- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs10-ubi@sha256:1a1cd469fb7dfb0565b71985713faf2c856e77e28796b557cdcb70df0e735f6b +- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs12-community@sha256:39c149ddd067547e5987372a167e787891f1d63dd2f22b9ed329a041b1bde4e7 +- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs8-centos@sha256:c20dc500027bd62c9212901bec97418e7ecddbfc098b9d6f843bb22376029c13 +- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-php-7@sha256:21bf88bb4850ff483330cbc6c965e08f13cae4573510d03aade8f3e8fd28c10c +- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-python-3.7@sha256:6db15f661b7b9cafde1de9d812bb7fe907eae2befc783b6e2933c262e7a4fa91 +- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-python-3.8@sha256:1b3fd6fa48a66b6e69dea4eab677b6266d831351f0b51dc239a61f526e6a6d36 +- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-quarkus@sha256:9588219c47a12016f4215ce526d1b99b83d08c4ad2de8f9ec6bef0b761b3b0c8 +- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-rust-1.39@sha256:bff3e0456df470babc0e3d7fe5e6c355bdaa02f73157ae3af92cab80f5618df2 ++ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 ++ - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______ ++ value: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 ++ - 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_G4XDEMROGA______ ++ value: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 ++ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e ++ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d ++ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 ++ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 ++ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d ++ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 ++ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b ++ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 ++ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 ++ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 ++ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb ++ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 ++ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da ++ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 ++ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee +- image: quay.io/eclipse/che-operator@sha256:de7b3a191546f1ae2c0c7dc3845378d0e084b51db2fafa8a07145504eece1b91 ++ image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + imagePullPolicy: IfNotPresent + name: che-operator + ports: +@@ -674,12 +585,12 @@ + maturity: stable + provider: + name: Eclipse Foundation +- replaces: eclipse-che-preview-kubernetes.v7.21.1 +- version: 7.21.2 ++ replaces: eclipse-che-preview-kubernetes.v7.21.2 ++ version: 7.22.0 + relatedImages: +- - name: che-operator-7.21.2 +- image: quay.io/eclipse/che-operator@sha256:de7b3a191546f1ae2c0c7dc3845378d0e084b51db2fafa8a07145504eece1b91 +- # tag: quay.io/eclipse/che-operator:7.21.2 ++ - name: che-operator-7.22.0 ++ image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 ++ # tag: quay.io/eclipse/che-operator:7.22.0 + - name: postgresql-96-centos7-9.6 + image: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: centos/postgresql-96-centos7:9.6 +@@ -689,54 +600,42 @@ + - name: configbump-0.1.4 + image: quay.io/che-incubator/configbump@sha256:175ff2ba1bd74429de192c0a9facf39da5699c6da9f151bd461b3dc8624dd532 + # tag: quay.io/che-incubator/configbump:0.1.4 +- - name: che-devfile-registry-7.21.2 +- image: quay.io/eclipse/che-devfile-registry@sha256:f4613d1e2bcc9111e3462b009249528b79e7b7dde27b0eccc2f80d56d2ca0e8f +- # tag: quay.io/eclipse/che-devfile-registry:7.21.2 ++ - name: che-devfile-registry-7.22.0 ++ image: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 ++ # tag: quay.io/eclipse/che-devfile-registry:7.22.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.21.2 +- image: quay.io/eclipse/che-keycloak@sha256:32573a11e1f0dd4e1c4d03051f88d3dc4c2b38f5a31587c61406545115f4b5d0 +- # tag: quay.io/eclipse/che-keycloak:7.21.2 ++ - name: che-keycloak-7.22.0 ++ image: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 ++ # tag: quay.io/eclipse/che-keycloak:7.22.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.21.2 +- image: quay.io/eclipse/che-plugin-registry@sha256:3e8e0b171b37c525ca4f00df878338a976038215505d751b67e7792b9a57d96c +- # tag: quay.io/eclipse/che-plugin-registry:7.21.2 +- - name: che-server-7.21.2 +- image: quay.io/eclipse/che-server@sha256:089f499781d8061ea9f0b621424378ac719a7928c19ae7868a156f4092d279a0 +- # tag: quay.io/eclipse/che-server:7.21.2 ++ - name: che-plugin-registry-7.22.0 ++ image: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb ++ # tag: quay.io/eclipse/che-plugin-registry:7.22.0 ++ - name: che-server-7.22.0 ++ image: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 ++ # tag: quay.io/eclipse/che-server:7.22.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.2-349 +- image: registry.access.redhat.com/ubi8-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6 +- # tag: registry.access.redhat.com/ubi8-minimal:8.2-349 ++ - name: ubi8-minimal-8.3-201 ++ image: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee ++ # tag: registry.access.redhat.com/ubi8-minimal:8.3-201 + - name: code-server-3.6.2 + image: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + # tag: codercom/code-server:3.6.2 +- - name: coder-2.1523-vsc1.38.1-che +- image: docker.io/chinodesuuu/coder@sha256:6387eee627678d36fa1313017cf5620890f25559df8b24cb53e1d5f4ab6f4726 +- # tag: docker.io/chinodesuuu/coder:2.1523-vsc1.38.1-che +- - name: coder-2.1650-vsc1.39.2-che +- image: docker.io/chinodesuuu/coder@sha256:1af9c45c3f8c9836dba10c4a2c7b43915bc04fa4b9b9cc598d4bad5cf036817e +- # tag: docker.io/chinodesuuu/coder:2.1650-vsc1.39.2-che +- - name: coder-next +- image: docker.io/chinodesuuu/coder@sha256:77f51200f6f9ff62551794be48a3497e464c93f2420877253b98de3e041e0e9d +- # tag: docker.io/chinodesuuu/coder:next + - 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: rhamt-vscode-extension-java8 +- image: docker.io/windup3/rhamt-vscode-extension@sha256:a5cd9002cb992803a34a210e519582d341c74ee91248061103c08278c3db1f76 +- # tag: docker.io/windup3/rhamt-vscode-extension:java8 + - name: eclipse-broadway- + image: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + # tag: docker.io/wsskeleton/eclipse-broadway +@@ -749,81 +648,24 @@ + - 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.15.0 +- image: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a +- # tag: quay.io/eclipse/che-machine-exec:7.15.0 +- - name: che-machine-exec-7.15.1 +- image: quay.io/eclipse/che-machine-exec@sha256:5d721f6e3b436a16ada88e19fd4bdc43c6ed9daab4ca168f4497f856146b383a +- # tag: quay.io/eclipse/che-machine-exec:7.15.1 +- - name: che-machine-exec-7.15.2 +- image: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f +- # tag: quay.io/eclipse/che-machine-exec:7.15.2 +- - name: che-machine-exec-7.16.0 +- image: quay.io/eclipse/che-machine-exec@sha256:6c10be6622777471f0baacd0be488d9b57eb8ff9c5d3b107f9a0de9a5d3c19f8 +- # tag: quay.io/eclipse/che-machine-exec:7.16.0 +- - name: che-machine-exec-7.16.1 +- image: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583 +- # tag: quay.io/eclipse/che-machine-exec:7.16.1 +- - name: che-machine-exec-7.16.2 +- image: quay.io/eclipse/che-machine-exec@sha256:c37020496b61157f109260477d0aa6e27d9e7a33058a64c20c02626834707cc6 +- # tag: quay.io/eclipse/che-machine-exec:7.16.2 +- - name: che-machine-exec-7.17.0 +- image: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2 +- # tag: quay.io/eclipse/che-machine-exec:7.17.0 +- - name: che-machine-exec-7.17.1 +- image: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972 +- # tag: quay.io/eclipse/che-machine-exec:7.17.1 +- - name: che-machine-exec-7.17.2 +- image: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06 +- # tag: quay.io/eclipse/che-machine-exec:7.17.2 +- - name: che-machine-exec-7.18.0 +- image: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f +- # tag: quay.io/eclipse/che-machine-exec:7.18.0 +- - name: che-machine-exec-7.18.1 +- image: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b +- # tag: quay.io/eclipse/che-machine-exec:7.18.1 +- - name: che-machine-exec-7.18.2 +- image: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76 +- # tag: quay.io/eclipse/che-machine-exec:7.18.2 +- - name: che-machine-exec-7.19.0 +- image: quay.io/eclipse/che-machine-exec@sha256:06d8d0735033f5371613f9e1d8f6f54b298a2b93387702f5aecdf8818e393ada +- # tag: quay.io/eclipse/che-machine-exec:7.19.0 +- - name: che-machine-exec-7.19.1 +- image: quay.io/eclipse/che-machine-exec@sha256:bcb3f5458775291d0177688c77346a98d9ebc84a0f47cf93731134472e9fc5a5 +- # tag: quay.io/eclipse/che-machine-exec:7.19.1 +- - name: che-machine-exec-7.19.2 +- image: quay.io/eclipse/che-machine-exec@sha256:0a6487575d43255875f67fe5cc38904a7a630d1bcb4e36d3d94ba614b429ac1d +- # tag: quay.io/eclipse/che-machine-exec:7.19.2 +- - name: che-machine-exec-7.20.0 +- image: quay.io/eclipse/che-machine-exec@sha256:abd5405e08cf7f5b6f46bd8aa558cbc82e4c70f332c0062af9b2c1c07d06045e +- # tag: quay.io/eclipse/che-machine-exec:7.20.0 +- - name: che-machine-exec-7.20.1 +- image: quay.io/eclipse/che-machine-exec@sha256:ccdf212f7466b255013ed56b3c567988b4601864baabd7d61be834aa4d9fb38c +- # tag: quay.io/eclipse/che-machine-exec:7.20.1 +- - name: che-machine-exec-7.21.0 +- image: quay.io/eclipse/che-machine-exec@sha256:cd4c3f246eddae4d5932429ec55451b46b014b0da67801eed1b18af33eb0924d +- # tag: quay.io/eclipse/che-machine-exec:7.21.0 + - name: che-machine-exec-7.21.1 + image: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + # tag: quay.io/eclipse/che-machine-exec:7.21.1 + - name: che-machine-exec-7.21.2 + image: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + # tag: quay.io/eclipse/che-machine-exec:7.21.2 ++ - name: che-machine-exec-7.22.0 ++ image: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 ++ # tag: quay.io/eclipse/che-machine-exec:7.22.0 ++ - name: che-plugin-sidecar-haskell-b64039f ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 ++ # tag: quay.io/eclipse/che-plugin-sidecar:haskell-b64039f ++ - name: che-plugin-sidecar-scala-1be6877 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df ++ # tag: quay.io/eclipse/che-plugin-sidecar:scala-1be6877 + - name: che-sidecar-bazel-3.2.0-e352e6b + image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + # tag: quay.io/eclipse/che-sidecar-bazel:3.2.0-e352e6b +- - name: che-sidecar-camelk-0.0.14-59d258b +- image: quay.io/eclipse/che-sidecar-camelk@sha256:ddd941979443a9962a27f2a059d95550768cbab76848d606ce410536ff2bdaa0 +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.14-59d258b +- - name: che-sidecar-camelk-0.0.15-a578c4a +- image: quay.io/eclipse/che-sidecar-camelk@sha256:f830861c2a1d99ebb0579b4ee3761fbcd51cf42af54306cc6ae02d865866ffc3 +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.15-a578c4a +- - name: che-sidecar-camelk-0.0.16-7d7538f +- image: quay.io/eclipse/che-sidecar-camelk@sha256:7e1e9b422cfd7bef16858c404eaad0ab1b288f273f89f056cf1b086744435954 +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.16-7d7538f +- - name: che-sidecar-camelk-0.0.17-3d78c07 +- image: quay.io/eclipse/che-sidecar-camelk@sha256:602674d78a88c0d19a2103c2258b3c9e03aa5759e9a9a8c7dd9b11af96f7e61b +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.17-3d78c07 + - name: che-sidecar-camelk-0.0.18-39f19dd + image: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + # tag: quay.io/eclipse/che-sidecar-camelk:0.0.18-39f19dd +@@ -833,18 +675,9 @@ + - name: che-sidecar-dart-2.10-a2959e6 + image: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + # tag: quay.io/eclipse/che-sidecar-dart:2.10-a2959e6 +- - name: che-sidecar-dependency-analytics-0.0.12-d478351 +- image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:392eb12ffac4c1369faec782221fe1758fd826c77aba8ce88ad3ecbf59154ed7 +- # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.12-d478351 + - name: che-sidecar-dependency-analytics-0.0.13-2f3b058 + image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.13-2f3b058 +- - name: che-sidecar-dependency-analytics-0.0.13-a38cb0c +- image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:0708b3c63d2065ef96667cacec9a46570f00fcb0f107df3e902ac444e68e1170 +- # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.13-a38cb0c +- - name: che-sidecar-dotnet-2.2.105-2fd6e78 +- image: quay.io/eclipse/che-sidecar-dotnet@sha256:5c0957a726a0cafb4ffa9e757425128e3f702123d11c5e673ff8ee58c712aea2 +- # tag: quay.io/eclipse/che-sidecar-dotnet:2.2.105-2fd6e78 + - name: che-sidecar-dotnet-3.1.301-4bdcdc2 + image: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + # tag: quay.io/eclipse/che-sidecar-dotnet:3.1.301-4bdcdc2 +@@ -854,39 +687,15 @@ + - name: che-sidecar-go-1.14.4-3edc927 + image: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + # tag: quay.io/eclipse/che-sidecar-go:1.14.4-3edc927 +- - name: che-sidecar-haskell-8.10.1-eccd503 +- image: quay.io/eclipse/che-sidecar-haskell@sha256:970d658ce856e6185db301c259017ef1e1588e3affea4f8fd6cf047f7f2a532b +- # tag: quay.io/eclipse/che-sidecar-haskell:8.10.1-eccd503 +- - name: che-sidecar-haskell-8.10.2-a79c68a +- image: quay.io/eclipse/che-sidecar-haskell@sha256:8e67a721a458fb07b8b8f975c5b313237b44e101be209905afddf4ddf66bebc0 +- # tag: quay.io/eclipse/che-sidecar-haskell:8.10.2-a79c68a +- - name: che-sidecar-haskell-8.8.4-14f1de9 +- image: quay.io/eclipse/che-sidecar-haskell@sha256:8de87b3926b3ec9106c0fc0d1087787a07f935b64880323e78c3b30357af3554 +- # tag: quay.io/eclipse/che-sidecar-haskell:8.8.4-14f1de9 + - name: che-sidecar-java-11-7bd8c8c + image: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + # tag: quay.io/eclipse/che-sidecar-java:11-7bd8c8c + - name: che-sidecar-java-11-86274e3 + image: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + # tag: quay.io/eclipse/che-sidecar-java:11-86274e3 +- - name: che-sidecar-java-11-a06cbb1 +- image: quay.io/eclipse/che-sidecar-java@sha256:d35c57b1194f94672fcce2e1a4ea62448c6273966eb0d7d1df776e3164ed8dbb +- # tag: quay.io/eclipse/che-sidecar-java:11-a06cbb1 +- - name: che-sidecar-java-11-f76ca45 +- image: quay.io/eclipse/che-sidecar-java@sha256:54a5f721588455403d8c2a81d1fbc8fef2c6a32aead44f2fb3e24a8a1fddb9a2 +- # tag: quay.io/eclipse/che-sidecar-java:11-f76ca45 + - name: che-sidecar-java-8-0cfbacb + image: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + # tag: quay.io/eclipse/che-sidecar-java:8-0cfbacb +- - name: che-sidecar-kubernetes-tooling-1.0.9-82c704e +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:55e83d7f8cbf6a044ca68a4beb95e1192ae71a6d27f24cec7e300588f127480f +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.0.9-82c704e +- - name: che-sidecar-kubernetes-tooling-1.1.0-31a8464 +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:3f551189a697cac40870696f39dd92195021bbb3279e2f26902234ab65a88f10 +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.1.0-31a8464 +- - name: che-sidecar-kubernetes-tooling-1.2.0-3ea57d5 +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:882fca5fc7aad06a663a9c2b499e4f2de1cc991b48b0390b380e4ede1cb47f1f +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.2.0-3ea57d5 + - name: che-sidecar-kubernetes-tooling-1.2.1-6144144 + image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.2.1-6144144 +@@ -899,39 +708,21 @@ + - name: che-sidecar-node-12-da9c36b + image: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + # tag: quay.io/eclipse/che-sidecar-node:12-da9c36b +- - name: che-sidecar-openshift-connector-0.1.2-2601509 +- image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:8e4403ef1f7f74af3568abd60ccf1b959e2f43bef0001ba7a77ca5f8bc0d5a0e +- # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.1.2-2601509 +- - name: che-sidecar-openshift-connector-0.1.5-620dbc7 +- image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:d780f74b137e21c56b6815e6a4ab7907b69dfaefb377b0838649c88c947287aa +- # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.1.5-620dbc7 + - name: che-sidecar-openshift-connector-0.2.0-6d2214b + image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.2.0-6d2214b +- - name: che-sidecar-php-7-5c5ecc5 +- image: quay.io/eclipse/che-sidecar-php@sha256:e4f1db4b5bc641485f42a5e0534c37894042c5302acfb1fefcfdf6d659aa7925 +- # tag: quay.io/eclipse/che-sidecar-php:7-5c5ecc5 +- - name: che-sidecar-php-7-9e9715e +- image: quay.io/eclipse/che-sidecar-php@sha256:4f1af8a266fbbab9542c794cc8a74575d24813bc7f48f5efbd451b850931592c +- # tag: quay.io/eclipse/che-sidecar-php:7-9e9715e ++ - name: che-sidecar-php-7-b95f23f ++ image: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 ++ # tag: quay.io/eclipse/che-sidecar-php:7-b95f23f + - name: che-sidecar-protobuf-0.4.2-a79a2ff + image: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + # tag: quay.io/eclipse/che-sidecar-protobuf:0.4.2-a79a2ff +- - name: che-sidecar-python-3.7.3-8f39348 +- image: quay.io/eclipse/che-sidecar-python@sha256:9d910486a81d92ebdeaab4c2fc71546bee23ff7e3a986fdb9df4e458819cb958 +- # tag: quay.io/eclipse/che-sidecar-python:3.7.3-8f39348 + - name: che-sidecar-python-3.8.6-5913fc2 + image: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + # tag: quay.io/eclipse/che-sidecar-python:3.8.6-5913fc2 + - name: che-sidecar-ruby-2.6-76f1125 + image: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + # tag: quay.io/eclipse/che-sidecar-ruby:2.6-76f1125 +- - name: che-sidecar-scala-0.9.0-6a833ec +- image: quay.io/eclipse/che-sidecar-scala@sha256:bdae1cc3e0886421f610adf38f4216a5f2184eccd731107f3bbd3c1f3444b69b +- # tag: quay.io/eclipse/che-sidecar-scala:0.9.0-6a833ec +- - name: che-sidecar-scala-0.9.0-bb84244 +- image: quay.io/eclipse/che-sidecar-scala@sha256:8585ac9d41a1e4a754d89225ec7cc25836236fbb370220bb8050fa121f34d82a +- # tag: quay.io/eclipse/che-sidecar-scala:0.9.0-bb84244 + - name: che-sidecar-shellcheck-v0.7.1-b16c5b5 + image: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + # tag: quay.io/eclipse/che-sidecar-shellcheck:v0.7.1-b16c5b5 +@@ -941,186 +732,84 @@ + - name: che-sidecar-tekton-0.2.0-7a8b4ad + image: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + # tag: quay.io/eclipse/che-sidecar-tekton:0.2.0-7a8b4ad +- - name: che-sidecar-vale-0.9.1-04f254e +- image: quay.io/eclipse/che-sidecar-vale@sha256:a775aeac18fb50b3c0b517f3bcc63eaa497ded4250db0b868fabb1caf2c598b3 +- # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-04f254e +- - name: che-sidecar-vale-0.9.1-ad53ccf +- image: quay.io/eclipse/che-sidecar-vale@sha256:654b3efbdb73b2242ce32d4a0d7da77ac561942c2a37906cff49029a9481b2cc +- # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-ad53ccf +- - name: che-theia-endpoint-runtime-binary-7.15.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:ec9d069625d64d9525d540cb3adce6f798374bbbbe0334c1fd71cefd2bd9fd58 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.15.0 +- - name: che-theia-endpoint-runtime-binary-7.15.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.15.1 +- - name: che-theia-endpoint-runtime-binary-7.15.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.15.2 +- - name: che-theia-endpoint-runtime-binary-7.16.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.16.0 +- - name: che-theia-endpoint-runtime-binary-7.16.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14c3debebf62ec92dbf2b1536e4823ea66a89886b0b57a7518670af72727c252 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.16.1 +- - name: che-theia-endpoint-runtime-binary-7.16.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:41c4fbb43648aa0aab62f4ca9b4d9a1debce35c13cc64225a04f9df83c6a2c20 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.16.2 +- - name: che-theia-endpoint-runtime-binary-7.17.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.0 +- - name: che-theia-endpoint-runtime-binary-7.17.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.1 +- - name: che-theia-endpoint-runtime-binary-7.17.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.2 +- - name: che-theia-endpoint-runtime-binary-7.18.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.0 +- - name: che-theia-endpoint-runtime-binary-7.18.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.1 +- - name: che-theia-endpoint-runtime-binary-7.18.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.2 +- - name: che-theia-endpoint-runtime-binary-7.19.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2e4a64b57603f3a4471cbdf4e9e4078bb0246811c2a1da940d1cf7370595745a +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.19.0 +- - name: che-theia-endpoint-runtime-binary-7.19.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4dd127ad0c95c710cf5b65f9dc0bb9a607dffbd0e8e0dc2e0b1fa02e53fe3b9c +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.19.1 +- - name: che-theia-endpoint-runtime-binary-7.19.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e701676a75c1a34aaa141a6909fdd9caa42e2917427d84eb0d2ab82d0540774d +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.19.2 +- - name: che-theia-endpoint-runtime-binary-7.20.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a618b628130b2f8cac00ea45f7a30da497ca1905699a884d9ed6b623109f702f +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.20.0 +- - name: che-theia-endpoint-runtime-binary-7.20.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:3cc5fe39bf8ad43f9be221f5a34978bbfdbd44c8cfc6ddef96d1a4c67dd3fa91 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.20.1 +- - name: che-theia-endpoint-runtime-binary-7.21.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:de21ef29794811a87278d363cdedeab4f75af38a2850f69fa7988a53477276ea +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.0 ++ - name: che-sidecar-vale-0.9.1-a8fe390 ++ image: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 ++ # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-a8fe390 + - name: che-theia-endpoint-runtime-binary-7.21.1 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.1 + - name: che-theia-endpoint-runtime-binary-7.21.2 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.2 +- - name: che-theia-7.15.0 +- image: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944 +- # tag: quay.io/eclipse/che-theia:7.15.0 +- - name: che-theia-7.15.1 +- image: quay.io/eclipse/che-theia@sha256:74d65d2d0accc3bb8c09ea2a0653c3b95c9e4602917252d6e1d5ef652102696f +- # tag: quay.io/eclipse/che-theia:7.15.1 +- - name: che-theia-7.15.2 +- image: quay.io/eclipse/che-theia@sha256:f52414ef293498e14316de52c3d64e8b8537ef2b3044afd9ac9cf19489da7451 +- # tag: quay.io/eclipse/che-theia:7.15.2 +- - name: che-theia-7.16.0 +- image: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0 +- # tag: quay.io/eclipse/che-theia:7.16.0 +- - name: che-theia-7.16.1 +- image: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad +- # tag: quay.io/eclipse/che-theia:7.16.1 +- - name: che-theia-7.16.2 +- image: quay.io/eclipse/che-theia@sha256:73639e49c4e369fefa21c73bac3933d17c68fb0912da9b377bec6e239f575bab +- # tag: quay.io/eclipse/che-theia:7.16.2 +- - name: che-theia-7.17.0 +- image: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f +- # tag: quay.io/eclipse/che-theia:7.17.0 +- - name: che-theia-7.17.1 +- image: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441 +- # tag: quay.io/eclipse/che-theia:7.17.1 +- - name: che-theia-7.17.2 +- image: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822 +- # tag: quay.io/eclipse/che-theia:7.17.2 +- - name: che-theia-7.18.0 +- image: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc +- # tag: quay.io/eclipse/che-theia:7.18.0 +- - name: che-theia-7.18.1 +- image: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24 +- # tag: quay.io/eclipse/che-theia:7.18.1 +- - name: che-theia-7.18.2 +- image: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117 +- # tag: quay.io/eclipse/che-theia:7.18.2 +- - name: che-theia-7.19.0 +- image: quay.io/eclipse/che-theia@sha256:acdf1ea0afe14143585cc81ae069b9db8ecc92b139f702ebc4a2f7fc6b67ea57 +- # tag: quay.io/eclipse/che-theia:7.19.0 +- - name: che-theia-7.19.1 +- image: quay.io/eclipse/che-theia@sha256:3d29098601f80aef9e9ca6ccc353b07bd3f2334345b9665160050484b68794ca +- # tag: quay.io/eclipse/che-theia:7.19.1 +- - name: che-theia-7.19.2 +- image: quay.io/eclipse/che-theia@sha256:11b5fe33edd72df22f76d7933ba79029051f4c0c6adc6c1a91f2dfe4228455c9 +- # tag: quay.io/eclipse/che-theia:7.19.2 +- - name: che-theia-7.20.0 +- image: quay.io/eclipse/che-theia@sha256:92a8bac94e446f1f933d1a92bc96dace9450c9f4efdef5539a429a37d14be904 +- # tag: quay.io/eclipse/che-theia:7.20.0 +- - name: che-theia-7.20.1 +- image: quay.io/eclipse/che-theia@sha256:a56428ee28ceefca2a1cba51093f6015e0eee82659fec786f2e1fdc939fdb856 +- # tag: quay.io/eclipse/che-theia:7.20.1 +- - name: che-theia-7.21.0 +- image: quay.io/eclipse/che-theia@sha256:350aa6b1a2dcbfb25b9b02607257c5197494dcf2327fab0955681116a6883216 +- # tag: quay.io/eclipse/che-theia:7.21.0 ++ - name: che-theia-endpoint-runtime-binary-7.22.0 ++ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b ++ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.22.0 + - name: che-theia-7.21.1 + image: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + # tag: quay.io/eclipse/che-theia:7.21.1 + - name: che-theia-7.21.2 + image: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + # tag: quay.io/eclipse/che-theia:7.21.2 +- - name: mongodb-36-centos7- +- image: docker.io/centos/mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 +- # tag: docker.io/centos/mongodb-36-centos7 +- - name: mysql-57-centos7- +- image: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- # tag: docker.io/centos/mysql-57-centos7 +- - name: che-cpp-rhel7-7.21.2 +- image: quay.io/eclipse/che-cpp-rhel7@sha256:4b097d9f23977675e251ef2e6035d6697e6d30e996486e605dc808c6447cc169 +- # tag: quay.io/eclipse/che-cpp-rhel7:7.21.2 +- - name: che-dotnet-2.2-7.21.2 +- image: quay.io/eclipse/che-dotnet-2.2@sha256:87cb6d5d941602f70913d5a2a77c22f01602004d34ba6f38667c00528f138522 +- # tag: quay.io/eclipse/che-dotnet-2.2:7.21.2 +- - name: che-dotnet-3.1-7.21.2 +- image: quay.io/eclipse/che-dotnet-3.1@sha256:a32bde3f550f69aee2e396b0ec50a2c6f146b93a91ac3d8dbb76439c050aa6cb +- # tag: quay.io/eclipse/che-dotnet-3.1:7.21.2 +- - name: che-golang-1.14-7.21.2 +- image: quay.io/eclipse/che-golang-1.14@sha256:36ad7da570e8e91bc04f12dc227b57836846080214a63c732eec829eeb903999 +- # tag: quay.io/eclipse/che-golang-1.14:7.21.2 +- - name: che-java11-gradle-7.21.2 +- image: quay.io/eclipse/che-java11-gradle@sha256:99dd2cb3695bd1ac3e00cf62d4fd3e85ed33b034028e4f9c11390d866e1340c8 +- # tag: quay.io/eclipse/che-java11-gradle:7.21.2 +- - name: che-java11-maven-7.21.2 +- image: quay.io/eclipse/che-java11-maven@sha256:0e264808a1a1d5baf4fd83586ac6de2563ef0f419f263be1ffe6c3d9249d6da2 +- # tag: quay.io/eclipse/che-java11-maven:7.21.2 +- - name: che-java8-maven-7.21.2 +- image: quay.io/eclipse/che-java8-maven@sha256:09a3078ca8cebf5ab51c8561818cd400e843cb5c885c5809ca870e21eab36156 +- # tag: quay.io/eclipse/che-java8-maven:7.21.2 +- - name: che-nodejs10-community-7.21.2 +- image: quay.io/eclipse/che-nodejs10-community@sha256:b5e99db4c4b4fdcabd192a6ba7a460bf6553083c2d2e00861b3d14281e82d499 +- # tag: quay.io/eclipse/che-nodejs10-community:7.21.2 +- - name: che-nodejs10-ubi-7.21.2 +- image: quay.io/eclipse/che-nodejs10-ubi@sha256:1a1cd469fb7dfb0565b71985713faf2c856e77e28796b557cdcb70df0e735f6b +- # tag: quay.io/eclipse/che-nodejs10-ubi:7.21.2 +- - name: che-nodejs12-community-7.21.2 +- image: quay.io/eclipse/che-nodejs12-community@sha256:39c149ddd067547e5987372a167e787891f1d63dd2f22b9ed329a041b1bde4e7 +- # tag: quay.io/eclipse/che-nodejs12-community:7.21.2 +- - name: che-nodejs8-centos-7.21.2 +- image: quay.io/eclipse/che-nodejs8-centos@sha256:c20dc500027bd62c9212901bec97418e7ecddbfc098b9d6f843bb22376029c13 +- # tag: quay.io/eclipse/che-nodejs8-centos:7.21.2 +- - name: che-php-7-7.21.2 +- image: quay.io/eclipse/che-php-7@sha256:21bf88bb4850ff483330cbc6c965e08f13cae4573510d03aade8f3e8fd28c10c +- # tag: quay.io/eclipse/che-php-7:7.21.2 +- - name: che-python-3.7-7.21.2 +- image: quay.io/eclipse/che-python-3.7@sha256:6db15f661b7b9cafde1de9d812bb7fe907eae2befc783b6e2933c262e7a4fa91 +- # tag: quay.io/eclipse/che-python-3.7:7.21.2 +- - name: che-python-3.8-7.21.2 +- image: quay.io/eclipse/che-python-3.8@sha256:1b3fd6fa48a66b6e69dea4eab677b6266d831351f0b51dc239a61f526e6a6d36 +- # tag: quay.io/eclipse/che-python-3.8:7.21.2 +- - name: che-quarkus-7.21.2 +- image: quay.io/eclipse/che-quarkus@sha256:9588219c47a12016f4215ce526d1b99b83d08c4ad2de8f9ec6bef0b761b3b0c8 +- # tag: quay.io/eclipse/che-quarkus:7.21.2 +- - name: che-rust-1.39-7.21.2 +- image: quay.io/eclipse/che-rust-1.39@sha256:bff3e0456df470babc0e3d7fe5e6c355bdaa02f73157ae3af92cab80f5618df2 +- # tag: quay.io/eclipse/che-rust-1.39:7.21.2 ++ - name: che-theia-7.22.0 ++ image: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 ++ # tag: quay.io/eclipse/che-theia:7.22.0 ++ - name: mta-vscode-extension-latest ++ image: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 ++ # tag: quay.io/windupeng/mta-vscode-extension:latest ++ - 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.22.0 ++ image: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 ++ # tag: quay.io/eclipse/che-cpp-rhel7:7.22.0 ++ - name: che-dotnet-2.2-7.22.0 ++ image: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e ++ # tag: quay.io/eclipse/che-dotnet-2.2:7.22.0 ++ - name: che-dotnet-3.1-7.22.0 ++ image: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d ++ # tag: quay.io/eclipse/che-dotnet-3.1:7.22.0 ++ - name: che-golang-1.14-7.22.0 ++ image: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 ++ # tag: quay.io/eclipse/che-golang-1.14:7.22.0 ++ - name: che-java11-gradle-7.22.0 ++ image: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 ++ # tag: quay.io/eclipse/che-java11-gradle:7.22.0 ++ - name: che-java11-maven-7.22.0 ++ image: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d ++ # tag: quay.io/eclipse/che-java11-maven:7.22.0 ++ - name: che-java8-maven-7.22.0 ++ image: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 ++ # tag: quay.io/eclipse/che-java8-maven:7.22.0 ++ - name: che-nodejs10-community-7.22.0 ++ image: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b ++ # tag: quay.io/eclipse/che-nodejs10-community:7.22.0 ++ - name: che-nodejs10-ubi-7.22.0 ++ image: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 ++ # tag: quay.io/eclipse/che-nodejs10-ubi:7.22.0 ++ - name: che-nodejs12-community-7.22.0 ++ image: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 ++ # tag: quay.io/eclipse/che-nodejs12-community:7.22.0 ++ - name: che-nodejs8-centos-7.22.0 ++ image: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 ++ # tag: quay.io/eclipse/che-nodejs8-centos:7.22.0 ++ - name: che-php-7-7.22.0 ++ image: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb ++ # tag: quay.io/eclipse/che-php-7:7.22.0 ++ - name: che-python-3.7-7.22.0 ++ image: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 ++ # tag: quay.io/eclipse/che-python-3.7:7.22.0 ++ - name: che-python-3.8-7.22.0 ++ image: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da ++ # tag: quay.io/eclipse/che-python-3.8:7.22.0 ++ - name: che-quarkus-7.22.0 ++ image: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 ++ # tag: quay.io/eclipse/che-quarkus:7.22.0 ++ - name: che-rust-1.39-7.22.0 ++ image: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 ++ # tag: quay.io/eclipse/che-rust-1.39:7.22.0 + - name: ubi-minimal- + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8/ubi-minimal 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 e9d9d5cdb..fd1634866 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.21.2 +- currentCSV: eclipse-che-preview-kubernetes.v7.22.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.22.0/eclipse-che-preview-openshift.crd.yaml b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.crd.yaml new file mode 100644 index 000000000..bafc1b4c8 --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.crd.yaml @@ -0,0 +1,680 @@ +# +# Copyright (c) 2012-2020 Red Hat, Inc. +# This program and the accompanying materials are made +# available under the terms of the Eclipse Public License 2.0 +# which is available at https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +# +# Contributors: +# Red Hat, Inc. - initial API and implementation +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: checlusters.org.eclipse.che +spec: + group: org.eclipse.che + names: + kind: CheCluster + listKind: CheClusterList + plural: checlusters + singular: checluster + preserveUnknownFields: false + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + description: The `CheCluster` custom resource allows defining and managing a + Che server installation + properties: + apiVersion: + description: 'APIVersion defines the versioned schema of this representation + of an object. Servers should convert recognized schemas to the latest + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' + type: string + kind: + description: 'Kind is a string value representing the REST resource this + object represents. Servers may infer this from the endpoint the client + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: Desired configuration of the Che installation. Based on these + settings, the operator automatically creates and maintains several config + maps that will contain the appropriate environment variables the various + components of the Che installation. These generated config maps should + NOT be updated manually. + properties: + auth: + description: Configuration settings related to the Authentication used + by the Che installation. + properties: + externalIdentityProvider: + description: 'Instructs the operator on whether or not to deploy + a dedicated Identity Provider (Keycloak or RH SSO instance). By + default a dedicated Identity Provider server is deployed as part + of the Che installation. But if `externalIdentityProvider` is + `true`, then no dedicated identity provider will be deployed by + the operator and you might need to provide details about the external + identity provider you want to use. See also all the other fields + starting with: `identityProvider`.' + type: boolean + identityProviderAdminUserName: + description: Overrides the name of the Identity Provider admin user. + Defaults to `admin`. + type: string + identityProviderClientId: + description: Name of a Identity provider (Keycloak / RH SSO) `client-id` + that should be used for Che. This is useful to override it ONLY + if you use an external Identity Provider (see the `externalIdentityProvider` + field). If omitted or left blank, it will be set to the value + of the `flavour` field suffixed with `-public`. + type: string + identityProviderImage: + description: Overrides the container image used in the Identity + Provider (Keycloak / RH SSO) deployment. This includes the image + tag. Omit it or leave it empty to use the defaut container image + provided by the operator. + type: string + identityProviderImagePullPolicy: + description: Overrides the image pull policy used in the Identity + Provider (Keycloak / RH SSO) deployment. Default value is `Always` + for `nightly` or `latest` images, and `IfNotPresent` in other + cases. + type: string + identityProviderIngress: + description: Ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + identityProviderPassword: + description: Overrides the password of Keycloak admin user. This + is useful to override it ONLY if you use an external Identity + Provider (see the `externalIdentityProvider` field). If omitted + or left blank, it will be set to an auto-generated password. + type: string + identityProviderPostgresPassword: + description: Password for The Identity Provider (Keycloak / RH SSO) + to connect to the database. This is useful to override it ONLY + if you use an external Identity Provider (see the `externalIdentityProvider` + field). If omitted or left blank, it will be set to an auto-generated + password. + type: string + identityProviderPostgresSecret: + description: 'The secret that contains `password` for The Identity + Provider (Keycloak / RH SSO) to connect to the database. If the + secret is defined then `identityProviderPostgresPassword` will + be ignored. If the value is omitted or left blank then there are + two scenarios: 1. `identityProviderPostgresPassword` is defined, + then it will be used to connect to the database. 2. `identityProviderPostgresPassword` + is not defined, then a new secret with the name `che-identity-postgres-secret` + will be created with an auto-generated value for `password`.' + type: string + identityProviderRealm: + description: Name of a Identity provider (Keycloak / RH SSO) realm + that should be used for Che. This is useful to override it ONLY + if you use an external Identity Provider (see the `externalIdentityProvider` + field). If omitted or left blank, it will be set to the value + of the `flavour` field. + type: string + identityProviderRoute: + description: Route custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + identityProviderSecret: + description: 'The secret that contains `user` and `password` for + Identity Provider. If the secret is defined then `identityProviderAdminUserName` + and `identityProviderPassword` are ignored. If the value is omitted + or left blank then there are two scenarios: 1. `identityProviderAdminUserName` + and `identityProviderPassword` are defined, then they will be + used. 2. `identityProviderAdminUserName` or `identityProviderPassword` + are not defined, then a new secret with the name `che-identity-secret` + will be created with default value `admin` for `user` and with + an auto-generated value for `password`.' + type: string + identityProviderURL: + description: Public URL of the Identity Provider server (Keycloak + / RH SSO server). You should set it ONLY if you use an external + Identity Provider (see the `externalIdentityProvider` field). + By default this will be automatically calculated and set by the + operator. + type: string + oAuthClientName: + description: Name of the OpenShift `OAuthClient` resource used to + setup identity federation on the OpenShift side. Auto-generated + if left blank. See also the `OpenShiftoAuth` field. + type: string + oAuthSecret: + description: Name of the secret set in the OpenShift `OAuthClient` + resource used to setup identity federation on the OpenShift side. + Auto-generated if left blank. See also the `OAuthClientName` field. + type: string + openShiftoAuth: + description: 'Enables the integration of the identity provider (Keycloak + / RHSSO) with OpenShift OAuth. Enabled by default on OpenShift. + This will allow users to directly login with their Openshift user + through the Openshift login, and have their workspaces created + under personal OpenShift namespaces. WARNING: the `kubeadmin` + user is NOT supported, and logging through it will NOT allow accessing + the Che Dashboard.' + type: boolean + updateAdminPassword: + description: Forces the default `admin` Che user to update password + on first login. Defaults to `false`. + type: boolean + type: object + database: + description: Configuration settings related to the database used by + the Che installation. + properties: + chePostgresDb: + description: Postgres database name that the Che server uses to + connect to the DB. Defaults to `dbche`. + type: string + chePostgresHostName: + description: Postgres Database hostname that the Che server uses + to connect to. Defaults to postgres. This value should be overridden + ONLY when using an external database (see field `externalDb`). + In the default case it will be automatically set by the operator. + type: string + chePostgresPassword: + description: Postgres password that the Che server should use to + connect to the DB. If omitted or left blank, it will be set to + an auto-generated value. + type: string + chePostgresPort: + description: Postgres Database port that the Che server uses to + connect to. Defaults to 5432. This value should be overridden + ONLY when using an external database (see field `externalDb`). + In the default case it will be automatically set by the operator. + type: string + chePostgresSecret: + description: 'The secret that contains Postgres `user` and `password` + that the Che server should use to connect to the DB. If the secret + is defined then `chePostgresUser` and `chePostgresPassword` are + ignored. If the value is omitted or left blank then there are + two scenarios: 1. `chePostgresUser` and `chePostgresPassword` + are defined, then they will be used to connect to the DB. 2. `chePostgresUser` + or `chePostgresPassword` are not defined, then a new secret with + the name `che-postgres-secret` will be created with default value + of `pgche` for `user` and with an auto-generated value for `password`.' + type: string + chePostgresUser: + description: Postgres user that the Che server should use to connect + to the DB. Defaults to `pgche`. + type: string + externalDb: + description: 'Instructs the operator on whether or not to deploy + a dedicated database. By default a dedicated Postgres database + is deployed as part of the Che installation. But if `externalDb` + is `true`, then no dedicated database will be deployed by the + operator and you might need to provide connection details to the + external DB you want to use. See also all the fields starting + with: `chePostgres`.' + type: boolean + postgresImage: + description: Overrides the container image used in the Postgres + database deployment. This includes the image tag. Omit it or leave + it empty to use the defaut container image provided by the operator. + type: string + postgresImagePullPolicy: + description: Overrides the image pull policy used in the Postgres + database deployment. Default value is `Always` for `nightly` or + `latest` images, and `IfNotPresent` in other cases. + type: string + type: object + k8s: + description: Configuration settings specific to Che installations made + on upstream Kubernetes. + properties: + ingressClass: + description: 'Ingress class that will define the which controler + will manage ingresses. Defaults to `nginx`. NB: This drives the + `is kubernetes.io/ingress.class` annotation on Che-related ingresses.' + type: string + ingressDomain: + description: 'Global ingress domain for a K8S cluster. This MUST + be explicitly specified: there are no defaults.' + type: string + ingressStrategy: + description: Strategy for ingress creation. This can be `multi-host` + (host is explicitly provided in ingress), `single-host` (host + is provided, path-based rules) and `default-host.*`(no host is + provided, path-based rules). Defaults to `"multi-host` Deprecated + in favor of "serverExposureStrategy" in the "server" section, + which defines this regardless of the cluster type. If both are + defined, `serverExposureStrategy` takes precedence. + type: string + securityContextFsGroup: + description: FSGroup the Che pod and Workspace pods containers should + run in. Defaults to `1724`. + type: string + securityContextRunAsUser: + description: ID of the user the Che pod and Workspace pods containers + should run as. Default to `1724`. + type: string + singleHostExposureType: + description: When the serverExposureStrategy is set to "single-host", + the way the server, registries and workspaces are exposed is further + configured by this property. The possible values are "native" + (which means that the server and workspaces are exposed using + ingresses on K8s) or "gateway" where the server and workspaces + are exposed using a custom gateway based on Traefik. All the endpoints + whether backed by the ingress or gateway "route" always point + to the subpaths on the same domain. Defaults to "native". + type: string + tlsSecretName: + description: Name of a secret that will be used to setup ingress + TLS termination if TLS is enabled. If the field is empty string, + then 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` Che server endpoint. Default to `true`. + type: boolean + type: object + server: + description: General configuration settings related to the Che server + and the plugin and devfile registries + properties: + airGapContainerRegistryHostname: + description: Optional hostname (or url) to an alternate container + registry to pull images from. This value overrides the container + registry hostname defined in all the default container images + involved in a Che deployment. This is particularly useful to install + Che in an air-gapped environment. + type: string + airGapContainerRegistryOrganization: + description: Optional repository name of an alternate container + registry to pull images from. This value overrides the container + registry organization defined in all the default container images + involved in a Che deployment. This is particularly useful to install + Che in an air-gapped environment. + type: string + allowUserDefinedWorkspaceNamespaces: + description: Defines if a user is able to specify Kubernetes namespace + (or OpenShift project) different from the default. It's NOT RECOMMENDED + to configured true without OAuth configured. This property is + also used by the OpenShift infra. + type: boolean + cheDebug: + description: Enables the debug mode for Che server. Defaults to + `false`. + type: string + cheFlavor: + description: Flavor of the installation. This is either `che` for + upstream Che installations, or `codeready` for CodeReady Workspaces + installation. In most cases the default value should not be overridden. + type: string + cheHost: + description: Public hostname of the installed Che server. If value + is omitted then it will be automatically set by the operator. + (see the `cheHostTLSSecret` field). + type: string + cheHostTLSSecret: + description: Name of a secret containing certificates to secure + ingress/route for the custom hostname of the installed Che server. + (see the `cheHost` field). + type: string + cheImage: + description: Overrides the container image used in Che deployment. + This does NOT include the container image tag. Omit it or leave + it empty to use the defaut container image provided by the operator. + type: string + cheImagePullPolicy: + description: Overrides the image pull policy used in Che deployment. + Default value is `Always` for `nightly` or `latest` images, and + `IfNotPresent` in other cases. + type: string + cheImageTag: + description: Overrides the tag of the container image used in Che + deployment. Omit it or leave it empty to use the defaut image + tag provided by the operator. + type: string + cheLogLevel: + description: 'Log level for the Che server: `INFO` or `DEBUG`. Defaults + to `INFO`.' + type: string + cheServerIngress: + description: Che server ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + cheServerRoute: + description: Che server route custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + cheWorkspaceClusterRole: + description: Custom cluster role bound to the user for the Che workspaces. + The default roles are used if this is omitted or left blank. + type: string + customCheProperties: + additionalProperties: + type: string + description: Map of additional environment variables that will be + applied in the generated `che` config map to be used by the Che + server, in addition to the values already generated from other + fields of the `CheCluster` custom resource (CR). If `customCheProperties` + contains a property that would be normally generated in `che` + config map from other CR fields, then the value defined in the + `customCheProperties` will be used instead. + type: object + devfileRegistryImage: + description: Overrides the container image used in the Devfile registry + deployment. This includes the image tag. Omit it or leave it empty + to use the defaut container image provided by the operator. + type: string + devfileRegistryIngress: + description: Devfile registry ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + devfileRegistryMemoryLimit: + description: Overrides the memory limit used in the Devfile registry + deployment. 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: Devfile registry route custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + devfileRegistryUrl: + description: Public URL of the Devfile registry, that serves sample, + ready-to-use devfiles. You should set it ONLY if you use an external + devfile registry (see the `externalDevfileRegistry` field). By + default this will be automatically calculated by the operator. + type: string + externalDevfileRegistry: + description: Instructs the operator on whether or not to deploy + a dedicated Devfile registry server. By default a dedicated devfile + registry server is started. But if `externalDevfileRegistry` is + `true`, then no such dedicated server will be started by the operator + and you will have to manually set the `devfileRegistryUrl` field + type: boolean + externalPluginRegistry: + description: Instructs the operator on whether or not to deploy + a dedicated Plugin registry server. By default a dedicated plugin + registry server is started. But if `externalPluginRegistry` is + `true`, then no such dedicated server will be started by the operator + and you will have to manually set the `pluginRegistryUrl` field. + type: boolean + gitSelfSignedCert: + description: If enabled, then the certificate from `che-git-self-signed-cert` + config map will be propagated to the Che components and provide + particular configuration for Git. + type: boolean + nonProxyHosts: + description: 'List of hosts that should not use the configured proxy. + So specify wild card domain use the following form `.` + and `|` as delimiter, eg: `localhost|.my.host.com|123.42.12.32` + Only use when configuring a proxy is required. Operator respects + OpenShift cluster wide proxy configuration and no additional configuration + is required, but defining `nonProxyHosts` in a custom resource + leads to merging non proxy hosts lists from the cluster proxy + configuration and ones defined in the custom resources. (see the + doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html) + (see also the `proxyURL` fields).' + type: string + pluginRegistryImage: + description: Overrides the container image used in the Plugin registry + deployment. This includes the image tag. Omit it or leave it empty + to use the default container image provided by the operator. + type: string + pluginRegistryIngress: + description: Plugin registry ingress custom settings + properties: + labels: + description: Comma separated list of labels that can be used + to organize and categorize (scope and select) objects. + type: string + type: object + pluginRegistryMemoryLimit: + description: Overrides the memory limit used in the Plugin registry + deployment. 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 (scope and select) objects. + type: string + type: object + pluginRegistryUrl: + description: Public URL of the Plugin registry, that serves sample + ready-to-use devfiles. You should set it ONLY if you use an external + devfile registry (see the `externalPluginRegistry` field). By + default this will be automatically calculated by the operator. + type: string + proxyPassword: + description: Password of the proxy server Only use when proxy configuration + is required (see also the `proxyURL`, `proxyUser` and `proxySecret` + fields). + type: string + proxyPort: + description: Port of the proxy server. Only use when configuring + a proxy is required. (see also the `proxyURL` and `nonProxyHosts` + fields). + type: string + proxySecret: + description: The secret that contains `user` and `password` for + a proxy server. If the secret is defined then `proxyUser` and + `proxyPassword` are ignored + type: string + proxyURL: + description: URL (protocol+hostname) of the proxy server. This drives + the appropriate changes in the `JAVA_OPTS` and `https(s)_proxy` + variables in the Che server and workspaces containers. Only use + when configuring a proxy is required. Operator respects OpenShift + cluster wide proxy configuration and no additional configuration + is required, but defining `proxyUrl` in a custom resource leads + to overrides the cluster proxy configuration with fields `proxyUrl`, + `proxyPort`, `proxyUser` and `proxyPassword` from the custom resource. + (see the doc https://docs.openshift.com/container-platform/4.4/networking/enable-cluster-wide-proxy.html) + (see also the `proxyPort` and `nonProxyHosts` fields). + type: string + proxyUser: + description: User name of the proxy server. Only use when configuring + a proxy is required (see also the `proxyURL`, `proxyPassword` + and `proxySecret` fields). + type: string + selfSignedCert: + description: Deprecated. The value of this flag is ignored. Che + operator will automatically detect if router certificate is self-signed. + If so it will be propagated to Che server and some other components. + type: boolean + serverExposureStrategy: + description: Sets the server and workspaces exposure type. Possible + values are "multi-host", "single-host", "default-host". Defaults + to "multi-host" which creates a separate ingress (or route on + OpenShift) for every required endpoint. "single-host" makes Che + exposed on a single hostname with workspaces exposed on subpaths. + Please read the docs to learn about the limitations of this approach. + Also consult the `singleHostExposureType` property to further + configure how the operator and Che server make that happen on + Kubernetes. "default-host" exposes che server on the host of the + cluster. Please read the docs to learn about the limitations of + this approach. + type: string + serverMemoryLimit: + description: Overrides the memory limit used in the Che server deployment. + Defaults to 1Gi. + type: string + serverMemoryRequest: + description: Overrides the memory request used in the Che server + deployment. Defaults to 512Mi. + type: string + serverTrustStoreConfigMapName: + description: Name of the config-map with public certificates to + add to Java trust store of the Che server. This is usually required + when adding the OpenShift OAuth provider which has https endpoint + signed with self-signed cert. So, Che server must be aware of + its CA cert to be able to request it. This is disabled by default. + type: string + singleHostGatewayConfigMapLabels: + additionalProperties: + type: string + description: The labels that need to be present (and are put) on + the configmaps representing the gateway configuration. + type: object + singleHostGatewayConfigSidecarImage: + description: The image used for the gateway sidecar that provides + configuration to the gateway. Omit it or leave it empty to use + the defaut container image provided by the operator. + type: string + singleHostGatewayImage: + description: The image used for the gateway in the single host mode. + Omit it or leave it empty to use the defaut container image provided + by the operator. + type: string + tlsSupport: + description: Deprecated. Instructs the operator to deploy Che in + TLS mode. This is enabled by default. Disabling TLS may cause + malfunction of some Che components. + type: boolean + 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' + type: string + type: object + storage: + description: Configuration settings related to the persistent storage + used by the Che installation. + properties: + postgresPVCStorageClassName: + description: Storage class for the Persistent Volume Claim dedicated + to the Postgres database. If omitted or left blank, default storage + class is used. + type: string + preCreateSubPaths: + description: Instructs the Che server to launch a special pod to + pre-create a subpath in the Persistent Volumes. Defaults to `false`, + however it might need to enable it according to the configuration + of your K8S cluster. + type: boolean + pvcClaimSize: + description: Size of the persistent volume claim for workspaces. + Defaults to `1Gi` + type: string + pvcJobsImage: + description: Overrides the container image used to create sub-paths + in the Persistent Volumes. This includes the image tag. Omit it + or leave it empty to use the defaut container image provided by + the operator. See also the `preCreateSubPaths` field. + type: string + pvcStrategy: + description: Persistent volume claim strategy for the Che server. + This Can be:`common` (all workspaces PVCs in one volume), `per-workspace` + (one PVC per workspace for all declared volumes) and `unique` + (one PVC per declared volume). Defaults to `common`. + type: string + workspacePVCStorageClassName: + description: Storage class for the Persistent Volume Claims dedicated + to the Che workspaces. If omitted or left blank, default storage + class is used. + type: string + type: object + type: object + status: + description: CheClusterStatus defines the observed state of Che installation + properties: + cheClusterRunning: + description: Status of a Che installation. Can be `Available`, `Unavailable`, + or `Available, Rolling Update in Progress` + type: string + cheURL: + description: Public URL to the Che server + type: string + cheVersion: + description: Current installed Che version + type: string + dbProvisioned: + description: Indicates if or not a Postgres instance has been correctly + provisioned + type: boolean + devfileRegistryURL: + description: Public URL to the Devfile registry + type: string + helpLink: + description: A URL that can point to some URL where to find help related + to the current Operator status. + type: string + keycloakProvisioned: + description: Indicates whether an Identity Provider instance (Keycloak + / RH SSO) has been provisioned with realm, client and user + type: boolean + keycloakURL: + description: Public URL to the Identity Provider server (Keycloak / + RH SSO). + type: string + message: + description: A human readable message indicating details about why the + pod is in this condition. + type: string + openShiftoAuthProvisioned: + description: Indicates whether an Identity Provider instance (Keycloak + / RH SSO) has been configured to integrate with the OpenShift OAuth. + type: boolean + pluginRegistryURL: + description: Public URL to the Plugin registry + type: string + reason: + description: A brief CamelCase message indicating details about why + the pod is in this state. + type: string + type: object + type: object + version: v1 + versions: + - name: v1 + served: true + storage: true diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.crd.yaml.diff b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.crd.yaml.diff new file mode 100644 index 000000000..f155ad460 --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.crd.yaml.diff @@ -0,0 +1,34 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.21.2/eclipse-che-preview-openshift.crd.yaml 2020-11-20 14:14:56.435152294 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.crd.yaml 2020-11-20 14:19:51.006005483 +0000 +@@ -25,16 +25,18 @@ + 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/api-conventions.md#resources' ++ 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/api-conventions.md#types-kinds' ++ 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 +@@ -272,7 +274,9 @@ + type: string + tlsSecretName: + description: Name of a secret that will be used to setup ingress +- TLS termination if TLS is enabled. See also the `tlsSupport` field. ++ TLS termination if TLS is enabled. If the field is empty string, ++ then default cluster certificate will be used. See also the `tlsSupport` ++ field. + type: string + type: object + metrics: diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.v7.22.0.clusterserviceversion.yaml b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.v7.22.0.clusterserviceversion.yaml new file mode 100644 index 000000000..0ef3222b4 --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.v7.22.0.clusterserviceversion.yaml @@ -0,0 +1,1054 @@ +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": "", + "openShiftoAuth": true + }, + "database": { + "chePostgresDb": "", + "chePostgresHostName": "", + "chePostgresPassword": "", + "chePostgresPort": "", + "chePostgresUser": "", + "externalDb": false, + "postgresImage": "" + }, + "metrics": { + "enable": true + }, + "server": { + "allowUserDefinedWorkspaceNamespaces": false, + "cheFlavor": "", + "cheImage": "", + "cheImageTag": "", + "cheWorkspaceClusterRole": "", + "devfileRegistryImage": "", + "gitSelfSignedCert": false, + "nonProxyHosts": "", + "pluginRegistryImage": "", + "proxyPassword": "", + "proxyPort": "", + "proxyURL": "", + "proxyUser": "", + "serverExposureStrategy": "", + "serverMemoryLimit": "", + "serverMemoryRequest": "", + "serverTrustStoreConfigMapName": "", + "singleHostGatewayConfigMapLabels": {}, + "singleHostGatewayConfigSidecarImage": "", + "singleHostGatewayImage": "", + "tlsSupport": true, + "workspaceNamespaceDefault": "" + }, + "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:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + createdAt: "2020-11-20T14:19:51Z" + 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.22.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 may 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 can point 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). + 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: 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 + 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 + serviceAccountName: che-operator + - rules: + - apiGroups: + - "" + resources: + - namespaces + verbs: + - update + - get + serviceAccountName: che-namespace-editor + deployments: + - name: che-operator + spec: + replicas: 1 + selector: + matchLabels: + app: che-operator + strategy: {} + template: + metadata: + labels: + app: che-operator + 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.22.0 + - name: RELATED_IMAGE_che_server + value: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + - name: RELATED_IMAGE_plugin_registry + value: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + - name: RELATED_IMAGE_devfile_registry + value: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + - name: RELATED_IMAGE_pvc_jobs + value: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - name: RELATED_IMAGE_postgres + value: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + - name: RELATED_IMAGE_keycloak + value: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + - 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_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_GIYDEMBOGIWTANZVHE3DSMY_ + value: quay.io/che-incubator/che-editor-intellij-community@sha256:7e2b1812b55739bd6dd894625d4d2b684207af07dbd9706e5b26f720aefbb6db + - 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_G4XDEMJOGE______ + value: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NBQXG23FNRWC2YRWGQYDGOLG + value: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 + - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONRWC3DBFUYWEZJWHA3TO___ + value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: RELATED_IMAGE_che_sidecar_bazel_plugin_registry_image_GMXDELRQFVSTGNJSMU3GE___ + value: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRHAWTGOLGGE4WIZA_ + value: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + - name: RELATED_IMAGE_che_sidecar_clang_plugin_registry_image_HAWTQM3BMRRDGYI_ + value: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + - name: RELATED_IMAGE_che_sidecar_dart_plugin_registry_image_GIXDCMBNMEZDSNJZMU3A____ + value: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGMWTEZRTMIYDKOA_ + value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + - name: RELATED_IMAGE_che_sidecar_dotnet_plugin_registry_image_GMXDCLRTGAYS2NDCMRRWIYZS + value: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + - name: RELATED_IMAGE_che_sidecar_flutter_plugin_registry_image_GMXDCNBOGEWTKNDBHE2TCZA_ + value: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + - name: RELATED_IMAGE_che_sidecar_go_plugin_registry_image_GEXDCNBOGQWTGZLEMM4TENY_ + value: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2N3CMQ4GGODD + value: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2OBWGI3TIZJT + value: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_HAWTAY3GMJQWGYQ_ + value: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDELRRFU3DCNBUGE2DI___ + value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEYC2MDDMI2WINZY + value: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEZC2MBSGY2DCNTD + value: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEZC2ZDBHFRTGNTC + value: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDELRQFU3GIMRSGE2GE___ + value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WWEOJVMYZDGZQ_ + value: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + - name: RELATED_IMAGE_che_sidecar_protobuf_plugin_registry_image_GAXDILRSFVQTOOLBGJTGM___ + value: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + - name: RELATED_IMAGE_che_sidecar_python_plugin_registry_image_GMXDQLRWFU2TSMJTMZRTE___ + value: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + - name: RELATED_IMAGE_che_sidecar_ruby_plugin_registry_image_GIXDMLJXGZTDCMJSGU______ + value: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + - name: RELATED_IMAGE_che_sidecar_shellcheck_plugin_registry_image_OYYC4NZOGEWWEMJWMM2WENI_ + value: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + - name: RELATED_IMAGE_che_sidecar_sonarlint_plugin_registry_image_GEXDCNROGAWTIYLGGUYDGOI_ + value: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + - name: RELATED_IMAGE_che_sidecar_tekton_plugin_registry_image_GAXDELRQFU3WCODCGRQWI___ + value: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFVQTQZTFGM4TA___ + value: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______ + value: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 + - 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_G4XDEMROGA______ + value: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 + - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e + - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d + - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 + - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 + - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d + - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b + - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 + - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 + - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 + - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 + - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da + - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 + - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDEMROGA______ + value: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + imagePullPolicy: IfNotPresent + name: che-operator + ports: + - containerPort: 60000 + name: metrics + resources: {} + restartPolicy: Always + serviceAccountName: che-operator + terminationGracePeriodSeconds: 5 + 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: + - '*' + verbs: + - '*' + 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.21.2 + version: 7.22.0 + relatedImages: + - name: che-operator-7.22.0 + image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + # tag: quay.io/eclipse/che-operator:7.22.0 + - name: postgresql-96-centos7-9.6 + image: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: centos/postgresql-96-centos7:9.6 + - name: postgresql-96-centos7-@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + image: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + - 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: 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: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + image: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + # tag: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + - name: che-editor-intellij-community-@sha256:7e2b1812b55739bd6dd894625d4d2b684207af07dbd9706e5b26f720aefbb6db + image: quay.io/che-incubator/che-editor-intellij-community@sha256:7e2b1812b55739bd6dd894625d4d2b684207af07dbd9706e5b26f720aefbb6db + # tag: quay.io/che-incubator/che-editor-intellij-community@sha256:7e2b1812b55739bd6dd894625d4d2b684207af07dbd9706e5b26f720aefbb6db + - 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-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:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 + image: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 + # tag: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 + - name: che-devfile-registry-7.22.0 + image: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + # tag: quay.io/eclipse/che-devfile-registry:7.22.0 + - name: che-devfile-registry-@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + image: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + # tag: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + - name: che-dotnet-2.2-@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e + image: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e + # tag: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e + - name: che-dotnet-3.1-@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d + image: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d + # tag: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d + - name: che-golang-1.14-@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 + image: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 + # tag: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 + - name: che-java11-gradle-@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 + image: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 + # tag: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 + - name: che-java11-maven-@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d + image: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d + # tag: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d + - name: che-java8-maven-@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + image: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + # tag: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + - 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.22.0 + image: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + # tag: quay.io/eclipse/che-keycloak:7.22.0 + - name: che-keycloak-@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + image: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + # tag: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + - name: che-machine-exec-@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + image: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + # tag: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + - name: che-machine-exec-@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + image: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + # tag: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + - name: che-machine-exec-@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + image: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + # tag: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + - name: che-nodejs10-community-@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b + image: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b + # tag: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b + - name: che-nodejs10-ubi-@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 + image: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 + # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 + - name: che-nodejs12-community-@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 + image: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 + # tag: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 + - name: che-nodejs8-centos-@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 + image: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 + # tag: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 + - name: che-php-7-@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + image: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + # tag: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + - 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.22.0 + image: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + # tag: quay.io/eclipse/che-plugin-registry:7.22.0 + - name: che-plugin-registry-@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + image: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + # tag: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + - 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:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 + image: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 + # tag: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 + - name: che-python-3.7-@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 + image: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 + # tag: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 + - name: che-python-3.8-@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da + image: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da + # tag: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da + - name: che-quarkus-@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 + image: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 + # tag: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 + - name: che-rust-1.39-@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + image: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + # tag: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + - name: che-server-7.22.0 + image: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + # tag: quay.io/eclipse/che-server:7.22.0 + - name: che-server-@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + image: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + # tag: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + - name: che-sidecar-bazel-@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + # tag: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + - name: che-sidecar-camelk-@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + image: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + # tag: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + - name: che-sidecar-clang-@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + image: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + # tag: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + - name: che-sidecar-dart-@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + image: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + # tag: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + - name: che-sidecar-dependency-analytics-@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + # tag: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + - name: che-sidecar-dotnet-@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + image: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + # tag: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + - name: che-sidecar-flutter-@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + image: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + # tag: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + - name: che-sidecar-go-@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + image: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + # tag: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + - name: che-sidecar-java-@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + image: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + # tag: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + - name: che-sidecar-java-@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + image: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + # tag: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + - name: che-sidecar-java-@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + image: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + # tag: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + - name: che-sidecar-kubernetes-tooling-@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + - name: che-sidecar-node-@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + image: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + # tag: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + - name: che-sidecar-node-@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + image: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + # tag: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + - name: che-sidecar-node-@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + image: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + # tag: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + - name: che-sidecar-openshift-connector-@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + # tag: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + - name: che-sidecar-php-@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + image: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + # tag: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + - name: che-sidecar-protobuf-@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + image: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + # tag: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + - name: che-sidecar-python-@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + image: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + # tag: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + - name: che-sidecar-ruby-@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + image: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + # tag: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + - name: che-sidecar-shellcheck-@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + image: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + # tag: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + - name: che-sidecar-sonarlint-@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + image: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + # tag: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + - name: che-sidecar-tekton-@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + image: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + # tag: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + - name: che-sidecar-vale-@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + image: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + # tag: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + - name: che-theia-endpoint-runtime-binary-@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + - name: che-theia-endpoint-runtime-binary-@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + - name: che-theia-endpoint-runtime-binary-@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + - name: che-theia-@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + image: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + # tag: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + - name: che-theia-@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + image: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + # tag: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + - name: che-theia-@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + image: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + # tag: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + - 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:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 + image: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 + # tag: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 + - name: ubi8-minimal-8.3-201 + image: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8-minimal:8.3-201 + - name: ubi8-minimal-@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + image: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - name: ubi-minimal-@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - 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-0759693 + image: quay.io/che-incubator/che-editor-intellij-community@sha256:7e2b1812b55739bd6dd894625d4d2b684207af07dbd9706e5b26f720aefbb6db + # tag: quay.io/che-incubator/che-editor-intellij-community:2020.2-0759693 + - 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.21.1 + image: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + # tag: quay.io/eclipse/che-machine-exec:7.21.1 + - name: che-machine-exec-7.21.2 + image: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + # tag: quay.io/eclipse/che-machine-exec:7.21.2 + - name: che-machine-exec-7.22.0 + image: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + # tag: quay.io/eclipse/che-machine-exec:7.22.0 + - name: che-plugin-sidecar-haskell-b64039f + image: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 + # tag: quay.io/eclipse/che-plugin-sidecar:haskell-b64039f + - name: che-plugin-sidecar-scala-1be6877 + image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + # tag: quay.io/eclipse/che-plugin-sidecar:scala-1be6877 + - name: che-sidecar-bazel-3.2.0-e352e6b + image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + # tag: quay.io/eclipse/che-sidecar-bazel:3.2.0-e352e6b + - name: che-sidecar-camelk-0.0.18-39f19dd + image: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + # tag: quay.io/eclipse/che-sidecar-camelk:0.0.18-39f19dd + - name: che-sidecar-clang-8-83adb3a + image: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + # tag: quay.io/eclipse/che-sidecar-clang:8-83adb3a + - name: che-sidecar-dart-2.10-a2959e6 + image: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + # tag: quay.io/eclipse/che-sidecar-dart:2.10-a2959e6 + - name: che-sidecar-dependency-analytics-0.0.13-2f3b058 + image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.13-2f3b058 + - name: che-sidecar-dotnet-3.1.301-4bdcdc2 + image: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + # tag: quay.io/eclipse/che-sidecar-dotnet:3.1.301-4bdcdc2 + - name: che-sidecar-flutter-3.14.1-54a951d + image: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + # tag: quay.io/eclipse/che-sidecar-flutter:3.14.1-54a951d + - name: che-sidecar-go-1.14.4-3edc927 + image: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + # tag: quay.io/eclipse/che-sidecar-go:1.14.4-3edc927 + - name: che-sidecar-java-11-7bd8c8c + image: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + # tag: quay.io/eclipse/che-sidecar-java:11-7bd8c8c + - name: che-sidecar-java-11-86274e3 + image: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + # tag: quay.io/eclipse/che-sidecar-java:11-86274e3 + - name: che-sidecar-java-8-0cfbacb + image: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + # tag: quay.io/eclipse/che-sidecar-java:8-0cfbacb + - name: che-sidecar-kubernetes-tooling-1.2.1-6144144 + image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.2.1-6144144 + - name: che-sidecar-node-10-0cb5d78 + image: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + # tag: quay.io/eclipse/che-sidecar-node:10-0cb5d78 + - name: che-sidecar-node-12-026416c + image: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + # tag: quay.io/eclipse/che-sidecar-node:12-026416c + - name: che-sidecar-node-12-da9c36b + image: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + # tag: quay.io/eclipse/che-sidecar-node:12-da9c36b + - name: che-sidecar-openshift-connector-0.2.0-6d2214b + image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.2.0-6d2214b + - name: che-sidecar-php-7-b95f23f + image: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + # tag: quay.io/eclipse/che-sidecar-php:7-b95f23f + - name: che-sidecar-protobuf-0.4.2-a79a2ff + image: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + # tag: quay.io/eclipse/che-sidecar-protobuf:0.4.2-a79a2ff + - name: che-sidecar-python-3.8.6-5913fc2 + image: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + # tag: quay.io/eclipse/che-sidecar-python:3.8.6-5913fc2 + - name: che-sidecar-ruby-2.6-76f1125 + image: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + # tag: quay.io/eclipse/che-sidecar-ruby:2.6-76f1125 + - name: che-sidecar-shellcheck-v0.7.1-b16c5b5 + image: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + # tag: quay.io/eclipse/che-sidecar-shellcheck:v0.7.1-b16c5b5 + - name: che-sidecar-sonarlint-1.16.0-4af5039 + image: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + # tag: quay.io/eclipse/che-sidecar-sonarlint:1.16.0-4af5039 + - name: che-sidecar-tekton-0.2.0-7a8b4ad + image: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + # tag: quay.io/eclipse/che-sidecar-tekton:0.2.0-7a8b4ad + - name: che-sidecar-vale-0.9.1-a8fe390 + image: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-a8fe390 + - name: che-theia-endpoint-runtime-binary-7.21.1 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.1 + - name: che-theia-endpoint-runtime-binary-7.21.2 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.2 + - name: che-theia-endpoint-runtime-binary-7.22.0 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.22.0 + - name: che-theia-7.21.1 + image: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + # tag: quay.io/eclipse/che-theia:7.21.1 + - name: che-theia-7.21.2 + image: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + # tag: quay.io/eclipse/che-theia:7.21.2 + - name: che-theia-7.22.0 + image: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + # tag: quay.io/eclipse/che-theia:7.22.0 + - name: mta-vscode-extension-latest + image: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 + # tag: quay.io/windupeng/mta-vscode-extension:latest + - 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.22.0 + image: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 + # tag: quay.io/eclipse/che-cpp-rhel7:7.22.0 + - name: che-dotnet-2.2-7.22.0 + image: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e + # tag: quay.io/eclipse/che-dotnet-2.2:7.22.0 + - name: che-dotnet-3.1-7.22.0 + image: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d + # tag: quay.io/eclipse/che-dotnet-3.1:7.22.0 + - name: che-golang-1.14-7.22.0 + image: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 + # tag: quay.io/eclipse/che-golang-1.14:7.22.0 + - name: che-java11-gradle-7.22.0 + image: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 + # tag: quay.io/eclipse/che-java11-gradle:7.22.0 + - name: che-java11-maven-7.22.0 + image: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d + # tag: quay.io/eclipse/che-java11-maven:7.22.0 + - name: che-java8-maven-7.22.0 + image: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + # tag: quay.io/eclipse/che-java8-maven:7.22.0 + - name: che-nodejs10-community-7.22.0 + image: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b + # tag: quay.io/eclipse/che-nodejs10-community:7.22.0 + - name: che-nodejs10-ubi-7.22.0 + image: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 + # tag: quay.io/eclipse/che-nodejs10-ubi:7.22.0 + - name: che-nodejs12-community-7.22.0 + image: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 + # tag: quay.io/eclipse/che-nodejs12-community:7.22.0 + - name: che-nodejs8-centos-7.22.0 + image: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 + # tag: quay.io/eclipse/che-nodejs8-centos:7.22.0 + - name: che-php-7-7.22.0 + image: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + # tag: quay.io/eclipse/che-php-7:7.22.0 + - name: che-python-3.7-7.22.0 + image: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 + # tag: quay.io/eclipse/che-python-3.7:7.22.0 + - name: che-python-3.8-7.22.0 + image: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da + # tag: quay.io/eclipse/che-python-3.8:7.22.0 + - name: che-quarkus-7.22.0 + image: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 + # tag: quay.io/eclipse/che-quarkus:7.22.0 + - name: che-rust-1.39-7.22.0 + image: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + # tag: quay.io/eclipse/che-rust-1.39:7.22.0 + - name: ubi-minimal- + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8/ubi-minimal diff --git a/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.v7.22.0.clusterserviceversion.yaml.diff b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.v7.22.0.clusterserviceversion.yaml.diff new file mode 100644 index 000000000..ca60b885e --- /dev/null +++ b/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.v7.22.0.clusterserviceversion.yaml.diff @@ -0,0 +1,1632 @@ +--- /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.21.2/eclipse-che-preview-openshift.v7.21.2.clusterserviceversion.yaml 2020-11-20 14:14:56.435152294 +0000 ++++ /home/runner/work/che-operator/che-operator/olm/eclipse-che-preview-openshift/deploy/olm-catalog/eclipse-che-preview-openshift/7.22.0/eclipse-che-preview-openshift.v7.22.0.clusterserviceversion.yaml 2020-11-20 14:20:44.853439151 +0000 +@@ -8,110 +8,139 @@ + "apiVersion": "org.eclipse.che/v1", + "kind": "CheCluster", + "metadata": { +- "name": "eclipse-che" ++ "name": "eclipse-che" + }, + "spec": { +- "server": { +- "cheImageTag": "", +- "devfileRegistryImage": "", +- "pluginRegistryImage": "", +- "tlsSupport": true, +- "selfSignedCert": false +- }, +- "database": { +- "externalDb": false, +- "chePostgresHostName": "", +- "chePostgresPort": "", +- "chePostgresUser": "", +- "chePostgresPassword": "", +- "chePostgresDb": "" +- }, +- "auth": { +- "openShiftoAuth": true, +- "identityProviderImage": "", +- "externalIdentityProvider": false, +- "identityProviderURL": "", +- "identityProviderRealm": "", +- "identityProviderClientId": "" +- }, +- "storage": { +- "pvcStrategy": "per-workspace", +- "pvcClaimSize": "1Gi", +- "preCreateSubPaths": true +- }, +- "metrics": { +- "enable": true +- } ++ "auth": { ++ "externalIdentityProvider": false, ++ "identityProviderAdminUserName": "", ++ "identityProviderClientId": "", ++ "identityProviderImage": "", ++ "identityProviderPassword": "", ++ "identityProviderRealm": "", ++ "identityProviderURL": "", ++ "oAuthClientName": "", ++ "oAuthSecret": "", ++ "openShiftoAuth": true ++ }, ++ "database": { ++ "chePostgresDb": "", ++ "chePostgresHostName": "", ++ "chePostgresPassword": "", ++ "chePostgresPort": "", ++ "chePostgresUser": "", ++ "externalDb": false, ++ "postgresImage": "" ++ }, ++ "metrics": { ++ "enable": true ++ }, ++ "server": { ++ "allowUserDefinedWorkspaceNamespaces": false, ++ "cheFlavor": "", ++ "cheImage": "", ++ "cheImageTag": "", ++ "cheWorkspaceClusterRole": "", ++ "devfileRegistryImage": "", ++ "gitSelfSignedCert": false, ++ "nonProxyHosts": "", ++ "pluginRegistryImage": "", ++ "proxyPassword": "", ++ "proxyPort": "", ++ "proxyURL": "", ++ "proxyUser": "", ++ "serverExposureStrategy": "", ++ "serverMemoryLimit": "", ++ "serverMemoryRequest": "", ++ "serverTrustStoreConfigMapName": "", ++ "singleHostGatewayConfigMapLabels": {}, ++ "singleHostGatewayConfigSidecarImage": "", ++ "singleHostGatewayImage": "", ++ "tlsSupport": true, ++ "workspaceNamespaceDefault": "" ++ }, ++ "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:de7b3a191546f1ae2c0c7dc3845378d0e084b51db2fafa8a07145504eece1b91 +- createdAt: "2020-11-17T08:41:12Z" ++ containerImage: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 ++ createdAt: "2020-11-20T14:19:51Z" + 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.21.2 ++ name: eclipse-che-preview-openshift.v7.22.0 + namespace: placeholder + spec: + apiservicedefinitions: {} + customresourcedefinitions: + owned: +- - description: Eclipse Che cluster with DB and Auth Server ++ - 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: Log in to Eclipse Che with OpenShift credentials +- displayName: OpenShift oAuth +- path: auth.openShiftoAuth +- x-descriptors: +- - urn:alm:descriptor:com.tectonic.ui:booleanSwitch +- - description: TLS routes +- displayName: TLS Mode ++ - 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 + path: server.tlsSupport + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:booleanSwitch + statusDescriptors: +- - description: Route to access Eclipse Che ++ - 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: Route to access Keycloak Admin Console +- displayName: Keycloak Admin Console URL +- path: keycloakURL +- x-descriptors: +- - urn:alm:descriptor:org.w3:link +- - description: Eclipse Che server version +- displayName: Eclipse Che version ++ - description: Current installed Che version ++ displayName: 'displayName: Eclipse Che version' + path: cheVersion + x-descriptors: +- - urn:alm:descriptor:com.tectonic.ui:label +- - description: The current status of the application +- displayName: Status +- path: cheClusterRunning ++ - urn:alm:descriptor:org.w3:link ++ - description: A URL that can point to some URL where to find help related ++ to the current Operator status. ++ displayName: Help link ++ path: helpLink + x-descriptors: +- - urn:alm:descriptor:io.kubernetes.phase +- - description: Reason of the current status +- displayName: Reason +- path: reason ++ - urn:alm:descriptor:org.w3:link ++ - description: Public URL to the Identity Provider server (Keycloak / RH ++ SSO). ++ displayName: Keycloak Admin Console URL ++ path: keycloakURL + x-descriptors: +- - urn:alm:descriptor:text +- - description: Message explaining the current status ++ - 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: Link providing help related to the current status +- displayName: Help link +- path: helpLink ++ - description: A brief CamelCase message indicating details about why the ++ pod is in this state. ++ displayName: Reason ++ path: reason + x-descriptors: +- - urn:alm:descriptor:org.w3:link ++ - 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. +@@ -250,7 +279,24 @@ + - update + - patch + - delete ++ - apiGroups: ++ - rbac.authorization.k8s.io ++ resources: ++ - clusterrolebindings ++ verbs: ++ - list ++ - create ++ - watch + serviceAccountName: che-operator ++ - rules: ++ - apiGroups: ++ - "" ++ resources: ++ - namespaces ++ verbs: ++ - update ++ - get ++ serviceAccountName: che-namespace-editor + deployments: + - name: che-operator + spec: +@@ -279,19 +325,19 @@ + - name: OPERATOR_NAME + value: che-operator + - name: CHE_VERSION +- value: 7.21.2 ++ value: 7.22.0 + - name: RELATED_IMAGE_che_server +- value: quay.io/eclipse/che-server@sha256:089f499781d8061ea9f0b621424378ac719a7928c19ae7868a156f4092d279a0 ++ value: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + - name: RELATED_IMAGE_plugin_registry +- value: quay.io/eclipse/che-plugin-registry@sha256:3e8e0b171b37c525ca4f00df878338a976038215505d751b67e7792b9a57d96c ++ value: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb + - name: RELATED_IMAGE_devfile_registry +- value: quay.io/eclipse/che-devfile-registry@sha256:f4613d1e2bcc9111e3462b009249528b79e7b7dde27b0eccc2f80d56d2ca0e8f ++ value: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 + - name: RELATED_IMAGE_pvc_jobs +- value: registry.access.redhat.com/ubi8-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6 ++ value: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - name: RELATED_IMAGE_postgres + value: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + - name: RELATED_IMAGE_keycloak +- value: quay.io/eclipse/che-keycloak@sha256:32573a11e1f0dd4e1c4d03051f88d3dc4c2b38f5a31587c61406545115f4b5d0 ++ value: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + - 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 +@@ -322,18 +368,10 @@ + value: ca-certs + - name: RELATED_IMAGE_code_server_plugin_registry_image_GMXDMLRS + value: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +- - name: RELATED_IMAGE_coder_plugin_registry_image_GIXDCNJSGMWXM43DGEXDGOBOGEWWG2DF +- value: docker.io/chinodesuuu/coder@sha256:6387eee627678d36fa1313017cf5620890f25559df8b24cb53e1d5f4ab6f4726 +- - name: RELATED_IMAGE_coder_plugin_registry_image_GIXDCNRVGAWXM43DGEXDGOJOGIWWG2DF +- value: docker.io/chinodesuuu/coder@sha256:1af9c45c3f8c9836dba10c4a2c7b43915bc04fa4b9b9cc598d4bad5cf036817e +- - name: RELATED_IMAGE_coder_plugin_registry_image_NZSXQ5A_ +- value: docker.io/chinodesuuu/coder@sha256:77f51200f6f9ff62551794be48a3497e464c93f2420877253b98de3e041e0e9d + - 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_rhamt_vscode_extension_plugin_registry_image_NJQXMYJY +- value: docker.io/windup3/rhamt-vscode-extension@sha256:a5cd9002cb992803a34a210e519582d341c74ee91248061103c08278c3db1f76 + - 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_GIYDEMBOGIWTANZVHE3DSMY_ +@@ -342,98 +380,38 @@ + 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_G4XDCNJOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNJOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:5d721f6e3b436a16ada88e19fd4bdc43c6ed9daab4ca168f4497f856146b383a +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNJOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNROGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:6c10be6622777471f0baacd0be488d9b57eb8ff9c5d3b107f9a0de9a5d3c19f8 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNROGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNROGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:c37020496b61157f109260477d0aa6e27d9e7a33058a64c20c02626834707cc6 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCNZOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOBOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOJOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:06d8d0735033f5371613f9e1d8f6f54b298a2b93387702f5aecdf8818e393ada +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOJOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:bcb3f5458775291d0177688c77346a98d9ebc84a0f47cf93731134472e9fc5a5 +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDCOJOGI______ +- value: quay.io/eclipse/che-machine-exec@sha256:0a6487575d43255875f67fe5cc38904a7a630d1bcb4e36d3d94ba614b429ac1d +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMBOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:abd5405e08cf7f5b6f46bd8aa558cbc82e4c70f332c0062af9b2c1c07d06045e +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMBOGE______ +- value: quay.io/eclipse/che-machine-exec@sha256:ccdf212f7466b255013ed56b3c567988b4601864baabd7d61be834aa4d9fb38c +- - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGA______ +- value: quay.io/eclipse/che-machine-exec@sha256:cd4c3f246eddae4d5932429ec55451b46b014b0da67801eed1b18af33eb0924d + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 ++ - name: RELATED_IMAGE_che_machine_exec_plugin_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_NBQXG23FNRWC2YRWGQYDGOLG ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 ++ - name: RELATED_IMAGE_che_plugin_sidecar_plugin_registry_image_ONRWC3DBFUYWEZJWHA3TO___ ++ value: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df + - name: RELATED_IMAGE_che_sidecar_bazel_plugin_registry_image_GMXDELRQFVSTGNJSMU3GE___ + value: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGQWTKOLEGI2TQYQ_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:ddd941979443a9962a27f2a059d95550768cbab76848d606ce410536ff2bdaa0 +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGUWWCNJXHBRTIYI_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:f830861c2a1d99ebb0579b4ee3761fbcd51cf42af54306cc6ae02d865866ffc3 +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRGYWTOZBXGUZTQZQ_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:7e1e9b422cfd7bef16858c404eaad0ab1b288f273f89f056cf1b086744435954 +- - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRG4WTGZBXHBRTANY_ +- value: quay.io/eclipse/che-sidecar-camelk@sha256:602674d78a88c0d19a2103c2258b3c9e03aa5759e9a9a8c7dd9b11af96f7e61b + - name: RELATED_IMAGE_che_sidecar_camelk_plugin_registry_image_GAXDALRRHAWTGOLGGE4WIZA_ + value: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + - name: RELATED_IMAGE_che_sidecar_clang_plugin_registry_image_HAWTQM3BMRRDGYI_ + value: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + - name: RELATED_IMAGE_che_sidecar_dart_plugin_registry_image_GIXDCMBNMEZDSNJZMU3A____ + value: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 +- - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGIWWINBXHAZTKMI_ +- value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:392eb12ffac4c1369faec782221fe1758fd826c77aba8ce88ad3ecbf59154ed7 + - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGMWTEZRTMIYDKOA_ + value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 +- - name: RELATED_IMAGE_che_sidecar_dependency_analytics_plugin_registry_image_GAXDALRRGMWWCMZYMNRDAYY_ +- value: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:0708b3c63d2065ef96667cacec9a46570f00fcb0f107df3e902ac444e68e1170 +- - name: RELATED_IMAGE_che_sidecar_dotnet_plugin_registry_image_GIXDELRRGA2S2MTGMQ3GKNZY +- value: quay.io/eclipse/che-sidecar-dotnet@sha256:5c0957a726a0cafb4ffa9e757425128e3f702123d11c5e673ff8ee58c712aea2 + - name: RELATED_IMAGE_che_sidecar_dotnet_plugin_registry_image_GMXDCLRTGAYS2NDCMRRWIYZS + value: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + - name: RELATED_IMAGE_che_sidecar_flutter_plugin_registry_image_GMXDCNBOGEWTKNDBHE2TCZA_ + value: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + - name: RELATED_IMAGE_che_sidecar_go_plugin_registry_image_GEXDCNBOGQWTGZLEMM4TENY_ + value: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 +- - name: RELATED_IMAGE_che_sidecar_haskell_plugin_registry_image_HAXDCMBOGEWWKY3DMQ2TAMY_ +- value: quay.io/eclipse/che-sidecar-haskell@sha256:970d658ce856e6185db301c259017ef1e1588e3affea4f8fd6cf047f7f2a532b +- - name: RELATED_IMAGE_che_sidecar_haskell_plugin_registry_image_HAXDCMBOGIWWCNZZMM3DQYI_ +- value: quay.io/eclipse/che-sidecar-haskell@sha256:8e67a721a458fb07b8b8f975c5b313237b44e101be209905afddf4ddf66bebc0 +- - name: RELATED_IMAGE_che_sidecar_haskell_plugin_registry_image_HAXDQLRUFUYTIZRRMRSTS___ +- value: quay.io/eclipse/che-sidecar-haskell@sha256:8de87b3926b3ec9106c0fc0d1087787a07f935b64880323e78c3b30357af3554 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2N3CMQ4GGODD + value: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2OBWGI3TIZJT + value: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a +- - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2YJQGZRWEYRR +- value: quay.io/eclipse/che-sidecar-java@sha256:d35c57b1194f94672fcce2e1a4ea62448c6273966eb0d7d1df776e3164ed8dbb +- - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_GEYS2ZRXGZRWCNBV +- value: quay.io/eclipse/che-sidecar-java@sha256:54a5f721588455403d8c2a81d1fbc8fef2c6a32aead44f2fb3e24a8a1fddb9a2 + - name: RELATED_IMAGE_che_sidecar_java_plugin_registry_image_HAWTAY3GMJQWGYQ_ + value: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d +- - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDALRZFU4DEYZXGA2GK___ +- value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:55e83d7f8cbf6a044ca68a4beb95e1192ae71a6d27f24cec7e300588f127480f +- - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDCLRQFUZTCYJYGQ3DI___ +- value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:3f551189a697cac40870696f39dd92195021bbb3279e2f26902234ab65a88f10 +- - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDELRQFUZWKYJVG5SDK___ +- value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:882fca5fc7aad06a663a9c2b499e4f2de1cc991b48b0390b380e4ede1cb47f1f + - name: RELATED_IMAGE_che_sidecar_kubernetes_tooling_plugin_registry_image_GEXDELRRFU3DCNBUGE2DI___ + value: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEYC2MDDMI2WINZY +@@ -442,157 +420,77 @@ + value: quay.io/eclipse/che-sidecar-node@sha256:fab5f98d9546eeff68d54bd71ea6e3d91bbf21b7f6beea1ae1117da432731b61 + - name: RELATED_IMAGE_che_sidecar_node_plugin_registry_image_GEZC2ZDBHFRTGNTC + value: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 +- - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDCLRSFUZDMMBRGUYDS___ +- value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:8e4403ef1f7f74af3568abd60ccf1b959e2f43bef0001ba7a77ca5f8bc0d5a0e +- - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDCLRVFU3DEMDEMJRTO___ +- value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:d780f74b137e21c56b6815e6a4ab7907b69dfaefb377b0838649c88c947287aa + - name: RELATED_IMAGE_che_sidecar_openshift_connector_plugin_registry_image_GAXDELRQFU3GIMRSGE2GE___ + value: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 +- - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WTKYZVMVRWGNI_ +- value: quay.io/eclipse/che-sidecar-php@sha256:e4f1db4b5bc641485f42a5e0534c37894042c5302acfb1fefcfdf6d659aa7925 +- - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WTSZJZG4YTKZI_ +- value: quay.io/eclipse/che-sidecar-php@sha256:4f1af8a266fbbab9542c794cc8a74575d24813bc7f48f5efbd451b850931592c ++ - name: RELATED_IMAGE_che_sidecar_php_plugin_registry_image_G4WWEOJVMYZDGZQ_ ++ value: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + - name: RELATED_IMAGE_che_sidecar_protobuf_plugin_registry_image_GAXDILRSFVQTOOLBGJTGM___ + value: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c +- - name: RELATED_IMAGE_che_sidecar_python_plugin_registry_image_GMXDOLRTFU4GMMZZGM2DQ___ +- value: quay.io/eclipse/che-sidecar-python@sha256:9d910486a81d92ebdeaab4c2fc71546bee23ff7e3a986fdb9df4e458819cb958 + - name: RELATED_IMAGE_che_sidecar_python_plugin_registry_image_GMXDQLRWFU2TSMJTMZRTE___ + value: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + - name: RELATED_IMAGE_che_sidecar_ruby_plugin_registry_image_GIXDMLJXGZTDCMJSGU______ + value: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f +- - name: RELATED_IMAGE_che_sidecar_scala_plugin_registry_image_GAXDSLRQFU3GCOBTGNSWG___ +- value: quay.io/eclipse/che-sidecar-scala@sha256:bdae1cc3e0886421f610adf38f4216a5f2184eccd731107f3bbd3c1f3444b69b +- - name: RELATED_IMAGE_che_sidecar_scala_plugin_registry_image_GAXDSLRQFVRGEOBUGI2DI___ +- value: quay.io/eclipse/che-sidecar-scala@sha256:8585ac9d41a1e4a754d89225ec7cc25836236fbb370220bb8050fa121f34d82a + - name: RELATED_IMAGE_che_sidecar_shellcheck_plugin_registry_image_OYYC4NZOGEWWEMJWMM2WENI_ + value: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + - name: RELATED_IMAGE_che_sidecar_sonarlint_plugin_registry_image_GEXDCNROGAWTIYLGGUYDGOI_ + value: quay.io/eclipse/che-sidecar-sonarlint@sha256:6e887c710c0d755dc7ff400aa441bb8b599dd5097357d246aba1c1abfa1d7f19 + - name: RELATED_IMAGE_che_sidecar_tekton_plugin_registry_image_GAXDELRQFU3WCODCGRQWI___ + value: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 +- - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFUYDIZRSGU2GK___ +- value: quay.io/eclipse/che-sidecar-vale@sha256:a775aeac18fb50b3c0b517f3bcc63eaa497ded4250db0b868fabb1caf2c598b3 +- - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFVQWINJTMNRWM___ +- value: quay.io/eclipse/che-sidecar-vale@sha256:654b3efbdb73b2242ce32d4a0d7da77ac561942c2a37906cff49029a9481b2cc +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNJOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:ec9d069625d64d9525d540cb3adce6f798374bbbbe0334c1fd71cefd2bd9fd58 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNJOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNJOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNROGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNROGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14c3debebf62ec92dbf2b1536e4823ea66a89886b0b57a7518670af72727c252 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNROGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:41c4fbb43648aa0aab62f4ca9b4d9a1debce35c13cc64225a04f9df83c6a2c20 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCNZOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOBOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOJOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2e4a64b57603f3a4471cbdf4e9e4078bb0246811c2a1da940d1cf7370595745a +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOJOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4dd127ad0c95c710cf5b65f9dc0bb9a607dffbd0e8e0dc2e0b1fa02e53fe3b9c +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDCOJOGI______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e701676a75c1a34aaa141a6909fdd9caa42e2917427d84eb0d2ab82d0540774d +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMBOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a618b628130b2f8cac00ea45f7a30da497ca1905699a884d9ed6b623109f702f +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMBOGE______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:3cc5fe39bf8ad43f9be221f5a34978bbfdbd44c8cfc6ddef96d1a4c67dd3fa91 +- - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGA______ +- value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:de21ef29794811a87278d363cdedeab4f75af38a2850f69fa7988a53477276ea ++ - name: RELATED_IMAGE_che_sidecar_vale_plugin_registry_image_GAXDSLRRFVQTQZTFGM4TA___ ++ value: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGA______ +- value: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGE______ +- value: quay.io/eclipse/che-theia@sha256:74d65d2d0accc3bb8c09ea2a0653c3b95c9e4602917252d6e1d5ef652102696f +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNJOGI______ +- value: quay.io/eclipse/che-theia@sha256:f52414ef293498e14316de52c3d64e8b8537ef2b3044afd9ac9cf19489da7451 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNROGA______ +- value: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNROGE______ +- value: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNROGI______ +- value: quay.io/eclipse/che-theia@sha256:73639e49c4e369fefa21c73bac3933d17c68fb0912da9b377bec6e239f575bab +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGA______ +- value: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGE______ +- value: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCNZOGI______ +- value: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGA______ +- value: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGE______ +- value: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOBOGI______ +- value: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOJOGA______ +- value: quay.io/eclipse/che-theia@sha256:acdf1ea0afe14143585cc81ae069b9db8ecc92b139f702ebc4a2f7fc6b67ea57 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOJOGE______ +- value: quay.io/eclipse/che-theia@sha256:3d29098601f80aef9e9ca6ccc353b07bd3f2334345b9665160050484b68794ca +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDCOJOGI______ +- value: quay.io/eclipse/che-theia@sha256:11b5fe33edd72df22f76d7933ba79029051f4c0c6adc6c1a91f2dfe4228455c9 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMBOGA______ +- value: quay.io/eclipse/che-theia@sha256:92a8bac94e446f1f933d1a92bc96dace9450c9f4efdef5539a429a37d14be904 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMBOGE______ +- value: quay.io/eclipse/che-theia@sha256:a56428ee28ceefca2a1cba51093f6015e0eee82659fec786f2e1fdc939fdb856 +- - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGA______ +- value: quay.io/eclipse/che-theia@sha256:350aa6b1a2dcbfb25b9b02607257c5197494dcf2327fab0955681116a6883216 ++ - name: RELATED_IMAGE_che_theia_endpoint_runtime_binary_plugin_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGE______ + value: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMJOGI______ + value: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 +- - name: RELATED_IMAGE_mongodb_36_centos7_devfile_registry_image_ +- value: docker.io/centos/mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 +- - name: RELATED_IMAGE_mysql_57_centos7_devfile_registry_image_ +- value: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- - name: RELATED_IMAGE_che_cpp_rhel7_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-cpp-rhel7@sha256:4b097d9f23977675e251ef2e6035d6697e6d30e996486e605dc808c6447cc169 +- - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-dotnet-2.2@sha256:87cb6d5d941602f70913d5a2a77c22f01602004d34ba6f38667c00528f138522 +- - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-dotnet-3.1@sha256:a32bde3f550f69aee2e396b0ec50a2c6f146b93a91ac3d8dbb76439c050aa6cb +- - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-golang-1.14@sha256:36ad7da570e8e91bc04f12dc227b57836846080214a63c732eec829eeb903999 +- - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-java11-gradle@sha256:99dd2cb3695bd1ac3e00cf62d4fd3e85ed33b034028e4f9c11390d866e1340c8 +- - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-java11-maven@sha256:0e264808a1a1d5baf4fd83586ac6de2563ef0f419f263be1ffe6c3d9249d6da2 +- - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-java8-maven@sha256:09a3078ca8cebf5ab51c8561818cd400e843cb5c885c5809ca870e21eab36156 +- - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs10-community@sha256:b5e99db4c4b4fdcabd192a6ba7a460bf6553083c2d2e00861b3d14281e82d499 +- - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs10-ubi@sha256:1a1cd469fb7dfb0565b71985713faf2c856e77e28796b557cdcb70df0e735f6b +- - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs12-community@sha256:39c149ddd067547e5987372a167e787891f1d63dd2f22b9ed329a041b1bde4e7 +- - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-nodejs8-centos@sha256:c20dc500027bd62c9212901bec97418e7ecddbfc098b9d6f843bb22376029c13 +- - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-php-7@sha256:21bf88bb4850ff483330cbc6c965e08f13cae4573510d03aade8f3e8fd28c10c +- - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-python-3.7@sha256:6db15f661b7b9cafde1de9d812bb7fe907eae2befc783b6e2933c262e7a4fa91 +- - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-python-3.8@sha256:1b3fd6fa48a66b6e69dea4eab677b6266d831351f0b51dc239a61f526e6a6d36 +- - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-quarkus@sha256:9588219c47a12016f4215ce526d1b99b83d08c4ad2de8f9ec6bef0b761b3b0c8 +- - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDEMJOGI______ +- value: quay.io/eclipse/che-rust-1.39@sha256:bff3e0456df470babc0e3d7fe5e6c355bdaa02f73157ae3af92cab80f5618df2 ++ - name: RELATED_IMAGE_che_theia_plugin_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 ++ - name: RELATED_IMAGE_mta_vscode_extension_plugin_registry_image_NRQXIZLTOQ______ ++ value: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 ++ - 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_G4XDEMROGA______ ++ value: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 ++ - name: RELATED_IMAGE_che_dotnet_2_2_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e ++ - name: RELATED_IMAGE_che_dotnet_3_1_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d ++ - name: RELATED_IMAGE_che_golang_1_14_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 ++ - name: RELATED_IMAGE_che_java11_gradle_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 ++ - name: RELATED_IMAGE_che_java11_maven_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d ++ - name: RELATED_IMAGE_che_java8_maven_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 ++ - name: RELATED_IMAGE_che_nodejs10_community_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b ++ - name: RELATED_IMAGE_che_nodejs10_ubi_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 ++ - name: RELATED_IMAGE_che_nodejs12_community_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 ++ - name: RELATED_IMAGE_che_nodejs8_centos_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 ++ - name: RELATED_IMAGE_che_php_7_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb ++ - name: RELATED_IMAGE_che_python_3_7_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 ++ - name: RELATED_IMAGE_che_python_3_8_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da ++ - name: RELATED_IMAGE_che_quarkus_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 ++ - name: RELATED_IMAGE_che_rust_1_39_devfile_registry_image_G4XDEMROGA______ ++ value: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 + - name: RELATED_IMAGE_ubi_minimal_devfile_registry_image_ + value: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee +- image: quay.io/eclipse/che-operator@sha256:de7b3a191546f1ae2c0c7dc3845378d0e084b51db2fafa8a07145504eece1b91 ++ image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 + imagePullPolicy: IfNotPresent + name: che-operator + ports: +@@ -707,33 +605,18 @@ + maturity: stable + provider: + name: Eclipse Foundation +- replaces: eclipse-che-preview-openshift.v7.21.1 +- version: 7.21.2 ++ replaces: eclipse-che-preview-openshift.v7.21.2 ++ version: 7.22.0 + relatedImages: +- - name: che-operator-7.21.2 +- image: quay.io/eclipse/che-operator@sha256:de7b3a191546f1ae2c0c7dc3845378d0e084b51db2fafa8a07145504eece1b91 +- # tag: quay.io/eclipse/che-operator:7.21.2 ++ - name: che-operator-7.22.0 ++ image: quay.io/eclipse/che-operator@sha256:bdebe5a39db23579281b7a3b6e0d40b095dcbea75c30e17cf62ee38ca191f5a8 ++ # tag: quay.io/eclipse/che-operator:7.22.0 + - name: postgresql-96-centos7-9.6 + image: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: centos/postgresql-96-centos7:9.6 +- - name: mongodb-36-centos7-@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 +- image: docker.io/centos/mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 +- # tag: docker.io/centos/mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 +- - name: mysql-57-centos7-@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- image: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- # tag: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 + - name: postgresql-96-centos7-@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + image: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 + # tag: docker.io/centos/postgresql-96-centos7@sha256:b681d78125361519180a6ac05242c296f8906c11eab7e207b5ca9a89b6344392 +- - name: coder-@sha256:1af9c45c3f8c9836dba10c4a2c7b43915bc04fa4b9b9cc598d4bad5cf036817e +- image: docker.io/chinodesuuu/coder@sha256:1af9c45c3f8c9836dba10c4a2c7b43915bc04fa4b9b9cc598d4bad5cf036817e +- # tag: docker.io/chinodesuuu/coder@sha256:1af9c45c3f8c9836dba10c4a2c7b43915bc04fa4b9b9cc598d4bad5cf036817e +- - name: coder-@sha256:6387eee627678d36fa1313017cf5620890f25559df8b24cb53e1d5f4ab6f4726 +- image: docker.io/chinodesuuu/coder@sha256:6387eee627678d36fa1313017cf5620890f25559df8b24cb53e1d5f4ab6f4726 +- # tag: docker.io/chinodesuuu/coder@sha256:6387eee627678d36fa1313017cf5620890f25559df8b24cb53e1d5f4ab6f4726 +- - name: coder-@sha256:77f51200f6f9ff62551794be48a3497e464c93f2420877253b98de3e041e0e9d +- image: docker.io/chinodesuuu/coder@sha256:77f51200f6f9ff62551794be48a3497e464c93f2420877253b98de3e041e0e9d +- # tag: docker.io/chinodesuuu/coder@sha256:77f51200f6f9ff62551794be48a3497e464c93f2420877253b98de3e041e0e9d + - name: code-server-@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + image: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + # tag: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 +@@ -749,9 +632,6 @@ + - name: traefik-@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + image: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 + # tag: docker.io/traefik@sha256:f5af5a5ce17fc3e353b507e8acce65d7f28126408a8c92dc3cac246d023dc9e8 +- - name: rhamt-vscode-extension-@sha256:a5cd9002cb992803a34a210e519582d341c74ee91248061103c08278c3db1f76 +- image: docker.io/windup3/rhamt-vscode-extension@sha256:a5cd9002cb992803a34a210e519582d341c74ee91248061103c08278c3db1f76 +- # tag: docker.io/windup3/rhamt-vscode-extension@sha256:a5cd9002cb992803a34a210e519582d341c74ee91248061103c08278c3db1f76 + - name: eclipse-broadway-@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + image: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + # tag: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 +@@ -764,126 +644,81 @@ + - 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-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:4b097d9f23977675e251ef2e6035d6697e6d30e996486e605dc808c6447cc169 +- image: quay.io/eclipse/che-cpp-rhel7@sha256:4b097d9f23977675e251ef2e6035d6697e6d30e996486e605dc808c6447cc169 +- # tag: quay.io/eclipse/che-cpp-rhel7@sha256:4b097d9f23977675e251ef2e6035d6697e6d30e996486e605dc808c6447cc169 +- - name: che-devfile-registry-7.21.2 +- image: quay.io/eclipse/che-devfile-registry@sha256:f4613d1e2bcc9111e3462b009249528b79e7b7dde27b0eccc2f80d56d2ca0e8f +- # tag: quay.io/eclipse/che-devfile-registry:7.21.2 +- - name: che-devfile-registry-@sha256:f4613d1e2bcc9111e3462b009249528b79e7b7dde27b0eccc2f80d56d2ca0e8f +- image: quay.io/eclipse/che-devfile-registry@sha256:f4613d1e2bcc9111e3462b009249528b79e7b7dde27b0eccc2f80d56d2ca0e8f +- # tag: quay.io/eclipse/che-devfile-registry@sha256:f4613d1e2bcc9111e3462b009249528b79e7b7dde27b0eccc2f80d56d2ca0e8f +- - name: che-dotnet-2.2-@sha256:87cb6d5d941602f70913d5a2a77c22f01602004d34ba6f38667c00528f138522 +- image: quay.io/eclipse/che-dotnet-2.2@sha256:87cb6d5d941602f70913d5a2a77c22f01602004d34ba6f38667c00528f138522 +- # tag: quay.io/eclipse/che-dotnet-2.2@sha256:87cb6d5d941602f70913d5a2a77c22f01602004d34ba6f38667c00528f138522 +- - name: che-dotnet-3.1-@sha256:a32bde3f550f69aee2e396b0ec50a2c6f146b93a91ac3d8dbb76439c050aa6cb +- image: quay.io/eclipse/che-dotnet-3.1@sha256:a32bde3f550f69aee2e396b0ec50a2c6f146b93a91ac3d8dbb76439c050aa6cb +- # tag: quay.io/eclipse/che-dotnet-3.1@sha256:a32bde3f550f69aee2e396b0ec50a2c6f146b93a91ac3d8dbb76439c050aa6cb +- - name: che-golang-1.14-@sha256:36ad7da570e8e91bc04f12dc227b57836846080214a63c732eec829eeb903999 +- image: quay.io/eclipse/che-golang-1.14@sha256:36ad7da570e8e91bc04f12dc227b57836846080214a63c732eec829eeb903999 +- # tag: quay.io/eclipse/che-golang-1.14@sha256:36ad7da570e8e91bc04f12dc227b57836846080214a63c732eec829eeb903999 +- - name: che-java11-gradle-@sha256:99dd2cb3695bd1ac3e00cf62d4fd3e85ed33b034028e4f9c11390d866e1340c8 +- image: quay.io/eclipse/che-java11-gradle@sha256:99dd2cb3695bd1ac3e00cf62d4fd3e85ed33b034028e4f9c11390d866e1340c8 +- # tag: quay.io/eclipse/che-java11-gradle@sha256:99dd2cb3695bd1ac3e00cf62d4fd3e85ed33b034028e4f9c11390d866e1340c8 +- - name: che-java11-maven-@sha256:0e264808a1a1d5baf4fd83586ac6de2563ef0f419f263be1ffe6c3d9249d6da2 +- image: quay.io/eclipse/che-java11-maven@sha256:0e264808a1a1d5baf4fd83586ac6de2563ef0f419f263be1ffe6c3d9249d6da2 +- # tag: quay.io/eclipse/che-java11-maven@sha256:0e264808a1a1d5baf4fd83586ac6de2563ef0f419f263be1ffe6c3d9249d6da2 +- - name: che-java8-maven-@sha256:09a3078ca8cebf5ab51c8561818cd400e843cb5c885c5809ca870e21eab36156 +- image: quay.io/eclipse/che-java8-maven@sha256:09a3078ca8cebf5ab51c8561818cd400e843cb5c885c5809ca870e21eab36156 +- # tag: quay.io/eclipse/che-java8-maven@sha256:09a3078ca8cebf5ab51c8561818cd400e843cb5c885c5809ca870e21eab36156 ++ - name: che-cpp-rhel7-@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 ++ image: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 ++ # tag: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 ++ - name: che-devfile-registry-7.22.0 ++ image: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 ++ # tag: quay.io/eclipse/che-devfile-registry:7.22.0 ++ - name: che-devfile-registry-@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 ++ image: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 ++ # tag: quay.io/eclipse/che-devfile-registry@sha256:2d09ed39c21737fc3415c077266cad10f3f0012c714c84a978c8a13bb558eea1 ++ - name: che-dotnet-2.2-@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e ++ image: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e ++ # tag: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e ++ - name: che-dotnet-3.1-@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d ++ image: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d ++ # tag: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d ++ - name: che-golang-1.14-@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 ++ image: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 ++ # tag: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 ++ - name: che-java11-gradle-@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 ++ image: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 ++ # tag: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 ++ - name: che-java11-maven-@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d ++ image: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d ++ # tag: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d ++ - name: che-java8-maven-@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 ++ image: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 ++ # tag: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 + - 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.21.2 +- image: quay.io/eclipse/che-keycloak@sha256:32573a11e1f0dd4e1c4d03051f88d3dc4c2b38f5a31587c61406545115f4b5d0 +- # tag: quay.io/eclipse/che-keycloak:7.21.2 +- - name: che-keycloak-@sha256:32573a11e1f0dd4e1c4d03051f88d3dc4c2b38f5a31587c61406545115f4b5d0 +- image: quay.io/eclipse/che-keycloak@sha256:32573a11e1f0dd4e1c4d03051f88d3dc4c2b38f5a31587c61406545115f4b5d0 +- # tag: quay.io/eclipse/che-keycloak@sha256:32573a11e1f0dd4e1c4d03051f88d3dc4c2b38f5a31587c61406545115f4b5d0 +- - name: che-machine-exec-@sha256:06d8d0735033f5371613f9e1d8f6f54b298a2b93387702f5aecdf8818e393ada +- image: quay.io/eclipse/che-machine-exec@sha256:06d8d0735033f5371613f9e1d8f6f54b298a2b93387702f5aecdf8818e393ada +- # tag: quay.io/eclipse/che-machine-exec@sha256:06d8d0735033f5371613f9e1d8f6f54b298a2b93387702f5aecdf8818e393ada +- - name: che-machine-exec-@sha256:0a6487575d43255875f67fe5cc38904a7a630d1bcb4e36d3d94ba614b429ac1d +- image: quay.io/eclipse/che-machine-exec@sha256:0a6487575d43255875f67fe5cc38904a7a630d1bcb4e36d3d94ba614b429ac1d +- # tag: quay.io/eclipse/che-machine-exec@sha256:0a6487575d43255875f67fe5cc38904a7a630d1bcb4e36d3d94ba614b429ac1d +- - name: che-machine-exec-@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76 +- image: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76 +- # tag: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76 +- - name: che-machine-exec-@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583 +- image: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583 +- # tag: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583 +- - name: che-machine-exec-@sha256:5d721f6e3b436a16ada88e19fd4bdc43c6ed9daab4ca168f4497f856146b383a +- image: quay.io/eclipse/che-machine-exec@sha256:5d721f6e3b436a16ada88e19fd4bdc43c6ed9daab4ca168f4497f856146b383a +- # tag: quay.io/eclipse/che-machine-exec@sha256:5d721f6e3b436a16ada88e19fd4bdc43c6ed9daab4ca168f4497f856146b383a +- - name: che-machine-exec-@sha256:6c10be6622777471f0baacd0be488d9b57eb8ff9c5d3b107f9a0de9a5d3c19f8 +- image: quay.io/eclipse/che-machine-exec@sha256:6c10be6622777471f0baacd0be488d9b57eb8ff9c5d3b107f9a0de9a5d3c19f8 +- # tag: quay.io/eclipse/che-machine-exec@sha256:6c10be6622777471f0baacd0be488d9b57eb8ff9c5d3b107f9a0de9a5d3c19f8 +- - name: che-machine-exec-@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972 +- image: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972 +- # tag: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972 ++ - name: che-keycloak-7.22.0 ++ image: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 ++ # tag: quay.io/eclipse/che-keycloak:7.22.0 ++ - name: che-keycloak-@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 ++ image: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 ++ # tag: quay.io/eclipse/che-keycloak@sha256:8d7b9beac71bc122602f9239d22059362efa55976740ff99433fedbd81fe1781 + - name: che-machine-exec-@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + image: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + # tag: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e +- - name: che-machine-exec-@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b +- image: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b +- # tag: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b +- - name: che-machine-exec-@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f +- image: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f +- # tag: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f +- - name: che-machine-exec-@sha256:abd5405e08cf7f5b6f46bd8aa558cbc82e4c70f332c0062af9b2c1c07d06045e +- image: quay.io/eclipse/che-machine-exec@sha256:abd5405e08cf7f5b6f46bd8aa558cbc82e4c70f332c0062af9b2c1c07d06045e +- # tag: quay.io/eclipse/che-machine-exec@sha256:abd5405e08cf7f5b6f46bd8aa558cbc82e4c70f332c0062af9b2c1c07d06045e +- - name: che-machine-exec-@sha256:bcb3f5458775291d0177688c77346a98d9ebc84a0f47cf93731134472e9fc5a5 +- image: quay.io/eclipse/che-machine-exec@sha256:bcb3f5458775291d0177688c77346a98d9ebc84a0f47cf93731134472e9fc5a5 +- # tag: quay.io/eclipse/che-machine-exec@sha256:bcb3f5458775291d0177688c77346a98d9ebc84a0f47cf93731134472e9fc5a5 +- - name: che-machine-exec-@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a +- image: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a +- # tag: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a +- - name: che-machine-exec-@sha256:c37020496b61157f109260477d0aa6e27d9e7a33058a64c20c02626834707cc6 +- image: quay.io/eclipse/che-machine-exec@sha256:c37020496b61157f109260477d0aa6e27d9e7a33058a64c20c02626834707cc6 +- # tag: quay.io/eclipse/che-machine-exec@sha256:c37020496b61157f109260477d0aa6e27d9e7a33058a64c20c02626834707cc6 ++ - name: che-machine-exec-@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 ++ image: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 ++ # tag: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 + - name: che-machine-exec-@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + image: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + # tag: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 +- - name: che-machine-exec-@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2 +- image: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2 +- # tag: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2 +- - name: che-machine-exec-@sha256:ccdf212f7466b255013ed56b3c567988b4601864baabd7d61be834aa4d9fb38c +- image: quay.io/eclipse/che-machine-exec@sha256:ccdf212f7466b255013ed56b3c567988b4601864baabd7d61be834aa4d9fb38c +- # tag: quay.io/eclipse/che-machine-exec@sha256:ccdf212f7466b255013ed56b3c567988b4601864baabd7d61be834aa4d9fb38c +- - name: che-machine-exec-@sha256:cd4c3f246eddae4d5932429ec55451b46b014b0da67801eed1b18af33eb0924d +- image: quay.io/eclipse/che-machine-exec@sha256:cd4c3f246eddae4d5932429ec55451b46b014b0da67801eed1b18af33eb0924d +- # tag: quay.io/eclipse/che-machine-exec@sha256:cd4c3f246eddae4d5932429ec55451b46b014b0da67801eed1b18af33eb0924d +- - name: che-machine-exec-@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f +- image: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f +- # tag: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f +- - name: che-machine-exec-@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06 +- image: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06 +- # tag: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06 +- - name: che-nodejs10-community-@sha256:b5e99db4c4b4fdcabd192a6ba7a460bf6553083c2d2e00861b3d14281e82d499 +- image: quay.io/eclipse/che-nodejs10-community@sha256:b5e99db4c4b4fdcabd192a6ba7a460bf6553083c2d2e00861b3d14281e82d499 +- # tag: quay.io/eclipse/che-nodejs10-community@sha256:b5e99db4c4b4fdcabd192a6ba7a460bf6553083c2d2e00861b3d14281e82d499 +- - name: che-nodejs10-ubi-@sha256:1a1cd469fb7dfb0565b71985713faf2c856e77e28796b557cdcb70df0e735f6b +- image: quay.io/eclipse/che-nodejs10-ubi@sha256:1a1cd469fb7dfb0565b71985713faf2c856e77e28796b557cdcb70df0e735f6b +- # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:1a1cd469fb7dfb0565b71985713faf2c856e77e28796b557cdcb70df0e735f6b +- - name: che-nodejs12-community-@sha256:39c149ddd067547e5987372a167e787891f1d63dd2f22b9ed329a041b1bde4e7 +- image: quay.io/eclipse/che-nodejs12-community@sha256:39c149ddd067547e5987372a167e787891f1d63dd2f22b9ed329a041b1bde4e7 +- # tag: quay.io/eclipse/che-nodejs12-community@sha256:39c149ddd067547e5987372a167e787891f1d63dd2f22b9ed329a041b1bde4e7 +- - name: che-nodejs8-centos-@sha256:c20dc500027bd62c9212901bec97418e7ecddbfc098b9d6f843bb22376029c13 +- image: quay.io/eclipse/che-nodejs8-centos@sha256:c20dc500027bd62c9212901bec97418e7ecddbfc098b9d6f843bb22376029c13 +- # tag: quay.io/eclipse/che-nodejs8-centos@sha256:c20dc500027bd62c9212901bec97418e7ecddbfc098b9d6f843bb22376029c13 +- - name: che-php-7-@sha256:21bf88bb4850ff483330cbc6c965e08f13cae4573510d03aade8f3e8fd28c10c +- image: quay.io/eclipse/che-php-7@sha256:21bf88bb4850ff483330cbc6c965e08f13cae4573510d03aade8f3e8fd28c10c +- # tag: quay.io/eclipse/che-php-7@sha256:21bf88bb4850ff483330cbc6c965e08f13cae4573510d03aade8f3e8fd28c10c ++ - name: che-nodejs10-community-@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b ++ image: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b ++ # tag: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b ++ - name: che-nodejs10-ubi-@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 ++ image: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 ++ # tag: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 ++ - name: che-nodejs12-community-@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 ++ image: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 ++ # tag: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 ++ - name: che-nodejs8-centos-@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 ++ image: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 ++ # tag: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 ++ - name: che-php-7-@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb ++ image: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb ++ # tag: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb + - 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 +@@ -896,111 +731,72 @@ + - 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.21.2 +- image: quay.io/eclipse/che-plugin-registry@sha256:3e8e0b171b37c525ca4f00df878338a976038215505d751b67e7792b9a57d96c +- # tag: quay.io/eclipse/che-plugin-registry:7.21.2 +- - name: che-plugin-registry-@sha256:3e8e0b171b37c525ca4f00df878338a976038215505d751b67e7792b9a57d96c +- image: quay.io/eclipse/che-plugin-registry@sha256:3e8e0b171b37c525ca4f00df878338a976038215505d751b67e7792b9a57d96c +- # tag: quay.io/eclipse/che-plugin-registry@sha256:3e8e0b171b37c525ca4f00df878338a976038215505d751b67e7792b9a57d96c +- - name: che-python-3.7-@sha256:6db15f661b7b9cafde1de9d812bb7fe907eae2befc783b6e2933c262e7a4fa91 +- image: quay.io/eclipse/che-python-3.7@sha256:6db15f661b7b9cafde1de9d812bb7fe907eae2befc783b6e2933c262e7a4fa91 +- # tag: quay.io/eclipse/che-python-3.7@sha256:6db15f661b7b9cafde1de9d812bb7fe907eae2befc783b6e2933c262e7a4fa91 +- - name: che-python-3.8-@sha256:1b3fd6fa48a66b6e69dea4eab677b6266d831351f0b51dc239a61f526e6a6d36 +- image: quay.io/eclipse/che-python-3.8@sha256:1b3fd6fa48a66b6e69dea4eab677b6266d831351f0b51dc239a61f526e6a6d36 +- # tag: quay.io/eclipse/che-python-3.8@sha256:1b3fd6fa48a66b6e69dea4eab677b6266d831351f0b51dc239a61f526e6a6d36 +- - name: che-quarkus-@sha256:9588219c47a12016f4215ce526d1b99b83d08c4ad2de8f9ec6bef0b761b3b0c8 +- image: quay.io/eclipse/che-quarkus@sha256:9588219c47a12016f4215ce526d1b99b83d08c4ad2de8f9ec6bef0b761b3b0c8 +- # tag: quay.io/eclipse/che-quarkus@sha256:9588219c47a12016f4215ce526d1b99b83d08c4ad2de8f9ec6bef0b761b3b0c8 +- - name: che-rust-1.39-@sha256:bff3e0456df470babc0e3d7fe5e6c355bdaa02f73157ae3af92cab80f5618df2 +- image: quay.io/eclipse/che-rust-1.39@sha256:bff3e0456df470babc0e3d7fe5e6c355bdaa02f73157ae3af92cab80f5618df2 +- # tag: quay.io/eclipse/che-rust-1.39@sha256:bff3e0456df470babc0e3d7fe5e6c355bdaa02f73157ae3af92cab80f5618df2 +- - name: che-server-7.21.2 +- image: quay.io/eclipse/che-server@sha256:089f499781d8061ea9f0b621424378ac719a7928c19ae7868a156f4092d279a0 +- # tag: quay.io/eclipse/che-server:7.21.2 +- - name: che-server-@sha256:089f499781d8061ea9f0b621424378ac719a7928c19ae7868a156f4092d279a0 +- image: quay.io/eclipse/che-server@sha256:089f499781d8061ea9f0b621424378ac719a7928c19ae7868a156f4092d279a0 +- # tag: quay.io/eclipse/che-server@sha256:089f499781d8061ea9f0b621424378ac719a7928c19ae7868a156f4092d279a0 ++ - name: che-plugin-registry-7.22.0 ++ image: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb ++ # tag: quay.io/eclipse/che-plugin-registry:7.22.0 ++ - name: che-plugin-registry-@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb ++ image: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb ++ # tag: quay.io/eclipse/che-plugin-registry@sha256:abfdefc5ab55db42e398e1a7ca7620c5e378727da8a5b3700aa80c361ba56aeb ++ - 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:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 ++ # tag: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 ++ - name: che-python-3.7-@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 ++ image: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 ++ # tag: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 ++ - name: che-python-3.8-@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da ++ image: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da ++ # tag: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da ++ - name: che-quarkus-@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 ++ image: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 ++ # tag: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 ++ - name: che-rust-1.39-@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 ++ image: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 ++ # tag: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 ++ - name: che-server-7.22.0 ++ image: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 ++ # tag: quay.io/eclipse/che-server:7.22.0 ++ - name: che-server-@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 ++ image: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 ++ # tag: quay.io/eclipse/che-server@sha256:5fd6e65661953f7810a44dc6fcd122a26816b01e0dc521b26c75806cc12eb7c2 + - name: che-sidecar-bazel-@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + # tag: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb +- - name: che-sidecar-camelk-@sha256:602674d78a88c0d19a2103c2258b3c9e03aa5759e9a9a8c7dd9b11af96f7e61b +- image: quay.io/eclipse/che-sidecar-camelk@sha256:602674d78a88c0d19a2103c2258b3c9e03aa5759e9a9a8c7dd9b11af96f7e61b +- # tag: quay.io/eclipse/che-sidecar-camelk@sha256:602674d78a88c0d19a2103c2258b3c9e03aa5759e9a9a8c7dd9b11af96f7e61b +- - name: che-sidecar-camelk-@sha256:7e1e9b422cfd7bef16858c404eaad0ab1b288f273f89f056cf1b086744435954 +- image: quay.io/eclipse/che-sidecar-camelk@sha256:7e1e9b422cfd7bef16858c404eaad0ab1b288f273f89f056cf1b086744435954 +- # tag: quay.io/eclipse/che-sidecar-camelk@sha256:7e1e9b422cfd7bef16858c404eaad0ab1b288f273f89f056cf1b086744435954 +- - name: che-sidecar-camelk-@sha256:ddd941979443a9962a27f2a059d95550768cbab76848d606ce410536ff2bdaa0 +- image: quay.io/eclipse/che-sidecar-camelk@sha256:ddd941979443a9962a27f2a059d95550768cbab76848d606ce410536ff2bdaa0 +- # tag: quay.io/eclipse/che-sidecar-camelk@sha256:ddd941979443a9962a27f2a059d95550768cbab76848d606ce410536ff2bdaa0 + - name: che-sidecar-camelk-@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + image: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + # tag: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 +- - name: che-sidecar-camelk-@sha256:f830861c2a1d99ebb0579b4ee3761fbcd51cf42af54306cc6ae02d865866ffc3 +- image: quay.io/eclipse/che-sidecar-camelk@sha256:f830861c2a1d99ebb0579b4ee3761fbcd51cf42af54306cc6ae02d865866ffc3 +- # tag: quay.io/eclipse/che-sidecar-camelk@sha256:f830861c2a1d99ebb0579b4ee3761fbcd51cf42af54306cc6ae02d865866ffc3 + - name: che-sidecar-clang-@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + image: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + # tag: quay.io/eclipse/che-sidecar-clang@sha256:1c217f34ca69108fdd1ab844c0bcf960edff92519677bde4f8a5f4841b104745 + - name: che-sidecar-dart-@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + image: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + # tag: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 +- - name: che-sidecar-dependency-analytics-@sha256:0708b3c63d2065ef96667cacec9a46570f00fcb0f107df3e902ac444e68e1170 +- image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:0708b3c63d2065ef96667cacec9a46570f00fcb0f107df3e902ac444e68e1170 +- # tag: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:0708b3c63d2065ef96667cacec9a46570f00fcb0f107df3e902ac444e68e1170 + - name: che-sidecar-dependency-analytics-@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + # tag: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 +- - name: che-sidecar-dependency-analytics-@sha256:392eb12ffac4c1369faec782221fe1758fd826c77aba8ce88ad3ecbf59154ed7 +- image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:392eb12ffac4c1369faec782221fe1758fd826c77aba8ce88ad3ecbf59154ed7 +- # tag: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:392eb12ffac4c1369faec782221fe1758fd826c77aba8ce88ad3ecbf59154ed7 + - name: che-sidecar-dotnet-@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + image: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + # tag: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d +- - name: che-sidecar-dotnet-@sha256:5c0957a726a0cafb4ffa9e757425128e3f702123d11c5e673ff8ee58c712aea2 +- image: quay.io/eclipse/che-sidecar-dotnet@sha256:5c0957a726a0cafb4ffa9e757425128e3f702123d11c5e673ff8ee58c712aea2 +- # tag: quay.io/eclipse/che-sidecar-dotnet@sha256:5c0957a726a0cafb4ffa9e757425128e3f702123d11c5e673ff8ee58c712aea2 + - name: che-sidecar-flutter-@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + image: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + # tag: quay.io/eclipse/che-sidecar-flutter@sha256:ed53d52701cd5d7669f6a69fd428df6664a0adbccced10fec5823f63a79adff2 + - name: che-sidecar-go-@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + image: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + # tag: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 +- - name: che-sidecar-haskell-@sha256:8de87b3926b3ec9106c0fc0d1087787a07f935b64880323e78c3b30357af3554 +- image: quay.io/eclipse/che-sidecar-haskell@sha256:8de87b3926b3ec9106c0fc0d1087787a07f935b64880323e78c3b30357af3554 +- # tag: quay.io/eclipse/che-sidecar-haskell@sha256:8de87b3926b3ec9106c0fc0d1087787a07f935b64880323e78c3b30357af3554 +- - name: che-sidecar-haskell-@sha256:8e67a721a458fb07b8b8f975c5b313237b44e101be209905afddf4ddf66bebc0 +- image: quay.io/eclipse/che-sidecar-haskell@sha256:8e67a721a458fb07b8b8f975c5b313237b44e101be209905afddf4ddf66bebc0 +- # tag: quay.io/eclipse/che-sidecar-haskell@sha256:8e67a721a458fb07b8b8f975c5b313237b44e101be209905afddf4ddf66bebc0 +- - name: che-sidecar-haskell-@sha256:970d658ce856e6185db301c259017ef1e1588e3affea4f8fd6cf047f7f2a532b +- image: quay.io/eclipse/che-sidecar-haskell@sha256:970d658ce856e6185db301c259017ef1e1588e3affea4f8fd6cf047f7f2a532b +- # tag: quay.io/eclipse/che-sidecar-haskell@sha256:970d658ce856e6185db301c259017ef1e1588e3affea4f8fd6cf047f7f2a532b + - name: che-sidecar-java-@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + image: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + # tag: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d +- - name: che-sidecar-java-@sha256:54a5f721588455403d8c2a81d1fbc8fef2c6a32aead44f2fb3e24a8a1fddb9a2 +- image: quay.io/eclipse/che-sidecar-java@sha256:54a5f721588455403d8c2a81d1fbc8fef2c6a32aead44f2fb3e24a8a1fddb9a2 +- # tag: quay.io/eclipse/che-sidecar-java@sha256:54a5f721588455403d8c2a81d1fbc8fef2c6a32aead44f2fb3e24a8a1fddb9a2 + - name: che-sidecar-java-@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + image: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + # tag: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + - name: che-sidecar-java-@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + image: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + # tag: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a +- - name: che-sidecar-java-@sha256:d35c57b1194f94672fcce2e1a4ea62448c6273966eb0d7d1df776e3164ed8dbb +- image: quay.io/eclipse/che-sidecar-java@sha256:d35c57b1194f94672fcce2e1a4ea62448c6273966eb0d7d1df776e3164ed8dbb +- # tag: quay.io/eclipse/che-sidecar-java@sha256:d35c57b1194f94672fcce2e1a4ea62448c6273966eb0d7d1df776e3164ed8dbb + - name: che-sidecar-kubernetes-tooling-@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a +- - name: che-sidecar-kubernetes-tooling-@sha256:3f551189a697cac40870696f39dd92195021bbb3279e2f26902234ab65a88f10 +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:3f551189a697cac40870696f39dd92195021bbb3279e2f26902234ab65a88f10 +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:3f551189a697cac40870696f39dd92195021bbb3279e2f26902234ab65a88f10 +- - name: che-sidecar-kubernetes-tooling-@sha256:55e83d7f8cbf6a044ca68a4beb95e1192ae71a6d27f24cec7e300588f127480f +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:55e83d7f8cbf6a044ca68a4beb95e1192ae71a6d27f24cec7e300588f127480f +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:55e83d7f8cbf6a044ca68a4beb95e1192ae71a6d27f24cec7e300588f127480f +- - name: che-sidecar-kubernetes-tooling-@sha256:882fca5fc7aad06a663a9c2b499e4f2de1cc991b48b0390b380e4ede1cb47f1f +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:882fca5fc7aad06a663a9c2b499e4f2de1cc991b48b0390b380e4ede1cb47f1f +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:882fca5fc7aad06a663a9c2b499e4f2de1cc991b48b0390b380e4ede1cb47f1f + - name: che-sidecar-node-@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + image: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 + # tag: quay.io/eclipse/che-sidecar-node@sha256:0370b2c3d52d31c9fd52bff3edb84bd36bbcc2aff6224957d6dd94935843ee59 +@@ -1013,36 +809,18 @@ + - name: che-sidecar-openshift-connector-@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + # tag: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 +- - name: che-sidecar-openshift-connector-@sha256:8e4403ef1f7f74af3568abd60ccf1b959e2f43bef0001ba7a77ca5f8bc0d5a0e +- image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:8e4403ef1f7f74af3568abd60ccf1b959e2f43bef0001ba7a77ca5f8bc0d5a0e +- # tag: quay.io/eclipse/che-sidecar-openshift-connector@sha256:8e4403ef1f7f74af3568abd60ccf1b959e2f43bef0001ba7a77ca5f8bc0d5a0e +- - name: che-sidecar-openshift-connector-@sha256:d780f74b137e21c56b6815e6a4ab7907b69dfaefb377b0838649c88c947287aa +- image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:d780f74b137e21c56b6815e6a4ab7907b69dfaefb377b0838649c88c947287aa +- # tag: quay.io/eclipse/che-sidecar-openshift-connector@sha256:d780f74b137e21c56b6815e6a4ab7907b69dfaefb377b0838649c88c947287aa +- - name: che-sidecar-php-@sha256:4f1af8a266fbbab9542c794cc8a74575d24813bc7f48f5efbd451b850931592c +- image: quay.io/eclipse/che-sidecar-php@sha256:4f1af8a266fbbab9542c794cc8a74575d24813bc7f48f5efbd451b850931592c +- # tag: quay.io/eclipse/che-sidecar-php@sha256:4f1af8a266fbbab9542c794cc8a74575d24813bc7f48f5efbd451b850931592c +- - name: che-sidecar-php-@sha256:e4f1db4b5bc641485f42a5e0534c37894042c5302acfb1fefcfdf6d659aa7925 +- image: quay.io/eclipse/che-sidecar-php@sha256:e4f1db4b5bc641485f42a5e0534c37894042c5302acfb1fefcfdf6d659aa7925 +- # tag: quay.io/eclipse/che-sidecar-php@sha256:e4f1db4b5bc641485f42a5e0534c37894042c5302acfb1fefcfdf6d659aa7925 ++ - name: che-sidecar-php-@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 ++ image: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 ++ # tag: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 + - name: che-sidecar-protobuf-@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + image: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + # tag: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c +- - name: che-sidecar-python-@sha256:9d910486a81d92ebdeaab4c2fc71546bee23ff7e3a986fdb9df4e458819cb958 +- image: quay.io/eclipse/che-sidecar-python@sha256:9d910486a81d92ebdeaab4c2fc71546bee23ff7e3a986fdb9df4e458819cb958 +- # tag: quay.io/eclipse/che-sidecar-python@sha256:9d910486a81d92ebdeaab4c2fc71546bee23ff7e3a986fdb9df4e458819cb958 + - name: che-sidecar-python-@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + image: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + # tag: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + - name: che-sidecar-ruby-@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + image: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + # tag: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f +- - name: che-sidecar-scala-@sha256:8585ac9d41a1e4a754d89225ec7cc25836236fbb370220bb8050fa121f34d82a +- image: quay.io/eclipse/che-sidecar-scala@sha256:8585ac9d41a1e4a754d89225ec7cc25836236fbb370220bb8050fa121f34d82a +- # tag: quay.io/eclipse/che-sidecar-scala@sha256:8585ac9d41a1e4a754d89225ec7cc25836236fbb370220bb8050fa121f34d82a +- - name: che-sidecar-scala-@sha256:bdae1cc3e0886421f610adf38f4216a5f2184eccd731107f3bbd3c1f3444b69b +- image: quay.io/eclipse/che-sidecar-scala@sha256:bdae1cc3e0886421f610adf38f4216a5f2184eccd731107f3bbd3c1f3444b69b +- # tag: quay.io/eclipse/che-sidecar-scala@sha256:bdae1cc3e0886421f610adf38f4216a5f2184eccd731107f3bbd3c1f3444b69b + - name: che-sidecar-shellcheck-@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + image: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + # tag: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 +@@ -1052,165 +830,51 @@ + - name: che-sidecar-tekton-@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + image: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + # tag: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 +- - name: che-sidecar-vale-@sha256:654b3efbdb73b2242ce32d4a0d7da77ac561942c2a37906cff49029a9481b2cc +- image: quay.io/eclipse/che-sidecar-vale@sha256:654b3efbdb73b2242ce32d4a0d7da77ac561942c2a37906cff49029a9481b2cc +- # tag: quay.io/eclipse/che-sidecar-vale@sha256:654b3efbdb73b2242ce32d4a0d7da77ac561942c2a37906cff49029a9481b2cc +- - name: che-sidecar-vale-@sha256:a775aeac18fb50b3c0b517f3bcc63eaa497ded4250db0b868fabb1caf2c598b3 +- image: quay.io/eclipse/che-sidecar-vale@sha256:a775aeac18fb50b3c0b517f3bcc63eaa497ded4250db0b868fabb1caf2c598b3 +- # tag: quay.io/eclipse/che-sidecar-vale@sha256:a775aeac18fb50b3c0b517f3bcc63eaa497ded4250db0b868fabb1caf2c598b3 +- - name: che-theia-endpoint-runtime-binary-@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8 +- - name: che-theia-endpoint-runtime-binary-@sha256:14c3debebf62ec92dbf2b1536e4823ea66a89886b0b57a7518670af72727c252 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14c3debebf62ec92dbf2b1536e4823ea66a89886b0b57a7518670af72727c252 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14c3debebf62ec92dbf2b1536e4823ea66a89886b0b57a7518670af72727c252 +- - name: che-theia-endpoint-runtime-binary-@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1 +- - name: che-theia-endpoint-runtime-binary-@sha256:2e4a64b57603f3a4471cbdf4e9e4078bb0246811c2a1da940d1cf7370595745a +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2e4a64b57603f3a4471cbdf4e9e4078bb0246811c2a1da940d1cf7370595745a +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2e4a64b57603f3a4471cbdf4e9e4078bb0246811c2a1da940d1cf7370595745a +- - name: che-theia-endpoint-runtime-binary-@sha256:3cc5fe39bf8ad43f9be221f5a34978bbfdbd44c8cfc6ddef96d1a4c67dd3fa91 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:3cc5fe39bf8ad43f9be221f5a34978bbfdbd44c8cfc6ddef96d1a4c67dd3fa91 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:3cc5fe39bf8ad43f9be221f5a34978bbfdbd44c8cfc6ddef96d1a4c67dd3fa91 +- - name: che-theia-endpoint-runtime-binary-@sha256:41c4fbb43648aa0aab62f4ca9b4d9a1debce35c13cc64225a04f9df83c6a2c20 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:41c4fbb43648aa0aab62f4ca9b4d9a1debce35c13cc64225a04f9df83c6a2c20 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:41c4fbb43648aa0aab62f4ca9b4d9a1debce35c13cc64225a04f9df83c6a2c20 +- - name: che-theia-endpoint-runtime-binary-@sha256:4dd127ad0c95c710cf5b65f9dc0bb9a607dffbd0e8e0dc2e0b1fa02e53fe3b9c +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4dd127ad0c95c710cf5b65f9dc0bb9a607dffbd0e8e0dc2e0b1fa02e53fe3b9c +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4dd127ad0c95c710cf5b65f9dc0bb9a607dffbd0e8e0dc2e0b1fa02e53fe3b9c +- - name: che-theia-endpoint-runtime-binary-@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f +- - name: che-theia-endpoint-runtime-binary-@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb +- - name: che-theia-endpoint-runtime-binary-@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9 ++ - name: che-sidecar-vale-@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 ++ image: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 ++ # tag: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 + - name: che-theia-endpoint-runtime-binary-@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + - name: che-theia-endpoint-runtime-binary-@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d +- - name: che-theia-endpoint-runtime-binary-@sha256:a618b628130b2f8cac00ea45f7a30da497ca1905699a884d9ed6b623109f702f +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a618b628130b2f8cac00ea45f7a30da497ca1905699a884d9ed6b623109f702f +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a618b628130b2f8cac00ea45f7a30da497ca1905699a884d9ed6b623109f702f +- - name: che-theia-endpoint-runtime-binary-@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0 +- - name: che-theia-endpoint-runtime-binary-@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1 +- - name: che-theia-endpoint-runtime-binary-@sha256:de21ef29794811a87278d363cdedeab4f75af38a2850f69fa7988a53477276ea +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:de21ef29794811a87278d363cdedeab4f75af38a2850f69fa7988a53477276ea +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:de21ef29794811a87278d363cdedeab4f75af38a2850f69fa7988a53477276ea +- - name: che-theia-endpoint-runtime-binary-@sha256:e701676a75c1a34aaa141a6909fdd9caa42e2917427d84eb0d2ab82d0540774d +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e701676a75c1a34aaa141a6909fdd9caa42e2917427d84eb0d2ab82d0540774d +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e701676a75c1a34aaa141a6909fdd9caa42e2917427d84eb0d2ab82d0540774d +- - name: che-theia-endpoint-runtime-binary-@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6 +- - name: che-theia-endpoint-runtime-binary-@sha256:ec9d069625d64d9525d540cb3adce6f798374bbbbe0334c1fd71cefd2bd9fd58 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:ec9d069625d64d9525d540cb3adce6f798374bbbbe0334c1fd71cefd2bd9fd58 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:ec9d069625d64d9525d540cb3adce6f798374bbbbe0334c1fd71cefd2bd9fd58 +- - name: che-theia-endpoint-runtime-binary-@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6 +- - name: che-theia-@sha256:11b5fe33edd72df22f76d7933ba79029051f4c0c6adc6c1a91f2dfe4228455c9 +- image: quay.io/eclipse/che-theia@sha256:11b5fe33edd72df22f76d7933ba79029051f4c0c6adc6c1a91f2dfe4228455c9 +- # tag: quay.io/eclipse/che-theia@sha256:11b5fe33edd72df22f76d7933ba79029051f4c0c6adc6c1a91f2dfe4228455c9 +- - name: che-theia-@sha256:350aa6b1a2dcbfb25b9b02607257c5197494dcf2327fab0955681116a6883216 +- image: quay.io/eclipse/che-theia@sha256:350aa6b1a2dcbfb25b9b02607257c5197494dcf2327fab0955681116a6883216 +- # tag: quay.io/eclipse/che-theia@sha256:350aa6b1a2dcbfb25b9b02607257c5197494dcf2327fab0955681116a6883216 ++ - name: che-theia-endpoint-runtime-binary-@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b ++ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b ++ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b + - name: che-theia-@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + image: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + # tag: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 +- - name: che-theia-@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad +- image: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad +- # tag: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad +- - name: che-theia-@sha256:3d29098601f80aef9e9ca6ccc353b07bd3f2334345b9665160050484b68794ca +- image: quay.io/eclipse/che-theia@sha256:3d29098601f80aef9e9ca6ccc353b07bd3f2334345b9665160050484b68794ca +- # tag: quay.io/eclipse/che-theia@sha256:3d29098601f80aef9e9ca6ccc353b07bd3f2334345b9665160050484b68794ca +- - name: che-theia-@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117 +- image: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117 +- # tag: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117 +- - name: che-theia-@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24 +- image: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24 +- # tag: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24 + - name: che-theia-@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + image: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + # tag: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 +- - name: che-theia-@sha256:73639e49c4e369fefa21c73bac3933d17c68fb0912da9b377bec6e239f575bab +- image: quay.io/eclipse/che-theia@sha256:73639e49c4e369fefa21c73bac3933d17c68fb0912da9b377bec6e239f575bab +- # tag: quay.io/eclipse/che-theia@sha256:73639e49c4e369fefa21c73bac3933d17c68fb0912da9b377bec6e239f575bab +- - name: che-theia-@sha256:74d65d2d0accc3bb8c09ea2a0653c3b95c9e4602917252d6e1d5ef652102696f +- image: quay.io/eclipse/che-theia@sha256:74d65d2d0accc3bb8c09ea2a0653c3b95c9e4602917252d6e1d5ef652102696f +- # tag: quay.io/eclipse/che-theia@sha256:74d65d2d0accc3bb8c09ea2a0653c3b95c9e4602917252d6e1d5ef652102696f +- - name: che-theia-@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc +- image: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc +- # tag: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc +- - name: che-theia-@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0 +- image: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0 +- # tag: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0 +- - name: che-theia-@sha256:92a8bac94e446f1f933d1a92bc96dace9450c9f4efdef5539a429a37d14be904 +- image: quay.io/eclipse/che-theia@sha256:92a8bac94e446f1f933d1a92bc96dace9450c9f4efdef5539a429a37d14be904 +- # tag: quay.io/eclipse/che-theia@sha256:92a8bac94e446f1f933d1a92bc96dace9450c9f4efdef5539a429a37d14be904 +- - name: che-theia-@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822 +- image: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822 +- # tag: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822 +- - name: che-theia-@sha256:a56428ee28ceefca2a1cba51093f6015e0eee82659fec786f2e1fdc939fdb856 +- image: quay.io/eclipse/che-theia@sha256:a56428ee28ceefca2a1cba51093f6015e0eee82659fec786f2e1fdc939fdb856 +- # tag: quay.io/eclipse/che-theia@sha256:a56428ee28ceefca2a1cba51093f6015e0eee82659fec786f2e1fdc939fdb856 +- - name: che-theia-@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441 +- image: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441 +- # tag: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441 +- - name: che-theia-@sha256:acdf1ea0afe14143585cc81ae069b9db8ecc92b139f702ebc4a2f7fc6b67ea57 +- image: quay.io/eclipse/che-theia@sha256:acdf1ea0afe14143585cc81ae069b9db8ecc92b139f702ebc4a2f7fc6b67ea57 +- # tag: quay.io/eclipse/che-theia@sha256:acdf1ea0afe14143585cc81ae069b9db8ecc92b139f702ebc4a2f7fc6b67ea57 +- - name: che-theia-@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f +- image: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f +- # tag: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f +- - name: che-theia-@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944 +- image: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944 +- # tag: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944 +- - name: che-theia-@sha256:f52414ef293498e14316de52c3d64e8b8537ef2b3044afd9ac9cf19489da7451 +- image: quay.io/eclipse/che-theia@sha256:f52414ef293498e14316de52c3d64e8b8537ef2b3044afd9ac9cf19489da7451 +- # tag: quay.io/eclipse/che-theia@sha256:f52414ef293498e14316de52c3d64e8b8537ef2b3044afd9ac9cf19489da7451 ++ - name: che-theia-@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 ++ image: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 ++ # tag: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 + - 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: ubi8-minimal-8.2-349 +- image: registry.access.redhat.com/ubi8-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6 +- # tag: registry.access.redhat.com/ubi8-minimal:8.2-349 +- - name: ubi8-minimal-@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6 +- image: registry.access.redhat.com/ubi8-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6 +- # tag: registry.access.redhat.com/ubi8-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187aadb32e89fd83fa455ebaa6 ++ - name: mta-vscode-extension-@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 ++ image: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 ++ # tag: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 ++ - name: ubi8-minimal-8.3-201 ++ image: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee ++ # tag: registry.access.redhat.com/ubi8-minimal:8.3-201 ++ - name: ubi8-minimal-@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee ++ image: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee ++ # tag: registry.access.redhat.com/ubi8-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - name: ubi-minimal-@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + - name: code-server-3.6.2 + image: docker.io/codercom/code-server@sha256:ef07281004909bb2c228422df2e99a5ba5e450fce7546b8fa186852f23bf6751 + # tag: codercom/code-server:3.6.2 +- - name: coder-2.1523-vsc1.38.1-che +- image: docker.io/chinodesuuu/coder@sha256:6387eee627678d36fa1313017cf5620890f25559df8b24cb53e1d5f4ab6f4726 +- # tag: docker.io/chinodesuuu/coder:2.1523-vsc1.38.1-che +- - name: coder-2.1650-vsc1.39.2-che +- image: docker.io/chinodesuuu/coder@sha256:1af9c45c3f8c9836dba10c4a2c7b43915bc04fa4b9b9cc598d4bad5cf036817e +- # tag: docker.io/chinodesuuu/coder:2.1650-vsc1.39.2-che +- - name: coder-next +- image: docker.io/chinodesuuu/coder@sha256:77f51200f6f9ff62551794be48a3497e464c93f2420877253b98de3e041e0e9d +- # tag: docker.io/chinodesuuu/coder:next + - 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: rhamt-vscode-extension-java8 +- image: docker.io/windup3/rhamt-vscode-extension@sha256:a5cd9002cb992803a34a210e519582d341c74ee91248061103c08278c3db1f76 +- # tag: docker.io/windup3/rhamt-vscode-extension:java8 + - name: eclipse-broadway- + image: docker.io/wsskeleton/eclipse-broadway@sha256:57c82cd806a56f69aa8663f68405d0778b628a29a64fb16881b11ce9f484dda7 + # tag: docker.io/wsskeleton/eclipse-broadway +@@ -1223,81 +887,24 @@ + - 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.15.0 +- image: quay.io/eclipse/che-machine-exec@sha256:c0a3031dbec1d5827c830e0c8762d0e9051f36ab4fe4cc9c051dda0d6340bb6a +- # tag: quay.io/eclipse/che-machine-exec:7.15.0 +- - name: che-machine-exec-7.15.1 +- image: quay.io/eclipse/che-machine-exec@sha256:5d721f6e3b436a16ada88e19fd4bdc43c6ed9daab4ca168f4497f856146b383a +- # tag: quay.io/eclipse/che-machine-exec:7.15.1 +- - name: che-machine-exec-7.15.2 +- image: quay.io/eclipse/che-machine-exec@sha256:dd49bbb6289413e597d036061b3c1f13afe24a53bfb10ab5f1c944451c42ca2f +- # tag: quay.io/eclipse/che-machine-exec:7.15.2 +- - name: che-machine-exec-7.16.0 +- image: quay.io/eclipse/che-machine-exec@sha256:6c10be6622777471f0baacd0be488d9b57eb8ff9c5d3b107f9a0de9a5d3c19f8 +- # tag: quay.io/eclipse/che-machine-exec:7.16.0 +- - name: che-machine-exec-7.16.1 +- image: quay.io/eclipse/che-machine-exec@sha256:403ae5c0b37eec6a19dc6f9f6acd4a9d4400b8392a0cf41c794bb254b7c88583 +- # tag: quay.io/eclipse/che-machine-exec:7.16.1 +- - name: che-machine-exec-7.16.2 +- image: quay.io/eclipse/che-machine-exec@sha256:c37020496b61157f109260477d0aa6e27d9e7a33058a64c20c02626834707cc6 +- # tag: quay.io/eclipse/che-machine-exec:7.16.2 +- - name: che-machine-exec-7.17.0 +- image: quay.io/eclipse/che-machine-exec@sha256:ca9880151b11e4d2d2f60e538210ba79414dd23d0daf34737c716f4525c0e4a2 +- # tag: quay.io/eclipse/che-machine-exec:7.17.0 +- - name: che-machine-exec-7.17.1 +- image: quay.io/eclipse/che-machine-exec@sha256:749db2dc21ffc086a530c81730f240edfcd5af132de9898c7e61a63cc155e972 +- # tag: quay.io/eclipse/che-machine-exec:7.17.1 +- - name: che-machine-exec-7.17.2 +- image: quay.io/eclipse/che-machine-exec@sha256:e18ed8557e3c2947fff8a4fdc24919dfe6bc4bda221f9d83805dbbf65d38ba06 +- # tag: quay.io/eclipse/che-machine-exec:7.17.2 +- - name: che-machine-exec-7.18.0 +- image: quay.io/eclipse/che-machine-exec@sha256:ab4bea45c1f65ff152a0e4be3a720cf9b606017a2c9973c320b58d5e8eb3772f +- # tag: quay.io/eclipse/che-machine-exec:7.18.0 +- - name: che-machine-exec-7.18.1 +- image: quay.io/eclipse/che-machine-exec@sha256:8c45d538b1fc402e81f2553c8d103c972c13df03b300197910634a5b53da850b +- # tag: quay.io/eclipse/che-machine-exec:7.18.1 +- - name: che-machine-exec-7.18.2 +- image: quay.io/eclipse/che-machine-exec@sha256:1d434c46c7e5a5876556cc997e949eb1434d7bd4e8e57a93c847802695459e76 +- # tag: quay.io/eclipse/che-machine-exec:7.18.2 +- - name: che-machine-exec-7.19.0 +- image: quay.io/eclipse/che-machine-exec@sha256:06d8d0735033f5371613f9e1d8f6f54b298a2b93387702f5aecdf8818e393ada +- # tag: quay.io/eclipse/che-machine-exec:7.19.0 +- - name: che-machine-exec-7.19.1 +- image: quay.io/eclipse/che-machine-exec@sha256:bcb3f5458775291d0177688c77346a98d9ebc84a0f47cf93731134472e9fc5a5 +- # tag: quay.io/eclipse/che-machine-exec:7.19.1 +- - name: che-machine-exec-7.19.2 +- image: quay.io/eclipse/che-machine-exec@sha256:0a6487575d43255875f67fe5cc38904a7a630d1bcb4e36d3d94ba614b429ac1d +- # tag: quay.io/eclipse/che-machine-exec:7.19.2 +- - name: che-machine-exec-7.20.0 +- image: quay.io/eclipse/che-machine-exec@sha256:abd5405e08cf7f5b6f46bd8aa558cbc82e4c70f332c0062af9b2c1c07d06045e +- # tag: quay.io/eclipse/che-machine-exec:7.20.0 +- - name: che-machine-exec-7.20.1 +- image: quay.io/eclipse/che-machine-exec@sha256:ccdf212f7466b255013ed56b3c567988b4601864baabd7d61be834aa4d9fb38c +- # tag: quay.io/eclipse/che-machine-exec:7.20.1 +- - name: che-machine-exec-7.21.0 +- image: quay.io/eclipse/che-machine-exec@sha256:cd4c3f246eddae4d5932429ec55451b46b014b0da67801eed1b18af33eb0924d +- # tag: quay.io/eclipse/che-machine-exec:7.21.0 + - name: che-machine-exec-7.21.1 + image: quay.io/eclipse/che-machine-exec@sha256:82b38ab62bc0f26b7a38071ccbbf261c326a6c6942dde9c3439d4c7b6d12003e + # tag: quay.io/eclipse/che-machine-exec:7.21.1 + - name: che-machine-exec-7.21.2 + image: quay.io/eclipse/che-machine-exec@sha256:c9d50e2ade428b109e9c3e052d4f6375d60cf12f5c03837aca492c49dd001740 + # tag: quay.io/eclipse/che-machine-exec:7.21.2 ++ - name: che-machine-exec-7.22.0 ++ image: quay.io/eclipse/che-machine-exec@sha256:b12fbb06db50bf738cd49e0c0294ce04b50cae177cbac0f826e7938a83c07d09 ++ # tag: quay.io/eclipse/che-machine-exec:7.22.0 ++ - name: che-plugin-sidecar-haskell-b64039f ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:d2cb8859dcbc8f6a6732006a36d09061554a6e9baad2ad4b1f480c111853ca10 ++ # tag: quay.io/eclipse/che-plugin-sidecar:haskell-b64039f ++ - name: che-plugin-sidecar-scala-1be6877 ++ image: quay.io/eclipse/che-plugin-sidecar@sha256:2cb4f70edbcdab3b279dae53b6a753d63fee03bcae3d2a385e24f25e695c03df ++ # tag: quay.io/eclipse/che-plugin-sidecar:scala-1be6877 + - name: che-sidecar-bazel-3.2.0-e352e6b + image: quay.io/eclipse/che-sidecar-bazel@sha256:ffbee3b6e6a332bcff0127f38626e65bef2c3c2e087d4f1ff4871083b21babcb + # tag: quay.io/eclipse/che-sidecar-bazel:3.2.0-e352e6b +- - name: che-sidecar-camelk-0.0.14-59d258b +- image: quay.io/eclipse/che-sidecar-camelk@sha256:ddd941979443a9962a27f2a059d95550768cbab76848d606ce410536ff2bdaa0 +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.14-59d258b +- - name: che-sidecar-camelk-0.0.15-a578c4a +- image: quay.io/eclipse/che-sidecar-camelk@sha256:f830861c2a1d99ebb0579b4ee3761fbcd51cf42af54306cc6ae02d865866ffc3 +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.15-a578c4a +- - name: che-sidecar-camelk-0.0.16-7d7538f +- image: quay.io/eclipse/che-sidecar-camelk@sha256:7e1e9b422cfd7bef16858c404eaad0ab1b288f273f89f056cf1b086744435954 +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.16-7d7538f +- - name: che-sidecar-camelk-0.0.17-3d78c07 +- image: quay.io/eclipse/che-sidecar-camelk@sha256:602674d78a88c0d19a2103c2258b3c9e03aa5759e9a9a8c7dd9b11af96f7e61b +- # tag: quay.io/eclipse/che-sidecar-camelk:0.0.17-3d78c07 + - name: che-sidecar-camelk-0.0.18-39f19dd + image: quay.io/eclipse/che-sidecar-camelk@sha256:edfab862d59dcd150bb5f6ed45aeef0ee9119b1dff2cecc271f90e152d5b36a2 + # tag: quay.io/eclipse/che-sidecar-camelk:0.0.18-39f19dd +@@ -1307,18 +914,9 @@ + - name: che-sidecar-dart-2.10-a2959e6 + image: quay.io/eclipse/che-sidecar-dart@sha256:a717ad5cf933744f746e7426f6e1c46763e8f54e3e3c6f6463b711f4d7fe4cc3 + # tag: quay.io/eclipse/che-sidecar-dart:2.10-a2959e6 +- - name: che-sidecar-dependency-analytics-0.0.12-d478351 +- image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:392eb12ffac4c1369faec782221fe1758fd826c77aba8ce88ad3ecbf59154ed7 +- # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.12-d478351 + - name: che-sidecar-dependency-analytics-0.0.13-2f3b058 + image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:174ee55710450b6d8af54e636af65fd01b6c50d3a4d0ef52527b5f1d030be6a0 + # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.13-2f3b058 +- - name: che-sidecar-dependency-analytics-0.0.13-a38cb0c +- image: quay.io/eclipse/che-sidecar-dependency-analytics@sha256:0708b3c63d2065ef96667cacec9a46570f00fcb0f107df3e902ac444e68e1170 +- # tag: quay.io/eclipse/che-sidecar-dependency-analytics:0.0.13-a38cb0c +- - name: che-sidecar-dotnet-2.2.105-2fd6e78 +- image: quay.io/eclipse/che-sidecar-dotnet@sha256:5c0957a726a0cafb4ffa9e757425128e3f702123d11c5e673ff8ee58c712aea2 +- # tag: quay.io/eclipse/che-sidecar-dotnet:2.2.105-2fd6e78 + - name: che-sidecar-dotnet-3.1.301-4bdcdc2 + image: quay.io/eclipse/che-sidecar-dotnet@sha256:537562297cb439fda3457ff61540975b1f88c4c493a3847bd9c4661570c0f19d + # tag: quay.io/eclipse/che-sidecar-dotnet:3.1.301-4bdcdc2 +@@ -1328,39 +926,15 @@ + - name: che-sidecar-go-1.14.4-3edc927 + image: quay.io/eclipse/che-sidecar-go@sha256:cab4cf5e4031fa03fb1c39ccba6dd2934e04d55ac01f877924daf5db3de68109 + # tag: quay.io/eclipse/che-sidecar-go:1.14.4-3edc927 +- - name: che-sidecar-haskell-8.10.1-eccd503 +- image: quay.io/eclipse/che-sidecar-haskell@sha256:970d658ce856e6185db301c259017ef1e1588e3affea4f8fd6cf047f7f2a532b +- # tag: quay.io/eclipse/che-sidecar-haskell:8.10.1-eccd503 +- - name: che-sidecar-haskell-8.10.2-a79c68a +- image: quay.io/eclipse/che-sidecar-haskell@sha256:8e67a721a458fb07b8b8f975c5b313237b44e101be209905afddf4ddf66bebc0 +- # tag: quay.io/eclipse/che-sidecar-haskell:8.10.2-a79c68a +- - name: che-sidecar-haskell-8.8.4-14f1de9 +- image: quay.io/eclipse/che-sidecar-haskell@sha256:8de87b3926b3ec9106c0fc0d1087787a07f935b64880323e78c3b30357af3554 +- # tag: quay.io/eclipse/che-sidecar-haskell:8.8.4-14f1de9 + - name: che-sidecar-java-11-7bd8c8c + image: quay.io/eclipse/che-sidecar-java@sha256:997cfa109e8e85e2038cf765480a095dc9ee1d68ebfab50888cedffc5be393a3 + # tag: quay.io/eclipse/che-sidecar-java:11-7bd8c8c + - name: che-sidecar-java-11-86274e3 + image: quay.io/eclipse/che-sidecar-java@sha256:b6b2623635b235152a9f37c6536640f76bf25a7e1c72695ba9277981d6bbcf0a + # tag: quay.io/eclipse/che-sidecar-java:11-86274e3 +- - name: che-sidecar-java-11-a06cbb1 +- image: quay.io/eclipse/che-sidecar-java@sha256:d35c57b1194f94672fcce2e1a4ea62448c6273966eb0d7d1df776e3164ed8dbb +- # tag: quay.io/eclipse/che-sidecar-java:11-a06cbb1 +- - name: che-sidecar-java-11-f76ca45 +- image: quay.io/eclipse/che-sidecar-java@sha256:54a5f721588455403d8c2a81d1fbc8fef2c6a32aead44f2fb3e24a8a1fddb9a2 +- # tag: quay.io/eclipse/che-sidecar-java:11-f76ca45 + - name: che-sidecar-java-8-0cfbacb + image: quay.io/eclipse/che-sidecar-java@sha256:4fb35b4e112a05c82353ad0e1f5eb35d1ba204be475b72f3c753b0e26c9e668d + # tag: quay.io/eclipse/che-sidecar-java:8-0cfbacb +- - name: che-sidecar-kubernetes-tooling-1.0.9-82c704e +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:55e83d7f8cbf6a044ca68a4beb95e1192ae71a6d27f24cec7e300588f127480f +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.0.9-82c704e +- - name: che-sidecar-kubernetes-tooling-1.1.0-31a8464 +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:3f551189a697cac40870696f39dd92195021bbb3279e2f26902234ab65a88f10 +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.1.0-31a8464 +- - name: che-sidecar-kubernetes-tooling-1.2.0-3ea57d5 +- image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:882fca5fc7aad06a663a9c2b499e4f2de1cc991b48b0390b380e4ede1cb47f1f +- # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.2.0-3ea57d5 + - name: che-sidecar-kubernetes-tooling-1.2.1-6144144 + image: quay.io/eclipse/che-sidecar-kubernetes-tooling@sha256:23af341d9f23c819678b20a55b09ec4310b5940a7606da8016edd48e1fa5932a + # tag: quay.io/eclipse/che-sidecar-kubernetes-tooling:1.2.1-6144144 +@@ -1373,39 +947,21 @@ + - name: che-sidecar-node-12-da9c36b + image: quay.io/eclipse/che-sidecar-node@sha256:7b29cf2184bf93cba4c57447b41f3b3e3d7f3418a782c467656b0e460716d5c9 + # tag: quay.io/eclipse/che-sidecar-node:12-da9c36b +- - name: che-sidecar-openshift-connector-0.1.2-2601509 +- image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:8e4403ef1f7f74af3568abd60ccf1b959e2f43bef0001ba7a77ca5f8bc0d5a0e +- # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.1.2-2601509 +- - name: che-sidecar-openshift-connector-0.1.5-620dbc7 +- image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:d780f74b137e21c56b6815e6a4ab7907b69dfaefb377b0838649c88c947287aa +- # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.1.5-620dbc7 + - name: che-sidecar-openshift-connector-0.2.0-6d2214b + image: quay.io/eclipse/che-sidecar-openshift-connector@sha256:3d36db97facd387fa7f5ba01f189a43c314c97d3bd589d61747eaa14d966c677 + # tag: quay.io/eclipse/che-sidecar-openshift-connector:0.2.0-6d2214b +- - name: che-sidecar-php-7-5c5ecc5 +- image: quay.io/eclipse/che-sidecar-php@sha256:e4f1db4b5bc641485f42a5e0534c37894042c5302acfb1fefcfdf6d659aa7925 +- # tag: quay.io/eclipse/che-sidecar-php:7-5c5ecc5 +- - name: che-sidecar-php-7-9e9715e +- image: quay.io/eclipse/che-sidecar-php@sha256:4f1af8a266fbbab9542c794cc8a74575d24813bc7f48f5efbd451b850931592c +- # tag: quay.io/eclipse/che-sidecar-php:7-9e9715e ++ - name: che-sidecar-php-7-b95f23f ++ image: quay.io/eclipse/che-sidecar-php@sha256:c2e30295eea627c0bf41bf0a4e0fc51408e2e470fe3db9537c6556096db94024 ++ # tag: quay.io/eclipse/che-sidecar-php:7-b95f23f + - name: che-sidecar-protobuf-0.4.2-a79a2ff + image: quay.io/eclipse/che-sidecar-protobuf@sha256:893078d5e932722908bc9f0af9216aadca573d2809c8840049447ae884026a4c + # tag: quay.io/eclipse/che-sidecar-protobuf:0.4.2-a79a2ff +- - name: che-sidecar-python-3.7.3-8f39348 +- image: quay.io/eclipse/che-sidecar-python@sha256:9d910486a81d92ebdeaab4c2fc71546bee23ff7e3a986fdb9df4e458819cb958 +- # tag: quay.io/eclipse/che-sidecar-python:3.7.3-8f39348 + - name: che-sidecar-python-3.8.6-5913fc2 + image: quay.io/eclipse/che-sidecar-python@sha256:c77d3a933e3185701d7ab82d34e353af6408c0d5ab66ea9624dad80260ca3e21 + # tag: quay.io/eclipse/che-sidecar-python:3.8.6-5913fc2 + - name: che-sidecar-ruby-2.6-76f1125 + image: quay.io/eclipse/che-sidecar-ruby@sha256:83622ccd0ef18d6415910b62346cc96a6ed6db75a994275b1041158743d4817f + # tag: quay.io/eclipse/che-sidecar-ruby:2.6-76f1125 +- - name: che-sidecar-scala-0.9.0-6a833ec +- image: quay.io/eclipse/che-sidecar-scala@sha256:bdae1cc3e0886421f610adf38f4216a5f2184eccd731107f3bbd3c1f3444b69b +- # tag: quay.io/eclipse/che-sidecar-scala:0.9.0-6a833ec +- - name: che-sidecar-scala-0.9.0-bb84244 +- image: quay.io/eclipse/che-sidecar-scala@sha256:8585ac9d41a1e4a754d89225ec7cc25836236fbb370220bb8050fa121f34d82a +- # tag: quay.io/eclipse/che-sidecar-scala:0.9.0-bb84244 + - name: che-sidecar-shellcheck-v0.7.1-b16c5b5 + image: quay.io/eclipse/che-sidecar-shellcheck@sha256:3f79acfab099ebcc346e567a07398db2b69af2f881f0c4b130b3e77cf68b42d9 + # tag: quay.io/eclipse/che-sidecar-shellcheck:v0.7.1-b16c5b5 +@@ -1415,186 +971,84 @@ + - name: che-sidecar-tekton-0.2.0-7a8b4ad + image: quay.io/eclipse/che-sidecar-tekton@sha256:d561b26174ae50b4f407ae4abca98d5b0e4410c9637944238591ad134d648688 + # tag: quay.io/eclipse/che-sidecar-tekton:0.2.0-7a8b4ad +- - name: che-sidecar-vale-0.9.1-04f254e +- image: quay.io/eclipse/che-sidecar-vale@sha256:a775aeac18fb50b3c0b517f3bcc63eaa497ded4250db0b868fabb1caf2c598b3 +- # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-04f254e +- - name: che-sidecar-vale-0.9.1-ad53ccf +- image: quay.io/eclipse/che-sidecar-vale@sha256:654b3efbdb73b2242ce32d4a0d7da77ac561942c2a37906cff49029a9481b2cc +- # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-ad53ccf +- - name: che-theia-endpoint-runtime-binary-7.15.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:ec9d069625d64d9525d540cb3adce6f798374bbbbe0334c1fd71cefd2bd9fd58 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.15.0 +- - name: che-theia-endpoint-runtime-binary-7.15.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:c6a099e808328cb8fe3dc707370017d724e39524b5ec74076a0fffdd5af149b0 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.15.1 +- - name: che-theia-endpoint-runtime-binary-7.15.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e8d491ff71c46e9e631212f6580d9a04d4b4fad4199f1da36bb64f9a40d2bdf6 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.15.2 +- - name: che-theia-endpoint-runtime-binary-7.16.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:506fe604d3981bdc569ee04c852f6fc09f6e239ad62e5c2113cf11f4c286229f +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.16.0 +- - name: che-theia-endpoint-runtime-binary-7.16.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14c3debebf62ec92dbf2b1536e4823ea66a89886b0b57a7518670af72727c252 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.16.1 +- - name: che-theia-endpoint-runtime-binary-7.16.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:41c4fbb43648aa0aab62f4ca9b4d9a1debce35c13cc64225a04f9df83c6a2c20 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.16.2 +- - name: che-theia-endpoint-runtime-binary-7.17.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2c3330b445cfe73649ac09b7875d7dc7306d4d46dbc9d28db3c9f01be14722d1 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.0 +- - name: che-theia-endpoint-runtime-binary-7.17.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:14999edd1961d301d7dbc94efaae3a73686f44a70c7de7d85227ecadcc12fbd8 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.1 +- - name: che-theia-endpoint-runtime-binary-7.17.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:5b2051fb602475be8dc61ecae731176edba208732ea40fe7de9690678bf6ecfb +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.17.2 +- - name: che-theia-endpoint-runtime-binary-7.18.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:61c2eedc74c4d73a8db059b968d0d6bd69d85bff664da0543e955d8cb6677fd9 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.0 +- - name: che-theia-endpoint-runtime-binary-7.18.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f7e1f3fe1366f7d2cfb260588649d5144594100ef4fe1ae886f0db33dabcc9d6 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.1 +- - name: che-theia-endpoint-runtime-binary-7.18.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:db63e15c2afad3751b97af93fc5002a9c39e2a9a1f7aa34798fc2980b6e76cf1 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.18.2 +- - name: che-theia-endpoint-runtime-binary-7.19.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:2e4a64b57603f3a4471cbdf4e9e4078bb0246811c2a1da940d1cf7370595745a +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.19.0 +- - name: che-theia-endpoint-runtime-binary-7.19.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:4dd127ad0c95c710cf5b65f9dc0bb9a607dffbd0e8e0dc2e0b1fa02e53fe3b9c +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.19.1 +- - name: che-theia-endpoint-runtime-binary-7.19.2 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:e701676a75c1a34aaa141a6909fdd9caa42e2917427d84eb0d2ab82d0540774d +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.19.2 +- - name: che-theia-endpoint-runtime-binary-7.20.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a618b628130b2f8cac00ea45f7a30da497ca1905699a884d9ed6b623109f702f +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.20.0 +- - name: che-theia-endpoint-runtime-binary-7.20.1 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:3cc5fe39bf8ad43f9be221f5a34978bbfdbd44c8cfc6ddef96d1a4c67dd3fa91 +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.20.1 +- - name: che-theia-endpoint-runtime-binary-7.21.0 +- image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:de21ef29794811a87278d363cdedeab4f75af38a2850f69fa7988a53477276ea +- # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.0 ++ - name: che-sidecar-vale-0.9.1-a8fe390 ++ image: quay.io/eclipse/che-sidecar-vale@sha256:be6a1109448cf3506be75f3cd1d3b2973f4aaf712d3bfbfa831b7db5929ff896 ++ # tag: quay.io/eclipse/che-sidecar-vale:0.9.1-a8fe390 + - name: che-theia-endpoint-runtime-binary-7.21.1 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:7be6881d414bcb3ada7cf534d5fc4297725f140a19394fe5351d5963c0fe1c3e + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.1 + - name: che-theia-endpoint-runtime-binary-7.21.2 + image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:a0223f3c79645adcfe94d3601936f5c4fc877575b88a88e7b3fb2e521e69f49d + # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.21.2 +- - name: che-theia-7.15.0 +- image: quay.io/eclipse/che-theia@sha256:e80f3127a2424d5ca71f0c87f6c232304288ce63a660dab0537ee75bac1b9944 +- # tag: quay.io/eclipse/che-theia:7.15.0 +- - name: che-theia-7.15.1 +- image: quay.io/eclipse/che-theia@sha256:74d65d2d0accc3bb8c09ea2a0653c3b95c9e4602917252d6e1d5ef652102696f +- # tag: quay.io/eclipse/che-theia:7.15.1 +- - name: che-theia-7.15.2 +- image: quay.io/eclipse/che-theia@sha256:f52414ef293498e14316de52c3d64e8b8537ef2b3044afd9ac9cf19489da7451 +- # tag: quay.io/eclipse/che-theia:7.15.2 +- - name: che-theia-7.16.0 +- image: quay.io/eclipse/che-theia@sha256:920432d9cf33ec258531372cc4ac901e401a6620c87666e9da66628caea455b0 +- # tag: quay.io/eclipse/che-theia:7.16.0 +- - name: che-theia-7.16.1 +- image: quay.io/eclipse/che-theia@sha256:3bd166b798880eac658aade30daa92d79ac98261f268a019f33a112fa8717fad +- # tag: quay.io/eclipse/che-theia:7.16.1 +- - name: che-theia-7.16.2 +- image: quay.io/eclipse/che-theia@sha256:73639e49c4e369fefa21c73bac3933d17c68fb0912da9b377bec6e239f575bab +- # tag: quay.io/eclipse/che-theia:7.16.2 +- - name: che-theia-7.17.0 +- image: quay.io/eclipse/che-theia@sha256:c80cad6dcc1b2f3697e539ffeff24c8dbb6c6174c8302367a0ca9ba0e68b3c7f +- # tag: quay.io/eclipse/che-theia:7.17.0 +- - name: che-theia-7.17.1 +- image: quay.io/eclipse/che-theia@sha256:a94b9cc564622d2cd5d2c2332455c084ba4913ee38472afed210241ba14d3441 +- # tag: quay.io/eclipse/che-theia:7.17.1 +- - name: che-theia-7.17.2 +- image: quay.io/eclipse/che-theia@sha256:a3eb3ea0d625ac11e64f96d904b359f52599f11e3b03fc476c3f3efae043d822 +- # tag: quay.io/eclipse/che-theia:7.17.2 +- - name: che-theia-7.18.0 +- image: quay.io/eclipse/che-theia@sha256:824c1d630a139fcae5edf8fc21a1aad883d8eddb50e7a7e3aabea87899e30ffc +- # tag: quay.io/eclipse/che-theia:7.18.0 +- - name: che-theia-7.18.1 +- image: quay.io/eclipse/che-theia@sha256:50651f593d2944ce133c1d53e6dd5de979690d686786d7bc71b1d5e32dd9bd24 +- # tag: quay.io/eclipse/che-theia:7.18.1 +- - name: che-theia-7.18.2 +- image: quay.io/eclipse/che-theia@sha256:4eb52a8e21a8463098d4a769bc57a196a7553d9013cc125cf0bf255b626ef117 +- # tag: quay.io/eclipse/che-theia:7.18.2 +- - name: che-theia-7.19.0 +- image: quay.io/eclipse/che-theia@sha256:acdf1ea0afe14143585cc81ae069b9db8ecc92b139f702ebc4a2f7fc6b67ea57 +- # tag: quay.io/eclipse/che-theia:7.19.0 +- - name: che-theia-7.19.1 +- image: quay.io/eclipse/che-theia@sha256:3d29098601f80aef9e9ca6ccc353b07bd3f2334345b9665160050484b68794ca +- # tag: quay.io/eclipse/che-theia:7.19.1 +- - name: che-theia-7.19.2 +- image: quay.io/eclipse/che-theia@sha256:11b5fe33edd72df22f76d7933ba79029051f4c0c6adc6c1a91f2dfe4228455c9 +- # tag: quay.io/eclipse/che-theia:7.19.2 +- - name: che-theia-7.20.0 +- image: quay.io/eclipse/che-theia@sha256:92a8bac94e446f1f933d1a92bc96dace9450c9f4efdef5539a429a37d14be904 +- # tag: quay.io/eclipse/che-theia:7.20.0 +- - name: che-theia-7.20.1 +- image: quay.io/eclipse/che-theia@sha256:a56428ee28ceefca2a1cba51093f6015e0eee82659fec786f2e1fdc939fdb856 +- # tag: quay.io/eclipse/che-theia:7.20.1 +- - name: che-theia-7.21.0 +- image: quay.io/eclipse/che-theia@sha256:350aa6b1a2dcbfb25b9b02607257c5197494dcf2327fab0955681116a6883216 +- # tag: quay.io/eclipse/che-theia:7.21.0 ++ - name: che-theia-endpoint-runtime-binary-7.22.0 ++ image: quay.io/eclipse/che-theia-endpoint-runtime-binary@sha256:f75b9074750eac8829467145c36b87c1384c53309fefafde9b179bf90e10fc4b ++ # tag: quay.io/eclipse/che-theia-endpoint-runtime-binary:7.22.0 + - name: che-theia-7.21.1 + image: quay.io/eclipse/che-theia@sha256:387d169fc42c0ea1ad19dfb5a5340340f285b178437620e05ca2aa7cfc9f6105 + # tag: quay.io/eclipse/che-theia:7.21.1 + - name: che-theia-7.21.2 + image: quay.io/eclipse/che-theia@sha256:560fd1ae732b42c92682632c56c2c0120ca4b2d3c456107cbd24c543315d42b9 + # tag: quay.io/eclipse/che-theia:7.21.2 +- - name: mongodb-36-centos7- +- image: docker.io/centos/mongodb-36-centos7@sha256:a915db7beca87198fcd7860086989fe8a327a1a4f6508025b64ab28fcc7423b2 +- # tag: docker.io/centos/mongodb-36-centos7 +- - name: mysql-57-centos7- +- image: docker.io/centos/mysql-57-centos7@sha256:e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764 +- # tag: docker.io/centos/mysql-57-centos7 +- - name: che-cpp-rhel7-7.21.2 +- image: quay.io/eclipse/che-cpp-rhel7@sha256:4b097d9f23977675e251ef2e6035d6697e6d30e996486e605dc808c6447cc169 +- # tag: quay.io/eclipse/che-cpp-rhel7:7.21.2 +- - name: che-dotnet-2.2-7.21.2 +- image: quay.io/eclipse/che-dotnet-2.2@sha256:87cb6d5d941602f70913d5a2a77c22f01602004d34ba6f38667c00528f138522 +- # tag: quay.io/eclipse/che-dotnet-2.2:7.21.2 +- - name: che-dotnet-3.1-7.21.2 +- image: quay.io/eclipse/che-dotnet-3.1@sha256:a32bde3f550f69aee2e396b0ec50a2c6f146b93a91ac3d8dbb76439c050aa6cb +- # tag: quay.io/eclipse/che-dotnet-3.1:7.21.2 +- - name: che-golang-1.14-7.21.2 +- image: quay.io/eclipse/che-golang-1.14@sha256:36ad7da570e8e91bc04f12dc227b57836846080214a63c732eec829eeb903999 +- # tag: quay.io/eclipse/che-golang-1.14:7.21.2 +- - name: che-java11-gradle-7.21.2 +- image: quay.io/eclipse/che-java11-gradle@sha256:99dd2cb3695bd1ac3e00cf62d4fd3e85ed33b034028e4f9c11390d866e1340c8 +- # tag: quay.io/eclipse/che-java11-gradle:7.21.2 +- - name: che-java11-maven-7.21.2 +- image: quay.io/eclipse/che-java11-maven@sha256:0e264808a1a1d5baf4fd83586ac6de2563ef0f419f263be1ffe6c3d9249d6da2 +- # tag: quay.io/eclipse/che-java11-maven:7.21.2 +- - name: che-java8-maven-7.21.2 +- image: quay.io/eclipse/che-java8-maven@sha256:09a3078ca8cebf5ab51c8561818cd400e843cb5c885c5809ca870e21eab36156 +- # tag: quay.io/eclipse/che-java8-maven:7.21.2 +- - name: che-nodejs10-community-7.21.2 +- image: quay.io/eclipse/che-nodejs10-community@sha256:b5e99db4c4b4fdcabd192a6ba7a460bf6553083c2d2e00861b3d14281e82d499 +- # tag: quay.io/eclipse/che-nodejs10-community:7.21.2 +- - name: che-nodejs10-ubi-7.21.2 +- image: quay.io/eclipse/che-nodejs10-ubi@sha256:1a1cd469fb7dfb0565b71985713faf2c856e77e28796b557cdcb70df0e735f6b +- # tag: quay.io/eclipse/che-nodejs10-ubi:7.21.2 +- - name: che-nodejs12-community-7.21.2 +- image: quay.io/eclipse/che-nodejs12-community@sha256:39c149ddd067547e5987372a167e787891f1d63dd2f22b9ed329a041b1bde4e7 +- # tag: quay.io/eclipse/che-nodejs12-community:7.21.2 +- - name: che-nodejs8-centos-7.21.2 +- image: quay.io/eclipse/che-nodejs8-centos@sha256:c20dc500027bd62c9212901bec97418e7ecddbfc098b9d6f843bb22376029c13 +- # tag: quay.io/eclipse/che-nodejs8-centos:7.21.2 +- - name: che-php-7-7.21.2 +- image: quay.io/eclipse/che-php-7@sha256:21bf88bb4850ff483330cbc6c965e08f13cae4573510d03aade8f3e8fd28c10c +- # tag: quay.io/eclipse/che-php-7:7.21.2 +- - name: che-python-3.7-7.21.2 +- image: quay.io/eclipse/che-python-3.7@sha256:6db15f661b7b9cafde1de9d812bb7fe907eae2befc783b6e2933c262e7a4fa91 +- # tag: quay.io/eclipse/che-python-3.7:7.21.2 +- - name: che-python-3.8-7.21.2 +- image: quay.io/eclipse/che-python-3.8@sha256:1b3fd6fa48a66b6e69dea4eab677b6266d831351f0b51dc239a61f526e6a6d36 +- # tag: quay.io/eclipse/che-python-3.8:7.21.2 +- - name: che-quarkus-7.21.2 +- image: quay.io/eclipse/che-quarkus@sha256:9588219c47a12016f4215ce526d1b99b83d08c4ad2de8f9ec6bef0b761b3b0c8 +- # tag: quay.io/eclipse/che-quarkus:7.21.2 +- - name: che-rust-1.39-7.21.2 +- image: quay.io/eclipse/che-rust-1.39@sha256:bff3e0456df470babc0e3d7fe5e6c355bdaa02f73157ae3af92cab80f5618df2 +- # tag: quay.io/eclipse/che-rust-1.39:7.21.2 ++ - name: che-theia-7.22.0 ++ image: quay.io/eclipse/che-theia@sha256:89b430cb712445e18ee494ae7a064a970a4086c97e4803eacddfdd40ecee7299 ++ # tag: quay.io/eclipse/che-theia:7.22.0 ++ - name: mta-vscode-extension-latest ++ image: quay.io/windupeng/mta-vscode-extension@sha256:393e95204ed641c30e3026beb05503b4b28c795e47254b5c92eb9cef967c00d5 ++ # tag: quay.io/windupeng/mta-vscode-extension:latest ++ - 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.22.0 ++ image: quay.io/eclipse/che-cpp-rhel7@sha256:d693010c70ba5ed018386856aed7e9f9e4bfdc20e9c845173705f9d01388f101 ++ # tag: quay.io/eclipse/che-cpp-rhel7:7.22.0 ++ - name: che-dotnet-2.2-7.22.0 ++ image: quay.io/eclipse/che-dotnet-2.2@sha256:a70b55a25feddbe69a1766facba662c0c7d1b363585465816b53ca352325c84e ++ # tag: quay.io/eclipse/che-dotnet-2.2:7.22.0 ++ - name: che-dotnet-3.1-7.22.0 ++ image: quay.io/eclipse/che-dotnet-3.1@sha256:68fc2783ba487053eb2b8768faf7ce05b2bf49595c8503e9ddb9b3d3a941909d ++ # tag: quay.io/eclipse/che-dotnet-3.1:7.22.0 ++ - name: che-golang-1.14-7.22.0 ++ image: quay.io/eclipse/che-golang-1.14@sha256:0b2a880ebf896c3977797d4ce0ccb531ccb582f1d0eb9c03d68f3f81592e40e3 ++ # tag: quay.io/eclipse/che-golang-1.14:7.22.0 ++ - name: che-java11-gradle-7.22.0 ++ image: quay.io/eclipse/che-java11-gradle@sha256:58ea84ae1a43fdbb3bb2be6f25e72b9121565ac7bf48a6f558043c17a9fb7e72 ++ # tag: quay.io/eclipse/che-java11-gradle:7.22.0 ++ - name: che-java11-maven-7.22.0 ++ image: quay.io/eclipse/che-java11-maven@sha256:70b6cf18ac42d2c869f6b96a4c313f1596cfdae63001f9d615fe8da9097b5d7d ++ # tag: quay.io/eclipse/che-java11-maven:7.22.0 ++ - name: che-java8-maven-7.22.0 ++ image: quay.io/eclipse/che-java8-maven@sha256:8ae803f3cb72f2b291e4f75e73ddf987aec2e6f0c8ba204105c3affbca62e5a8 ++ # tag: quay.io/eclipse/che-java8-maven:7.22.0 ++ - name: che-nodejs10-community-7.22.0 ++ image: quay.io/eclipse/che-nodejs10-community@sha256:5ef8b128f624000c6a75b6a8279edd1f624a7315d7464bd83a899a43ee53b46b ++ # tag: quay.io/eclipse/che-nodejs10-community:7.22.0 ++ - name: che-nodejs10-ubi-7.22.0 ++ image: quay.io/eclipse/che-nodejs10-ubi@sha256:9ea587b9699813ca48cbd212951b68db6e658a5bb94f2c8a6f575f2b9ca5c4c5 ++ # tag: quay.io/eclipse/che-nodejs10-ubi:7.22.0 ++ - name: che-nodejs12-community-7.22.0 ++ image: quay.io/eclipse/che-nodejs12-community@sha256:47eedd3860f4c722c97e1a818394b0501bca5e6d5a081491ec9d78a6483f6433 ++ # tag: quay.io/eclipse/che-nodejs12-community:7.22.0 ++ - name: che-nodejs8-centos-7.22.0 ++ image: quay.io/eclipse/che-nodejs8-centos@sha256:d9ddcbaaa838ee9b2f48a9667222dfa624d9f413e161851b2b9d3d2ffdb91b11 ++ # tag: quay.io/eclipse/che-nodejs8-centos:7.22.0 ++ - name: che-php-7-7.22.0 ++ image: quay.io/eclipse/che-php-7@sha256:c7202e28658e3e617d8a3c66f6f53eb96b141e4c35120be8b2abb3d28d1571cb ++ # tag: quay.io/eclipse/che-php-7:7.22.0 ++ - name: che-python-3.7-7.22.0 ++ image: quay.io/eclipse/che-python-3.7@sha256:6993465992b6bc20c739141bab4d5125884a359f560cef12dd6bdfecf2bca4f3 ++ # tag: quay.io/eclipse/che-python-3.7:7.22.0 ++ - name: che-python-3.8-7.22.0 ++ image: quay.io/eclipse/che-python-3.8@sha256:5496eaf67af64c0efda94a89a7103f5f0134b6a99ff9eccdc514767684b2d3da ++ # tag: quay.io/eclipse/che-python-3.8:7.22.0 ++ - name: che-quarkus-7.22.0 ++ image: quay.io/eclipse/che-quarkus@sha256:163cb384cc87b3042b0802595e9ad26d0952cfc39b6079c5ae97a1798d23c718 ++ # tag: quay.io/eclipse/che-quarkus:7.22.0 ++ - name: che-rust-1.39-7.22.0 ++ image: quay.io/eclipse/che-rust-1.39@sha256:243d840ea4dc1bcd444de73842966659e9829bb707bdeb2d405056f87e3af723 ++ # tag: quay.io/eclipse/che-rust-1.39:7.22.0 + - name: ubi-minimal- + image: registry.access.redhat.com/ubi8/ubi-minimal@sha256:c6473956faa4985a41776701993718eb27ab933078bf579768e8ca7d967459ee + # tag: registry.access.redhat.com/ubi8/ubi-minimal 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 009b5f078..a11f9b1fd 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.21.2 +- currentCSV: eclipse-che-preview-openshift.v7.22.0 name: stable defaultChannel: stable packageName: eclipse-che-preview-openshift