diff options
author | 2019-11-20 11:10:58 -0800 | |
---|---|---|
committer | 2019-11-20 11:10:58 -0800 | |
commit | b35b371065165c014bf4f3673d322fb0d7027b04 (patch) | |
tree | f7adc076a8e1be432b23d95efe383f0af556344c /go.mod | |
parent | chore: initial open source commit (diff) | |
download | k9p-master.tar.xz |
Add the initial open source version of K9P with support for viewing
namespaces and deployments. Current support is entirely read-only.
Performance is pretty terrible. Needs much more love and care.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +module go.terinstock.com/k9p + +go 1.13 + +require ( + github.com/docker/go-p9p v0.0.0-20191112112554-37d97cf40d03 + github.com/oklog/run v1.0.0 + github.com/rs/zerolog v1.17.2 + k8s.io/api v0.0.0-20191114100352-16d7abae0d2a + k8s.io/apimachinery v0.0.0-20191028221656-72ed19daf4bb + k8s.io/client-go v0.0.0-20191114101535-6c5935290e33 + k8s.io/klog v1.0.0 + sigs.k8s.io/yaml v1.1.0 +) |