Skip to content

Commit 2d64e89

Browse files
authored
fix Helm repo and update instruction for Helm 3 (#22)
1 parent 5ee028c commit 2d64e89

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

helm/oauth2-proxy/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: oauth2-proxy
2-
version: 3.2.9
2+
version: 3.2.10
33
apiVersion: v2
44
appVersion: 5.1.0
55
home: https://oauth2-proxy.github.io/oauth2-proxy/

helm/oauth2-proxy/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```console
88
$ helm repo add oauth2-proxy https://oauth2-proxy.github.io/manifests
9-
$ helm install oauth2-proxy/oauth2-proxy
9+
$ helm install my-release oauth2-proxy/oauth2-proxy
1010
```
1111

1212
## Introduction
@@ -18,7 +18,7 @@ This chart bootstraps an oauth2-proxy deployment on a [Kubernetes](http://kubern
1818
To install the chart with the release name `my-release`:
1919

2020
```console
21-
$ helm install stable/oauth2-proxy --name my-release
21+
$ helm install my-release oauth2-proxy/oauth2-proxy
2222
```
2323

2424
The command deploys oauth2-proxy on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
@@ -28,7 +28,7 @@ The command deploys oauth2-proxy on the Kubernetes cluster in the default config
2828
To uninstall/delete the `my-release` deployment:
2929

3030
```console
31-
$ helm delete my-release
31+
$ helm uninstall my-release
3232
```
3333

3434
The command removes all the Kubernetes components associated with the chart and deletes the release.
@@ -136,14 +136,14 @@ Parameter | Description | Default
136136
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
137137

138138
```console
139-
$ helm install stable/oauth2-proxy --name my-release \
139+
$ helm install my-release oauth2-proxy/oauth2-proxy \
140140
--set=image.tag=v0.0.2,resources.limits.cpu=200m
141141
```
142142

143143
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
144144

145145
```console
146-
$ helm install stable/oauth2-proxy --name my-release -f values.yaml
146+
$ helm install my-release oauth2-proxy/oauth2-proxy -f values.yaml
147147
```
148148

149149
> **Tip**: You can use the default [values.yaml](values.yaml)

0 commit comments

Comments
 (0)