Skip to content

Commit

Permalink
Remove platforms that don't have installation doc (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
l0rd committed Dec 14, 2023
1 parent e1df94c commit c2d8643
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 34 deletions.
7 changes: 2 additions & 5 deletions .devfile.yaml
@@ -1,8 +1,6 @@
schemaVersion: 2.1.0
schemaVersion: 2.2.0
metadata:
name: eclipse-che-website
attributes:
controller.devfile.io/storage-type: ephemeral
components:
- name: development-tooling
container:
Expand All @@ -13,8 +11,7 @@ components:
- name: eclipse-che-website
targetPort: 3000
exposure: public
secure: false
protocol: http
protocol: https
commands:
- id: install
exec:
Expand Down
32 changes: 3 additions & 29 deletions src/lib/try/TryInstall.svelte
Expand Up @@ -42,39 +42,13 @@ onMount(() => {
</div>
</div>

<div class="relative grid gap-5 grid-cols-2 sm:grid-cols-2 lg:grid-cols-3 dark:text-gray-300">
<a href='https://www.eclipse.org/che/docs/che-7/installation-guide/installing-che-on-minikube/' target='blank' >
<div class="relative grid gap-5 grid-cols-1 sm:grid-cols-1 lg:grid-cols-2 dark:text-gray-300">
<a href='https://eclipse.dev/che/docs/stable/administration-guide/installing-che-on-minikube/' target='blank' >
<div title="Minikube" class="w-100 h-40 p-5 flex flex-col text-center transition duration-300 bg-transparent dark:shadow-dark transform rounded shadow-2xl hover:scale-105 md:shadow-xl hover:shadow-2xl items-center justify-center align-middle">
<MinikubeLogo />
</div>
</a>
<a href='https://www.eclipse.org/che/docs/che-7/installation-guide/installing-che-on-kind/' target='blank' >
<div title="Kind" class="w-100 h-40 p-5 flex flex-col text-center transition duration-300 bg-transparent dark:shadow-dark transform rounded shadow-2xl hover:scale-105 md:shadow-xl hover:shadow-2xl items-center justify-center align-middle">
<KindLogo />
</div>
</a>
<a href='https://www.eclipse.org/che/docs/che-7/installation-guide/installing-che-on-docker-desktop/' target='blank' >
<div title="Docker Desktop" class="w-100 h-40 flex flex-col p-5 text-center transition duration-300 dark:shadow-dark transform rounded shadow-2xl hover:scale-105 md:shadow-xl hover:shadow-2xl items-center justify-center align-middle">
<!-- svelte-ignore a11y-missing-attribute -->
<img class="h-fit w-fit" src='{dockerImage}' />
</div>
</a>
<a href='https://www.eclipse.org/che/docs/che-7/installation-guide/installing-che-on-aws/' target='blank' >
<div title="AWS" class="w-100 h-40 flex flex-col p-5 text-center transition duration-300 dark:shadow-dark transform rounded shadow-2xl hover:scale-105 md:shadow-xl hover:shadow-2xl items-center justify-center align-middle">
<AwsLogo />
</div>
</a>
<a href='https://www.eclipse.org/che/docs/che-7/installation-guide/installing-che-on-google-cloud-platform/' target='blank' >
<div title="Google Cloud" class="w-100 h-40 flex flex-col p-5 text-center transition duration-300 dark:shadow-dark transform rounded shadow-2xl hover:scale-105 md:shadow-xl hover:shadow-2xl items-center justify-center align-middle">
<GoogleCloudLogo />
</div>
</a>
<a href='https://www.eclipse.org/che/docs/che-7/installation-guide/installing-che-on-microsoft-azure/' target='blank' >
<div title="Azure" class="w-100 h-40 flex flex-col p-5 text-center transition duration-300 dark:shadow-dark transform rounded shadow-2xl hover:scale-105 md:shadow-xl hover:shadow-2xl items-center justify-center align-middle">
<AzureLogo />
</div>
</a>
<a href='https://www.eclipse.org/che/docs/che-7/installation-guide/installing-che-on-openshift-4-using-operatorhub/' target='blank' >
<a href='https://eclipse.dev/che/docs/stable/administration-guide/installing-che-on-openshift-using-cli/' target='blank' >
<div title="OpenShift" class="w-100 h-40 flex flex-col p-5 text-center transition duration-300 dark:shadow-dark transform rounded shadow-2xl hover:scale-105 md:shadow-xl hover:shadow-2xl items-center justify-center align-middle">
<OpenShiftLogo />
</div>
Expand Down

0 comments on commit c2d8643

Please sign in to comment.