Compare commits

..

No commits in common. '3360d4eb7f5ca6527087db4b4ac9739a7f1bde6e' and 'ac8276c7d390d9c741923ce1f9b1baba84b0aacf' have entirely different histories.

@ -4,13 +4,13 @@ member: oregonstateuniversity
projects:
- Open Source
provides:
- Bare Metal Machine
- Virtual Machine
- Bare Metal Machine (coming soon)
- Virtual Machine (via OpenStack; with GPU)
- Container (via OpenShift; with FPGA; coming soon)
addons:
- none
- Nvidia V100 GPU
- Nvidia T4 GPU
- OpenCAPI Alpha Data 9H3 FPGA
- Nvidia V100 GPU (VM)
- OpenCAPI Alpha Data 9H3 FPGA (container)
systems:
- POWER9
sponsors:
@ -81,19 +81,29 @@ opnstkflavors:
disk: 240
operatingsystems:
available:
- Alma Linux 8
- Alma Linux 9
- Alpine
- CentOS Stream 8 (GPU)
- CentOS Stream 9 (GPU)
- Debian 10
- Debian 11
- Debian 12
- Fedora [latest]
- Ubuntu 18.04
- Ubuntu 20.04 (GPU)
- Ubuntu 22.04 (GPU)
standard:
- CentOS Stream 8
- CentOS Stream 9
- Debian 10
- Debian 11
- Fedora [latest]
- Ubuntu 18.04
- Ubuntu 20.04
- Ubuntu 22.04
gpuenabled:
- CentOS Stream 8
- CentOS Stream 9
- Ubuntu 20.04
- Ubuntu 22.04
unavailable:
standard:
- Alma Linux 8
- Alma Linux 9
- Rocky Linux 9
gpuenabled:
- Alma Linux 8
- Alma Linux 9
- Rocky Linux 9
weight: -9000
date: 2022-08-24
draft: false

@ -90,11 +90,16 @@ var goal = "{{ .Site.Params.forms.hub.goal }}";
<div class="form-group col-lg-6">
What Operating System would you like on your POWER resource?
<select id="operatingsystem" name="operatingsystem">
{{ if .Param "operatingsystems.available" }}
{{ range .Param "operatingsystems.available" }}
{{ if .Param "operatingsystems.available.standard" }}
{{ range .Param "operatingsystems.available.standard" }}
<option value="{{ . }}">{{ . }}</option>
{{ end }}
{{ end }}
{{ if .Param "operatingsystems.available.gpuenabled" }}
{{ range .Param "operatingsystems.available.gpuenabled" }}
<option value="{{ . }}">{{ . }} (GPU-enabled)</option>
{{ end }}
{{ end }}
</select>
</div>
{{ end }}

Loading…
Cancel
Save