Skip to content

Commit

Permalink
update name to conform to krew naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
clbx committed Nov 12, 2023
1 parent 4d1eb35 commit 98c9624
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
- name: Upload Artifact
uses: actions/[email protected]
with:
name: kubectl-browse-darwin
name: kubectl-browse-pvc-darwin
path: |
./kubectl-browse
./kubectl-browse-pvc
build-linux:
runs-on: ubuntu-latest
steps:
Expand All @@ -43,9 +43,9 @@ jobs:
- name: Upload Artifact
uses: actions/[email protected]
with:
name: kubectl-browse-linux
name: kubectl-browse-pvc-linux
path: |
./kubectl-browse
./kubectl-browse-pvc
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kubectl-browse
kubectl-browse-pvc
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# kubectl-browser
# kubectl-browse-pvc
Kubectl plugin to browse a Kubernetes PVC from the command line

**This tool is WIP**
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#! /bin/bash
go build .
mv kubectl-browse ~/.bin/kubectl-browse
mv kubectl-browse-pvc ~/.bin/kubectl-browse-pvc
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/clbx/kubectl-browse
module github.com/clbx/kubectl-browse-pvc

go 1.20

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func main() {
var image string

app := &cli.App{
Name: "kubectl browse",
Name: "kubectl browse-pvc",
Usage: "Kubernetes PVC Browser",
Flags: []cli.Flag{
&cli.StringFlag{
Expand All @@ -36,7 +36,7 @@ func main() {
},
&cli.StringFlag{
Name: "image",
//use the pvcb image
//use the pvc browser edit container
Value: "clbx/pvcb-edit",
Usage: "Image to mount job to",
Aliases: []string{"i"},
Expand Down

0 comments on commit 98c9624

Please sign in to comment.