Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Plugin examples for the Octant application.

License

Notifications You must be signed in to change notification settings

vmware-archive/octant-example-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VMware has ended active development of this project, this repository will no longer be updated.

Octant Plugin Samples

This repository contains minimal code samples illustrating some common patterns around plugins.

Supported plugins are written in TypeScript or Go, although it is possible to write plugins in any language.

Each plugin sample should contain:

  • A description of what the plugin does
  • A demo of the use case
  • Notes and caveats about the usage pattern, if any
  • Installation instructions

Prerequisites

Plugins written in Go will require Golang 1.16 or above. Plugins written in TypeScript will require an installation of Node and NPM.

Using the latest version of Octant is also recommended.

  • Go version 1.16+
  • Node 14+
  • Octant 0.23+

Samples

Sample Go TypeScript Description
Module Sample ✔️ ✔️ Adds a new module and sub paths
Extend GVK Sample ✔️ Adds additional components inside an existing view
Actions API Sample ✔️ ✔️ Calling a remote API and managing state
Alert Sample ✔️ ✔️ Sends an alert message
Resource Viewer Sample ✔️ Pass custom data into Octant's resource viewer
Local Event Loop Maintain a local event loop not tied to Octant poll

To Do

  • Form Sample
  • Dropdown Sample
  • Timeline Sample