Package Exports
- hyper-gcp-status-line
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hyper-gcp-status-line) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
hyper-gcp-status-line 
A status line plugin for Hyper.js that shows the currently active Google Cloud Platform project, the Compute Engine default zone, and the Kubernetes context and namespace.

Should work with most themes, and allow custom paths to gcloud and kubectl which are used to retrieve information.
Credits go out to Henrik Dahl and his work on hyper-statusline. Check it out if you want a status line that shows Git information.
Installation
Add the following to your ~/.hyper.js config:
module.exports = {
...
plugins: ['hyper-gcp-statusline']
...
}Configuration
Optionally configure the below settings in ~/.hyper.js.
Path to gcloud and kubectl
Unless specified, hyper-gcp-statusline assumes binaries are installed on the global PATH.
module.exports = {
config: {
...
hyperGcpStatusLine: {
gcloudBinary: '/my/path/gcloud',
kubectlBinary: '/my/path/kubectl'
}
...
}
}