Compare commits

..

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

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

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

Loading…
Cancel
Save