A Web UI for interacting with Airship-managed clusters
Go to file
Alexander Hughes 2ff942f766 Add gomod tidy check to lint gate
Sister project airshipctl uses gomod tidy checks to ensure
dependencies are up to date. These checks are performed at the gate
with an error message for remediation (run go mod tidy) when
dependencies in a patchset are not current. Adding the same
functionality to airshipui.

Change-Id: Ica3602cccd5d84d30f0ffae25667e968369349fd
Signed-off-by: Alexander Hughes <Alexander.Hughes@pm.me>
2020-07-13 14:24:18 -05:00
.github Update Airship vulnerability link 2020-05-18 21:22:07 +00:00
certs update makefile to build docker images 2020-07-08 08:45:00 -05:00
cmd/airshipui Fix for minor Go lint issues 2020-06-17 16:38:52 -05:00
docs update makefile to build docker images 2020-07-08 08:45:00 -05:00
examples Fix for minor Go lint issues 2020-06-17 16:38:52 -05:00
internal Added more test cases to config 2020-06-26 11:27:02 -05:00
playbooks Update zuul gates to use docker-image 2020-07-09 13:12:10 -05:00
roles/docker-install Update zuul gates to use docker-image 2020-07-09 13:12:10 -05:00
testutil Added more test cases to config 2020-06-26 11:27:02 -05:00
tools Merge "Fix for docker image create behind a proxy with custom CA certs" 2020-07-10 15:25:35 +00:00
web Removed as much of the pre generated CSS as possible 2020-06-26 16:08:21 -05:00
.gitignore Adding eslint to do basic linting for JS and HTML files 2020-05-18 13:22:08 -05:00
.gitreview Add a .gitreview 2019-12-06 16:02:18 -06:00
.golangci.yaml [linters] Aligning linter config with airshipctl 2020-06-19 11:38:46 -05:00
.zuul.yaml Update zuul gates to use docker-image 2020-07-09 13:12:10 -05:00
Dockerfile update makefile to build docker images 2020-07-08 08:45:00 -05:00
go.mod Add gomod tidy check to lint gate 2020-07-13 14:24:18 -05:00
go.sum Add gomod tidy check to lint gate 2020-07-13 14:24:18 -05:00
LICENSE Initial commit 2019-09-20 09:08:48 -07:00
Makefile Add gomod tidy check to lint gate 2020-07-13 14:24:18 -05:00
README.md Update Makefile and documentation for npm installs 2020-05-29 14:17:38 -05:00
tox.ini Publish documentation 2020-05-11 21:21:41 +00:00

Airship UI

Airship UI is an electron that is designed to allow you to interact with Airship components, find and connect to the kubernetes cluster and use plugins to tie together a singular dashboard to view addons without the need to go to a separate url or application for each.

Prerequisites

Getting Started

git clone https://opendev.org/airship/airshipui
cd airshipui
make
make install-npm-modules # Note running behind a proxy can cause issues, notes on solving is in the Appendix of the Developer's Guide

Adding Additional Functionality

Airship UI can be seamlessly integrated with service dashboards and other web-based tools by providing the necessary configuration in $HOME/.airship/airshipui.json.

To add service dashboards, create a section at the top level of airshipui.json as follows:

"clusters": [
        {
            "name": "clusterA",
            "baseFqdn": "svc.cluster.local",
            "namespaces": [
                {
                    "name": "ceph",
                    "dashboards": [
                        {
                            "name": "Ceph",
                            "protocol": "https",
                            "fqdn": "ceph-dash.example.domain",
                            "port": 443,
                            "path": ""
                        }
                    ]
                },
                {
                    "name": "openstack",
                    "dashboards": [
                        {
                            "name": "Horizon",
                            "protocol": "http",
                            "hostname": "horizon",
                            "port": 80,
                            "path": "dashboard/auth/login"
                        }
                    ]
                }
            ]
        }
]

For dashboards that are made available through service endpoints in your cluster, the FQDN for the dashboard will be constructed using the format "hostname.namespace.baseFqdn". In the above example, the configuration for Horizon specifies a service dashboard available at "http://horizon.openstack.svc.cluster.local:80/dashboard/auth/login"

Alternatively, you may choose to specify the FQDN directly, as in the above Ceph example. This configuration specifies a Ceph dashboard available at "https://ceph-dash.example.domain:443/"

If both "hostname" and "fqdn" are provided, "fqdn" will take precedence.

The airshipui.json configuration file can also be used to launch "plugins", or external executables, in the background as Airship UI starts. Any processes launched by Airship UI will be terminated when Airship UI exits, including any child processes started by the plugins. If the plugin launches a web dashboard, it can be also be included in the list of service dashboards within Airship UI. The following example demonstrates how to add configuration to launch and use Octant within Airship UI:

"plugins": [
        {
            "name": "Octant",
            "dashboard": {
                "protocol": "http",
                "fqdn": "localhost",
                "port": 7777,
                "path": ""
            },
            "executable": {
                "autoStart": true,
                "filepath": "/usr/local/bin/octant",
                "args": [
                    "--disable-open-browser",
                    "--kubeconfig",
                    "/home/ubuntu/.airship/kubeconfig"
                ]
            }
        }
]

To prevent a plugin from launching but retain its configuration for later use, simply set "autoStart" to false.

Developer's Guide

Instructions on setting up a development environment and more details can be found in the Developer's Guide