
This allows for a built in audit database for user actions We can also see how often commands are run, how long they take as well as who and when they're run TODO: use sqlcipher to encrypt at rest & password protect the db Change-Id: Ic7c8927bcfdd46ede3fe6a5aca4f57892ca3f3d4
22 lines
633 B
Modula-2
22 lines
633 B
Modula-2
module opendev.org/airship/airshipui
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/google/uuid v1.1.1
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/mattn/go-sqlite3 v1.14.3
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/spf13/cobra v1.0.0
|
|
github.com/stretchr/testify v1.6.1
|
|
opendev.org/airship/airshipctl v0.0.0-20200917132506-1660efc23150
|
|
sigs.k8s.io/kustomize/api v0.5.1
|
|
)
|
|
|
|
replace (
|
|
k8s.io/client-go => k8s.io/client-go v0.0.0-20191114101535-6c5935290e33
|
|
k8s.io/kubectl => k8s.io/kubectl v0.0.0-20191219154910-1528d4eea6dd
|
|
sigs.k8s.io/kustomize/kyaml => sigs.k8s.io/kustomize/kyaml v0.4.1
|
|
)
|