Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add versioning with sub dirs starting with v3 #146

Merged
merged 12 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.hugo_build.lock
node_modules/
public/
public/
.vscode/
resources/
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

10 changes: 10 additions & 0 deletions assets/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"*"
]
}
}
}
4 changes: 4 additions & 0 deletions content/en/docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ menu:
weight: 20
---

{{% alert color="warning" %}}
There are [known issues]({{< relref "known-issues">}}) in v3.0.0
{{% /alert %}}

Welcome to the Kairos Documentation

Kairos is the open-source project that simplifies Edge, cloud, and bare metal OS lifecycle management. With a unified Cloud Native API, Kairos is community-driven, open source, and distro agnostic.
Expand Down
22 changes: 22 additions & 0 deletions content/en/docs/known-issues.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

---
title: "Known Issues"
linkTitle: "known-issues"
weight: 20
menu:
main:
weight: 20
---

{{% alert color="warning" %}}
The following issues are specific to v3.0.0
{{% /alert %}}

- Filesystem expansion on rpi4 doesn't work with Alpine [#1995](https://github.com/kairos-io/kairos/issues/1995)
- `cgroup_memory` not mounted in Alpine rpi4 [#2002](https://github.com/kairos-io/kairos/issues/2002)
- Upgrade on Alpine arm64 errors [#2135](https://github.com/kairos-io/kairos/issues/2135)
- Reset from the GRUB menu on Alpine gets stuck in an endless loop [#2136](https://github.com/kairos-io/kairos/issues/2136)
- EFI Booting no longer supported on Kernels shipped in Ubuntu 23.10 [#2240](https://github.com/kairos-io/kairos/issues/2249)


If you found a different issue that hasn't been mentioned before, please [open a report on our main repo](https://github.com/kairos-io/kairos/issues/new).
5 changes: 0 additions & 5 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/FortAwesome/Font-Awesome v0.0.0-20240108205627-a1232e345536/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY=
github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc=
github.com/google/docsy v0.9.1 h1:+jqges1YCd+yHeuZ1BUvD8V8mEGVtPxULg5j/vaJ984=
github.com/google/docsy v0.9.1/go.mod h1:saOqKEUOn07Bc0orM/JdIF3VkOanHta9LU5Y53bwN2U=
github.com/google/docsy/dependencies v0.7.1 h1:NbzYKJYMin2q50xdWSUzR2c9gCp7zR/XHDBcxklEcTQ=
github.com/google/docsy/dependencies v0.7.1/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4=
github.com/google/docsy/dependencies v0.7.2 h1:+t5ufoADQAj4XneFphz4A+UU0ICAxmNaRHVWtMYXPSI=
github.com/google/docsy/dependencies v0.7.2/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4=
github.com/twbs/bootstrap v5.2.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
11 changes: 10 additions & 1 deletion hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,13 @@ no = 'Oh snap! Sorry to hear that. Please <a href="https://github.com/kairos-io/
disable = false
[[module.imports]]
path = "github.com/google/docsy/dependencies"
disable = false
disable = false

# Add your release versions here
[[params.versions]]
version = "master"
url = "/docs"

[[params.versions]]
version = "v3.0.0"
url = "/v3.0.0/docs"
5 changes: 4 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Hugo build configuration for Netlify
# (https://gohugo.io/hosting-and-deployment/hosting-on-netlify/#configure-hugo-version-in-netlify)
[build]
publish = "public"
command = "scripts/build.sh"

[build.environment]
HUGO_VERSION = "0.113.0"
HUGO_VERSION = "0.113.0"

[[redirects]]
from = "/docs/contribution-guidelines/"
Expand Down
Loading