Skip to content

Commit

Permalink
Software version bump (v7.2.0) (#63)
Browse files Browse the repository at this point in the history
* Added .gitignore from https://raw.githubusercontent.com/helm/charts/master/.gitignore

* Software version bump
  • Loading branch information
pierluigilenoci authored Oct 26, 2021
1 parent fdd0f9e commit 7089e0e
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 4 deletions.
39 changes: 39 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# From https://raw.githubusercontent.com/helm/charts/master/.gitignore

# General files for the project
pkg/*
*.pyc
bin/*
.project
/.bin
/_test/secrets/*.json

# OSX leaves these everywhere on SMB shares
._*

# OSX trash
.DS_Store

# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
.idea/
*.iml

# Vscode files
.vscode

# Emacs save files
*~
\#*\#
.\#*

# Vim-related files
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
Session.vim
.netrwhist

# Chart dependencies
**/charts/*.tgz

.history
4 changes: 2 additions & 2 deletions helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: oauth2-proxy
version: 5.0.1
version: 5.0.2
apiVersion: v2
appVersion: 7.1.3
appVersion: 7.2.0
home: https://oauth2-proxy.github.io/oauth2-proxy/
description: A reverse proxy that provides authentication with Google, Github or other providers
keywords:
Expand Down
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Parameter | Description | Default
`httpScheme` | `http` or `https`. `name` used for port on the deployment. `httpGet` port `name` and `scheme` used for `liveness`- and `readinessProbes`. `name` and `targetPort` used for the service. | `http`
`image.pullPolicy` | Image pull policy | `IfNotPresent`
`image.repository` | Image repository | `quay.io/oauth2-proxy/oauth2-proxy`
`image.tag` | Image tag | `v7.1.3`
`image.tag` | Image tag | `v7.2.0`
`imagePullSecrets` | Specify image pull secrets | `nil` (does not add image pull secrets to deployed pods)
`ingress.enabled` | Enable Ingress | `false`
`ingress.className` | name referencing IngressClass | `nil`
Expand Down
2 changes: 1 addition & 1 deletion helm/oauth2-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ config:

image:
repository: "quay.io/oauth2-proxy/oauth2-proxy"
tag: "v7.1.3"
tag: "v7.2.0"
pullPolicy: "IfNotPresent"

# Optionally specify an array of imagePullSecrets.
Expand Down

0 comments on commit 7089e0e

Please sign in to comment.