Luxury Yacht is a desktop app for managing Kubernetes clusters, available for Linux, macOS, and Windows.
New to Luxury Yacht? Read the primer!
Go to the Releases page to download the latest version.
Packages are available for amd64 (x86_64) and arm64 (aarch64). Be sure to download the correct package for your architecture.
Uses a standard DMG. Open the DMG and drag to Applications.
Can also be installed via Homebrew.
brew tap luxury-yacht/tap
brew install --cask luxury-yacht
Install via .deb or .rpm package.
Uses a standard installer. Note that these are unsigned, so will require extra confirmation steps to run. Given the cost of a code-signing certificate, these will likely remain unsigned.
If you prefer to build the app from source, see the Development section.
Luxury Yacht requires webkit2 4.1. Some distros don't include it, or don't install it by default. Installation will vary depending on your distro.
| Distro | Installation |
|---|---|
| Ubuntu 20.04 | Unsupported |
| Ubuntu 22.04 | sudo apt install libwebkit2gtk-4.1-0 |
If your distro isn't on this (admittedly short) list, you'll have to search your package manager to determine the exact package name. If you have info you'd like to add to this list, email [email protected] or open an issue.
Luxury Yacht is built with Wails, a framework for building cross-platform apps in Go.
To install Wails:
go install github.com/wailsapp/wails/v2/cmd/[email protected]
Once Wails is installed, run wails doctor to see what other dependencies are required for your OS.
For scripting builds, testing, releases, etc., Luxury Yacht uses Mage for cross-platform compatibilty. Makefiles and bash scripts are fine for Linux and macOS, but they don't work in Windows. The magefile is written in Go, so should work the same in any OS.
To install Mage:
go install github.com/magefile/mage@latest
To see what mage targets are available, run mage -l in the repo root.
The fastest way to get the app up and running for development is to run in Wails development mode. This gives you hot-reloads and access to the browser console for debugging.
Note that hot-reload of the Go backend will cause the app to restart, while changes to frontend code will be reflected immediately without an app restart.
To install the app locally:
When updating versions in the app, these are the canonical sources. All scripts/workflows should get app and toolset versions from these sources and these sources only.
App version is derived from info.productVersion in wails.json
APP_VERSION=$(jq -r '.info.productVersion' wails.json)
Go version is derived from go.mod
GO_VERSION=$(grep '^go ' go.mod | awk '{print $2}')
Wails version is derived from go.mod
WAILS_VERSION=$(grep 'github.com/wailsapp/wails/v2' go.mod | awk '{print $2}')
Node version is derived from .nvmrc
NODE_VERSION=$(cat .nvmrc | tr -d 'v')
Run the prerelease checks. This should surface any problems that could cause the release to fail.
-
Update the version in wails.json
-
Commit and push the change.
-
Create and push a tag. The
releaseworkflow will do the rest.
git tag $(jq -r '.info.productVersion' wails.json)
git push origin main --tags
