Skip to content

Commit

Permalink
Fix dependencies after rename
Browse files Browse the repository at this point in the history
  • Loading branch information
feloy committed Jun 1, 2020
1 parent fe8a6d4 commit 449f59a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 18 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A `kubectl` plugin to explore the status for ingresses, services and their backe

```shell
# Install plugin
$ make bin && sudo cp bin/kubectl-service-tree /usr/local/bin/
$ kubectl krew install service-tree

# Get help
$ kubectl service-tree --help
Expand All @@ -21,13 +21,13 @@ Ingress demo.router (*/apache)
Ingress demo.router (*/nginx)
Service demo.nginx-service (8080)
. Pod demo.nginx-deployment-b486cddf6-x2wz4 (172.18.0.9:80)
Container nginx
x Pod demo.nginx-not-ready-deployment-55999bd676-b4mhk
Container nginx
x Pod demo.nginx-not-ready-deployment-55999bd676-b4mhk

Service demo.lb-service (6060)
. Pod demo.nginx-deployment-b486cddf6-x2wz4 (172.18.0.9:80)
Container nginx
x Pod demo.nginx-not-ready-deployment-55999bd676-b4mhk
Container nginx
x Pod demo.nginx-not-ready-deployment-55999bd676-b4mhk

Service demo.nodeport-service (3030)
. Pod demo.apache-deployment-6f6846564b-dqp5c (172.18.0.6:80)
Expand Down
17 changes: 7 additions & 10 deletions deploy/krew/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Plugin
metadata:
name: service-tree
spec:
version: v0.2.0
version: v0.2.1
homepage: https://github.com/feloy/kubectl-service-tree
shortDescription: Status for ingresses, services, and their backends
description: |
Expand All @@ -17,20 +17,17 @@ spec:
matchLabels:
os: darwin
arch: amd64
uri: https://github.com/feloy/kubectl-services/releases/download/v0.1.2/kubectl-services_darwin_amd64.tar.gz
sha256: bedab730a230de999581fbc05ea85208b92f902c26cfa43a1992d45b9d9124ab
bin: kubectl-services
uri: https://github.com/feloy/kubectl-service-tree/releases/download/v0.2.1/kubectl-service-tree_darwin_amd64.tar.gz
bin: kubectl-service-tree
- selector:
matchLabels:
os: linux
arch: amd64
uri: https://github.com/feloy/kubectl-services/releases/download/v0.1.2/kubectl-services_linux_amd64.tar.gz
sha256: 2150e1d9258993c3176132369990449d29173498617c183dc9b571f578fab990
bin: kubectl-services
uri: https://github.com/feloy/kubectl-service-tree/releases/download/v0.2.1/kubectl-service-tree_linux_amd64.tar.gz
bin: kubectl-service-tree
- selector:
matchLabels:
os: windows
arch: amd64
uri: https://github.com/feloy/kubectl-services/releases/download/v0.1.2/kubectl-services_windows_amd64.zip
sha256: a0efe93394ada5b4fca3777c97d32ca4f5d80ca3e74d24a49a03c551c9f2aefd
bin: kubectl-services.exe
uri: https://github.com/feloy/kubectl-service-tree/releases/download/v0.2.1/kubectl-service-tree_windows_amd64.zip
bin: kubectl-service-tree.exe
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ require (
github.com/blang/semver v3.5.1+incompatible
github.com/docker/docker v1.13.1
github.com/fatih/color v1.7.0
github.com/feloy/kubectl-services v0.1.2 // indirect
github.com/genuinetools/reg v0.16.0
github.com/gin-gonic/gin v1.4.0
github.com/gizak/termui/v3 v3.1.0
Expand Down
3 changes: 1 addition & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,7 @@ github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fatih/structs v0.0.0-20181010231757-878a968ab225/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
github.com/feloy/kubectl-services v0.1.2 h1:2ULnRL2XT2xv5Or0sAA5XLGSyTIl9+bccusEg1a3evs=
github.com/feloy/kubectl-services v0.1.2/go.mod h1:Ul3Z6TVQpd6Gd8t1b0CzRSXla79Az1MPUnWYP6nfatk=
github.com/feloy/kubectl-service-tree v0.2.0/go.mod h1:+Y2o0n4pK/ocq68ojpvnElHFFleXRjf3dcMaB/FhxMc=
github.com/fernet/fernet-go v0.0.0-20180830025343-9eac43b88a5e/go.mod h1:2H9hjfbpSMHwY503FclkV/lZTBh2YlOmLLSda12uL8c=
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=
github.com/fortytw2/leaktest v1.2.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g=
Expand Down

0 comments on commit 449f59a

Please sign in to comment.