Skip to content

Commit f03ca2a

Browse files
committed
moving from @vbouchaud to @HopopOps
1 parent efb36f0 commit f03ca2a

12 files changed

+24
-24
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ APPNAME := k8s-ldap-auth
1212
BIN ?= $(APPNAME)
1313

1414
ORG ?= registry.aegir.bouchaud.org
15-
PKG := vbouchaud/$(APPNAME)
15+
PKG := hopopops/$(APPNAME)
1616
PLATFORM ?= "linux/arm/v7,linux/arm64/v8,linux/amd64"
1717
GO ?= go
1818
SED ?= sed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# k8s-ldap-auth
22

3-
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/vbouchaud/k8s-ldap-auth?style=for-the-badge)](https://github.com/vbouchaud/k8s-ldap-auth/releases/latest)
4-
[![License](https://img.shields.io/github/license/vbouchaud/k8s-ldap-auth?style=for-the-badge)](https://opensource.org/licenses/MPL-2.0)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/vbouchaud/k8s-ldap-auth?style=for-the-badge)](https://goreportcard.com/report/github.com/vbouchaud/k8s-ldap-auth)
6-
[![Artifact Hub](https://img.shields.io/endpoint?style=for-the-badge&url=https://artifacthub.io/badge/repository/vbouchaud)](https://artifacthub.io/packages/search?repo=vbouchaud)
3+
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/hopopops/k8s-ldap-auth?style=for-the-badge)](https://github.com/hopopops/k8s-ldap-auth/releases/latest)
4+
[![License](https://img.shields.io/github/license/hopopops/k8s-ldap-auth?style=for-the-badge)](https://opensource.org/licenses/MPL-2.0)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/hopopops/k8s-ldap-auth?style=for-the-badge)](https://goreportcard.com/report/github.com/hopopops/k8s-ldap-auth)
6+
[![Artifact Hub](https://img.shields.io/endpoint?style=for-the-badge&url=https://artifacthub.io/badge/repository/hopopops)](https://artifacthub.io/packages/search?repo=hopopops)
77

88
A webhook token authentication plugin implementation backed by LDAP.
99

@@ -217,7 +217,7 @@ users:
217217

218218
installHint: |
219219
k8s-ldap-auth is required to authenticate to the current context.
220-
It can be installed from https://github.com/vbouchaud/k8s-ldap-auth.
220+
It can be installed from https://github.com/hopopops/k8s-ldap-auth.
221221
222222
# This parameter, when true, tells `kubectl` to fill the TokenReview in
223223
# the `$KUBERNETES_EXEC_INFO` environment variable with extra config
@@ -331,7 +331,7 @@ PLATFORM="linux/arm/v7,linux/amd64" make docker
331331

332332
## Distribution
333333
### Docker
334-
Docker images of this project are available for arm/v7, arm64/v8 and amd64 at [vbouchaud/k8s-ldap-auth](https://hub.docker.com/r/vbouchaud/k8s-ldap-auth) on docker hub and on quay.io at [vbouchaud/k8s-ldap-auth](https://quay.io/vbouchaud/k8s-ldap-auth).
334+
Docker images of this project are available for arm/v7, arm64/v8 and amd64 at [hopopops/k8s-ldap-auth](https://hub.docker.com/r/hopopops/k8s-ldap-auth) on docker hub and on quay.io at [hopopops/k8s-ldap-auth](https://quay.io/hopopops/k8s-ldap-auth).
335335

336336
### Binary
337337
Binaries for the following OS and architectures are available on the release page:
@@ -352,15 +352,15 @@ Binaries for the following OS and architectures are available on the release pag
352352

353353
### Darwin
354354
#### With `brew`
355-
`k8s-ldap-auth.rb` is not in the official repository, you can install it from [my repository](https://github.com/vbouchaud/homebrew-tap) with the following commands:
355+
`k8s-ldap-auth.rb` is not in the official repository, you can install it from [my repository](https://github.com/hopopops/homebrew-tap) with the following commands:
356356

357-
`brew install vbouchaud/tap/k8s-ldap-auth`
357+
`brew install hopopops/tap/k8s-ldap-auth`
358358

359-
Or `brew tap vbouchaud/tap` and then `brew install k8s-ldap-auth`.
359+
Or `brew tap hopopops/tap` and then `brew install k8s-ldap-auth`.
360360

361361
### Kubernetes
362362
#### Helm Chart
363-
A Chart is hosted at [vbouchaud/chartrepo](https://vbouchaud.github.io/chartrepo/). Please see [its readme](https://github.com/vbouchaud/chartrepo/blob/main/charts/k8s-ldap-auth/README.md) for more information on how to install it.
363+
A Chart is hosted at [hopopops/chartrepo](https://hopopops.github.io/chartrepo/). Please see [its readme](https://github.com/hopopops/chartrepo/blob/main/charts/k8s-ldap-auth/README.md) for more information on how to install it.
364364

365365
## Inspiration
366366
I originally started this project after reading Daniel Weibel's article "Implementing LDAP authentication for Kubernetes" (https://learnk8s.io/kubernetes-custom-authentication or https://itnext.io/implementing-ldap-authentication-for-kubernetes-732178ec2155).

client/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/rs/zerolog/log"
1010

11-
"vbouchaud/k8s-ldap-auth/types"
11+
"k8s-ldap-auth/types"
1212
)
1313

1414
func Auth(addr, user, pass string) error {

client/interactive.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/zalando/go-keyring"
1515
"golang.org/x/term"
1616

17-
"vbouchaud/k8s-ldap-auth/types"
17+
"k8s-ldap-auth/types"
1818
)
1919

2020
func readData(readLine func(screen io.ReadWriter) (string, error)) (string, error) {

cmd/authentication.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/adrg/xdg"
88
"github.com/urfave/cli/v2"
99

10-
"vbouchaud/k8s-ldap-auth/client"
10+
"k8s-ldap-auth/client"
1111
)
1212

1313
func getAuthenticationCmd() *cli.Command {

cmd/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/rs/zerolog/log"
99
"github.com/urfave/cli/v2"
1010

11-
"vbouchaud/k8s-ldap-auth/version"
11+
"k8s-ldap-auth/version"
1212
)
1313

1414
type action func(*cli.Context) error

cmd/reset.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/urfave/cli/v2"
77

8-
"vbouchaud/k8s-ldap-auth/client"
8+
"k8s-ldap-auth/client"
99
)
1010

1111
func getResetCmd() *cli.Command {

cmd/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/urfave/cli/v2"
77

8-
"vbouchaud/k8s-ldap-auth/server"
8+
"k8s-ldap-auth/server"
99
)
1010

1111
func getServerCmd() *cli.Command {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module vbouchaud/k8s-ldap-auth
1+
module k8s-ldap-auth
22

33
go 1.22.0
44

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"vbouchaud/k8s-ldap-auth/cmd"
4+
"k8s-ldap-auth/cmd"
55
)
66

77
func main() {

server/options.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"github.com/gorilla/mux"
77
"github.com/rs/zerolog/log"
88

9-
"vbouchaud/k8s-ldap-auth/ldap"
10-
"vbouchaud/k8s-ldap-auth/server/middlewares"
11-
"vbouchaud/k8s-ldap-auth/types"
9+
"k8s-ldap-auth/ldap"
10+
"k8s-ldap-auth/server/middlewares"
11+
"k8s-ldap-auth/types"
1212
)
1313

1414
// Option function for configuring a server instance

server/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
machinery "k8s.io/apimachinery/pkg/apis/meta/v1"
1717
client "k8s.io/client-go/pkg/apis/clientauthentication/v1beta1"
1818

19-
"vbouchaud/k8s-ldap-auth/ldap"
20-
"vbouchaud/k8s-ldap-auth/types"
19+
"k8s-ldap-auth/ldap"
20+
"k8s-ldap-auth/types"
2121
)
2222

2323
const ContentTypeHeader = "Content-Type"

0 commit comments

Comments
 (0)