aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2019-11-20 11:10:58 -0800
committerLibravatar Terin Stock <terinjokes@gmail.com>2019-11-20 11:10:58 -0800
commitb35b371065165c014bf4f3673d322fb0d7027b04 (patch)
treef7adc076a8e1be432b23d95efe383f0af556344c /go.mod
parentchore: initial open source commit (diff)
downloadk9p-master.tar.xz
feat: add open source codeHEADmaster
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.mod14
1 files changed, 14 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..606f59d
--- /dev/null
+++ b/go.mod
@@ -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
+)