Releases: headlamp-k8s/headlamp
headlamp-plugin-0.5.2
headlamp-plugin is a tool to help with making plugins for Headlamp (the extensible Kubernetes UI).
- material-ui/labs is available to plugins
To use this new headlamp-plugin version with existing plugins, please update your plugin package.json
file:
"devDependencies": {
"@kinvolk/headlamp-plugin": "^0.5.2"
}
This release of headlamp-plugin is compatible with Headlamp 0.12.0.
headlamp-helm-0.8.0
Headlamp is an easy-to-use and extensible Kubernetes web UI.
0.12.0
✨ Enhancements:
- Stop plugins if they fail to be loaded or to render components. This prevents Headlamp from crashing if the plugins fail
- Improve the user-experience in the namespace filter when having multiple namespaces selected (it no longer spans over one line)
- Headlamp can be installed using Chocolatey 🍫 (for Windows)
- Show containers' ports and image pull policy in the UI
- Do not scroll the log viewer to the bottom when new logs arrive, if the user has previously scrolled it up (to prevent disrupting the reading)
- All dates now show the timezone information (if the date is abbreviated/relative, then the full date is shown on hover)
- Dates are now shown in a minimalist format, with the hover option for showing the full date
- Add a new version/build dialog. This allows users to see which version of Headlamp they're running in the UI, which helps when
reporting bugs - Headlamp is now also available as a Debian package (download from its Github's release page for now)
New minimalist date + full date tooltip on hover:
New version dialog (access it from the cluster chooser dialog's (i) button or the user menu):
🐞 Bug fixes
- Fix showing the notification about a new Headlamp version (desktop only)
- Prevent the views' width from being expanded if values in tables are too long
- Fix margin issues when in small screens
- Center the cluster chooser button in the top bar (updating its position depending on whether the sidebar is opened or not)
- Fix conditional use of hooks in a component
- Fix showing the release notes (desktop only)
- Fix/improve sidebar UX in small screens (width=sm)
💻 Development
- Allow to disable checking for new updates (desktop-relevant only)
- Allow to pass the cluster when getting a route URL (instead of just using the currently selected cluster)
- Add test to prevent unintended or forgotten exports of components for plugins
- New dependency updates, including a new Electron (19.0.8) and electron-builder (23.1.0) versions
- Add proxy endpoint to backend: when enabled/configured, this endpoint allows plugins to reach external APIs without being blocked
for origin issues (desktop only) - Add a new
ResourceTable
component which makes it very simple to consistently display K8s resource lists - Replace javascript-time-ago with humanize-duration. The former's newer versions break compatibility, and the new lib is much lighter
- Add a command to generate a
.msi
installer - Wait for plugins to be loaded before showing views. This prevents default routes/views from being shown until plugins are loaded,
giving them the chance to override them without the user seeing the default ones - Wait for plugins to be loaded before showing the app menus (desktop only)
📖 Documentation
- Add new special build options to docs
Container image: 🐳 ghcr.io/kinvolk/headlamp:v0.12.0
Desktop Apps:
🐧 Flatpak / Linux (AMD64)
🐧 Linux AppImage AMD64, ARM64, ARMv7l
🐧 Linux Tarball AMD64, ARM64, ARMv7l
🐧 Debian / Linux AMD64
🍏 Mac (Homebrew)
🍏 Mac (AMD64)
🍏 Mac (ARM/M1)
🟦 Windows (AMD64)
headlamp-plugin-0.5.1
headlamp-plugin is a tool to help with making plugins for Headlamp (the extensible Kubernetes UI).
In this bugfix release:
- Updated dependencies
- With Headlamp 0.11.1 the CircularChart API can be used from plugins
To use this new headlamp-plugin version with existing plugins, please update your plugin package.json
file:
"devDependencies": {
"@kinvolk/headlamp-plugin": "^0.5.1"
}
This release of headlamp-plugin is compatible with Headlamp 0.11.1.
headlamp-helm-0.7.0
Headlamp is an easy-to-use and extensible Kubernetes web UI.
0.11.1
🐞 Bug fixes
- Prevent logo from getting trimmed in the cluster chooser
- Fix applying
Ingress
resources - Fix details-view example plugin
- Fix list route name for the
StorageClass
- Fix create/apply button's visibility
- Fix checking for updates (it was not checking due to a race condition)
- Fix exporting the
CircularChart
- Honor the
disableTypography
attribute in theDialogTitle
component - Prevent the pages' width from exceeding the expected width (by wrapping certain elements)
- Remove unnecessary extra left margin from the main content (when on small screens)
- Show navigation tabs when on small screens (when there's a non-expanding, narrow sidebar)
💻 Development
- Update headlamp-plugin for all plugins
Container image: 🐳 ghcr.io/kinvolk/headlamp:v0.11.1
Desktop Apps:
🐧 Flatpak / Linux (AMD64)
🐧 Linux AppImage AMD64, ARM64, ARMv7l
🐧 Linux Tarball AMD64, ARM64, ARMv7l
🍏 Mac (Homebrew)
🍏 Mac (AMD64)
🍏 Mac (ARM/M1)
🟦 Windows (AMD64)
headlamp-helm-0.6.0
Headlamp is an easy-to-use and extensible Kubernetes web UI.
0.11.0
✨ Enhancements:
- Add a fullscreen button to the log viewer and terminal dialogs
- Increase the size of the log viewer's dialog
- Add a new scale button on the scalable resources' details view, which allows to use the new scaling dialog
- On Kubernetes >= 1.24, Headlamp tries to refresh the user's token close to its expiration, so users don't
have to do it manually - On Windows: Allow users to change some options when installing (i.e. no longer a 1-click install)
- On Mac: Users can now install/update Headlamp through Homebrew (thanks to @Rabattkarte )
Example of a logo change through plugins:
New replica scale UI:
🐞 Bug fixes
- Sort events by date, not by namespace
- Fix crash in notifications when there are non-latin characters
- Update the link to "how to create service account tokens" in the authentication dialog
- Wrap the image name's text so it doesn't expand the details views beyond their appropriate width
- Fix the default number of rows for tables (it was by mistake getting set to 5; should be 15)
- Handle a new
headlamp
protocol, so we can have e.g. authentication for some services being done in the user's default
browser, and getting back to the app as a final step - Fix list and details views for RoleBindings (thanks to @fondoger for reporting)
🧩 Development / Plugins
- Add a new and simplified API for creating plugins with very minimal boilerplate
- Add a new Dialog component, to make dialogs across Headlamp consistent, including their use by plugins
- Allow to override the app menus from plugins
- Add a new Headlamp.isRunningAsApp function, so
plugins can check whether they are running in-cluster or as a desktop app - Export the Resource's CircularChart, so plugins can use it
- Make the README.md generation for plugins more useful
- Add a new ActionButton so Headlamp and its plugins can use buttons more consistently across the UI
- Export the auth and units modules, so plugins can use them (thanks to @t-lalexander for reporting)
📖 Documentation
- Add documentation for the new/simplified way to create plugins
- Add new/updated plugin examples (including screenshots):
- Show a different post-installation tip on Helm, about how to create tokens, when Kubernetes is >=1.24
- Update all example plugins' README files to make them consistent
- Add docs on how to install Headlamp on Mac using Homebrew (thanks to @Rabattkarte )
Container image: 🐳 ghcr.io/kinvolk/headlamp:v0.11.0
Desktop Apps:
🐧 Flatpak / Linux (AMD64)
🐧 Linux AppImage AMD64, ARM64, ARMv7l
🐧 Linux Tarball AMD64, ARM64, ARMv7l
🍏 Mac (AMD64)
🍏 Mac (ARM/M1)
🟦 Windows (AMD64)
headlamp-plugin-0.5.0
headlamp-plugin is a tool to help with making plugins for Headlamp (the extensible Kubernetes UI).
In this release:
- Added new and improved plugin examples and documentation #568
- Fixed Chart imports #579 thanks @t-lalexander
- Exported resource chart and lib #580
- Added API for changing App menus #566
To use this new headlamp-plugin version with existing plugins, please update your plugin package.json
file:
"devDependencies": {
"@kinvolk/headlamp-plugin": "^0.5.0"
}
This release of headlamp-plugin is compatible with Headlamp 0.11.0.
See the new plugin documentation and examples to see how to change the logo, customize detail views/action buttons, change side bar menu items, app menu items, and even dynamically define a cluster.
headlamp-helm-0.5.0
Headlamp is an easy-to-use and extensible Kubernetes web UI.