Skip to content

Commit

Permalink
integrated pr, bumped versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mlbiam committed Oct 19, 2023
1 parent 5efa177 commit 1ab15ba
Show file tree
Hide file tree
Showing 11 changed files with 148 additions and 599 deletions.
Empty file modified .DS_Store
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build oulogin
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand Down
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export VERSION="0.0.7"
export VERSION="0.0.8"

rm -rf target
mkdir -p target
Expand Down
53 changes: 45 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,54 @@
module kubectl-login

go 1.15
go 1.20

require (
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
golang.org/x/oauth2 v0.13.0
k8s.io/apimachinery v0.28.3
k8s.io/client-go v0.28.3
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/pkg/browser v0.0.0-20201207095918-0426ae3fba23
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/pquerna/cachecontrol v0.0.0-20201205024021-ac21108117ac // indirect
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
k8s.io/api v0.19.1
k8s.io/apimachinery v0.19.1
k8s.io/client-go v0.19.1
k8s.io/klog v1.0.0 // indirect
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/api v0.28.3 // indirect
k8s.io/klog/v2 v2.100.1 // indirect
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)
688 changes: 100 additions & 588 deletions go.sum
100644 → 100755

Large diffs are not rendered by default.

Empty file modified img/login-cli.gif
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion kubectl-login.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func randSeq(n int) string {
}

func main() {
fmt.Println("oulogin 0.0.7")
fmt.Println("oulogin 0.0.8")
host := flag.String("host", "", "openunison hostname (and port if needed)")

ctx := flag.String("context", "", "an existing context in the kubectl configuration file")
Expand Down
Empty file modified oulogin.yaml
100644 → 100755
Empty file.

0 comments on commit 1ab15ba

Please sign in to comment.