You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-07-13 01:40:48 +02:00
--------- Co-authored-by: vinay chandrasekharan <vinay.cn@gmail.com> Co-authored-by: Jan Larwig <jan@larwig.com>
24 lines
741 B
Markdown
24 lines
741 B
Markdown
# Kubernetes example
|
|
Based on [kind](https://kind.sigs.k8s.io) as a local Kubernetes cluster.
|
|
|
|
## Quick start
|
|
|
|
Before you start:
|
|
|
|
_Required_
|
|
* install [kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation)
|
|
* install [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
|
|
* install [helm](https://helm.sh/docs/intro/quickstart/#install-helm).
|
|
|
|
Then:
|
|
|
|
* `make create-cluster`
|
|
* `make deploy`
|
|
|
|
Visit http://httpbin.localtest.me or http://hello-world.localtest.me/
|
|
Note: When accessing the service for the first time you will need to authenticate with Dex. It is configured using static credentials for testing. With username `admin@example.com` and password set to `password`.
|
|
|
|
## Uninstall
|
|
|
|
* `make delete-cluster`
|