-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
1,714 additions
and
1,622 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug Kubeview API server", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
// "cwd": "./cmd/server", | ||
"program": "${workspaceFolder}/cmd/server", | ||
"env": {}, | ||
"args": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
module github.com/benc-uk/kubeview | ||
|
||
go 1.13 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/benc-uk/go-starter v1.0.0 | ||
github.com/gorilla/mux v1.7.4 | ||
github.com/imdario/mergo v0.3.11 // indirect | ||
github.com/joho/godotenv v1.3.0 | ||
k8s.io/api v0.15.7 | ||
k8s.io/apimachinery v0.15.7 | ||
k8s.io/client-go v0.15.7 | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
k8s.io/api v0.18.6 | ||
k8s.io/apimachinery v0.18.6 | ||
k8s.io/client-go v0.18.6 | ||
k8s.io/utils v0.0.0-20200731180307-f00132d28269 // indirect | ||
) |
Oops, something went wrong.