|
1 | 1 | <script setup lang="ts">
|
2 |
| -import HelloWorld from './components/HelloWorld.vue' |
| 2 | +import OperatingSystem from "./components/OperatingSystem.vue"; |
| 3 | +import images_data from "./images_data.json"; |
3 | 4 | </script>
|
4 | 5 |
|
5 | 6 | <template>
|
6 |
| - <div> |
7 |
| - <a href="https://vite.dev" target="_blank"> |
8 |
| - <img src="/vite.svg" class="logo" alt="Vite logo" /> |
9 |
| - </a> |
10 |
| - <a href="https://vuejs.org/" target="_blank"> |
11 |
| - <img src="./assets/vue.svg" class="logo vue" alt="Vue logo" /> |
12 |
| - </a> |
| 7 | + <nav class="navbar navbar-dark bg-dark"> |
| 8 | + <div class="container-fluid"> |
| 9 | + <button |
| 10 | + class="navbar-toggler" |
| 11 | + type="button" |
| 12 | + data-bs-toggle="collapse" |
| 13 | + data-bs-target="#navbarToggleExternalContent" |
| 14 | + aria-controls="navbarToggleExternalContent" |
| 15 | + aria-expanded="false" |
| 16 | + aria-label="Toggle navigation" |
| 17 | + > |
| 18 | + <span class="navbar-toggler-icon"></span> |
| 19 | + </button> |
| 20 | + </div> |
| 21 | + </nav> |
| 22 | + |
| 23 | + |
| 24 | + <div class="collapse" id="navbarToggleExternalContent"> |
| 25 | + <div class="bg-dark p-4"> |
| 26 | + <h5 class="text-white h4">About</h5> |
| 27 | + <p class="text-white"> |
| 28 | + All the images come with a single root partition, and use UFS/FFS |
| 29 | + filesystem. |
| 30 | + </p> |
| 31 | + <p class="text-white"> |
| 32 | + NetBSD will resize the root partition during the first boot. |
| 33 | + </p> |
| 34 | + <p class="text-white"> |
| 35 | + OpenBSD is provided with a script |
| 36 | + (<code>/root/bin/create_partitions.sh</code>) to adapt the partition |
| 37 | + layout after the first boot. The games and X server sets are not |
| 38 | + installed to keep the image minimal. |
| 39 | + </p> |
| 40 | + <p class="text-white"> |
| 41 | + In order to be consistent with Cloud-Init, sudo is enabled by default. |
| 42 | + On OpenBSD, doas is still available and just need to be configured. |
| 43 | + </p> |
| 44 | + <p class="text-white"> |
| 45 | + Finally, the serial console is enabled by default. |
| 46 | + </p> |
| 47 | + <p class="text-white"> |
| 48 | + This images use Cloud-Init master, which supports NetBSD and OpenBSD, |
| 49 | + see: |
| 50 | + <a href="https://github.com/canonical/cloud-init/pull/62">#62</a>, |
| 51 | + <a href="https://github.com/canonical/cloud-init/pull/147">#147</a>. |
| 52 | + </p> |
| 53 | + <p class="text-white"> |
| 54 | + The scripts used to build the images are listed below: |
| 55 | + </p> |
| 56 | + <ul class="text-muted"> |
| 57 | + <li> |
| 58 | + <a href="https://github.com/virt-lightning/freebsd-cloud-images" |
| 59 | + >FreeBSD</a |
| 60 | + > |
| 61 | + </li> |
| 62 | + <li> |
| 63 | + <a href="https://github.com/virt-lightning/netbsd-cloud-images" |
| 64 | + >NetBSD</a |
| 65 | + > |
| 66 | + </li> |
| 67 | + <li> |
| 68 | + <a href="https://github.com/hcartiaux/openbsd-cloud-image">OpenBSD</a> |
| 69 | + </li> |
| 70 | + </ul> |
| 71 | + </div> |
| 72 | + <div class="col-sm-4 offset-md-1 py-4"> |
| 73 | + <h4 class="text-white">Contact</h4> |
| 74 | + <ul class="list-unstyled"> |
| 75 | + <li> |
| 76 | + <a |
| 77 | + href="https://github.com/goneri/bsd-cloud-image.org" |
| 78 | + class="text-white" |
| 79 | + >Github</a |
| 80 | + > |
| 81 | + </li> |
| 82 | + <li> |
| 83 | + <a href="https://goneri.lebouder.net" class="text-white">Blog</a> |
| 84 | + </li> |
| 85 | + <li> |
| 86 | + <a |
| 87 | + href="https://matrix.to/#/!gYnpTfoEbtxPJvFlgC:matrix.org?via=matrix.org&via=bsd.cafe" |
| 88 | + class="text-white" |
| 89 | + >Matrix</a |
| 90 | + > |
| 91 | + </li> |
| 92 | + <li> |
| 93 | + <a href="mailto:goneri@lebouder.net" class="text-white">Email</a> |
| 94 | + </li> |
| 95 | + </ul> |
| 96 | + </div> |
13 | 97 | </div>
|
14 |
| - <HelloWorld msg="Vite + Vue" /> |
| 98 | + <main role="main"> |
| 99 | + <section class="jumbotron text-center"> |
| 100 | + <div class="container"> |
| 101 | + <h1>A collection of prebuilt BSD cloud images</h1> |
| 102 | + <p class="lead text-muted"> |
| 103 | + These unofficial images are tested on OpenStack and NoCloud (<a |
| 104 | + href="https://virt-lightning.org" |
| 105 | + >with Virt-Lightning</a |
| 106 | + >). They come with |
| 107 | + <a href="https://cloudinit.readthedocs.io/en/latest/">Cloud-init</a>, |
| 108 | + and so they should support all the main Cloud providers. |
| 109 | + </p> |
| 110 | + </div> |
| 111 | + </section> |
| 112 | + |
| 113 | + <div class="album py-5 bg-light"> |
| 114 | + <div class="container"> |
| 115 | + <OperatingSystem |
| 116 | + v-for="(os_data, os_name) in images_data" |
| 117 | + :os_name |
| 118 | + :os_data |
| 119 | + /> |
| 120 | + </div> |
| 121 | + </div> |
| 122 | + </main> |
15 | 123 | </template>
|
16 | 124 |
|
17 | 125 | <style scoped>
|
|
0 commit comments