Skip to content

Commit

Permalink
fix Helm repo and update instruction for Helm 3 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
elnappo authored Apr 13, 2021
1 parent 5ee028c commit 2d64e89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 3.2.9
version: 3.2.10
apiVersion: v2
appVersion: 5.1.0
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down
10 changes: 5 additions & 5 deletions helm/oauth2-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

```console
$ helm repo add oauth2-proxy https://oauth2-proxy.github.io/manifests
$ helm install oauth2-proxy/oauth2-proxy
$ helm install my-release oauth2-proxy/oauth2-proxy
```

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

```console
$ helm install stable/oauth2-proxy --name my-release
$ helm install my-release oauth2-proxy/oauth2-proxy
```

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.
Expand All @@ -28,7 +28,7 @@ The command deploys oauth2-proxy on the Kubernetes cluster in the default config
To uninstall/delete the `my-release` deployment:

```console
$ helm delete my-release
$ helm uninstall my-release
```

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

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

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

```console
$ helm install stable/oauth2-proxy --name my-release -f values.yaml
$ helm install my-release oauth2-proxy/oauth2-proxy -f values.yaml
```

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

0 comments on commit 2d64e89

Please sign in to comment.