airshipui/pkg/configs/testdata/airshipui.json
Schiefelbein, Andrew a15a4d87e2 Simplify, refactor and rename to bring in line with CTL
This patch does the following:
1.  Simplify the client websocket message transformation
2.  Move the cmd/airshipui to cmd
3.  move internal to pkg
4.  Clean up the copyright checker
5.  clean up the linting in the makefile

Change-Id: I1381d025e8058cbfba44b58ec3c2ec5c2aa36de5
2020-08-04 14:26:51 -05:00

37 lines
947 B
JSON

{
"authMethod": {
"url": "http://fake.auth.method.com/auth"
},
"dashboards": [
{
"name": "dummy_dashboard",
"baseURL": "http://dummyhost",
"path": "fake/login/path",
"executable": {
"autoStart": true,
"filepath": "/fake/path/to/executable",
"args": [
"--fakeflag",
"fakevalue"
]
}
},
{
"name": "dummy_plugin_no_dash",
"executable": {
"autoStart": true,
"filepath": "/fake/path/to/executable",
"args": [
"--fakeflag",
"fakevalue"
]
}
},
{
"name": "dummy_dashboard_no_exe",
"baseURL": "http://dummyhost",
"path": "fake/login/path"
}
]
}