Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions helm/oauth2-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: oauth2-proxy
version: 10.6.0
version: 10.6.1
apiVersion: v2
appVersion: 7.15.2
home: https://oauth2-proxy.github.io/oauth2-proxy/
Expand Down Expand Up @@ -31,7 +31,7 @@ kubeVersion: ">=1.16.0-0"
annotations:
artifacthub.io/changes: |
- kind: added
description: Added name attribute for HTTPRoute rules
description: Added runtimeClassName for deployment
links:
- name: GitHub PR
url: https://github.com/oauth2-proxy/manifests/pull/407
url: https://github.com/oauth2-proxy/manifests/pull/410
1 change: 1 addition & 0 deletions helm/oauth2-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ The following table lists the configurable parameters of the oauth2-proxy chart
| `resizePolicy` | Container resize policy for runtime resource updates. See [Kubernetes docs](https://kubernetes.io/docs/tasks/configure-pod-container/resize-container-resources/) | `[]` |
| `resources` | pod resource requests & limits | `{}` |
| `revisionHistoryLimit` | maximum number of revisions maintained | 10 |
| `runtimeClassName` | runtimeClassName | ``. |
| `securityContext.enabled` | enable Kubernetes security context on container | `true` |
| `service.appProtocol` | application protocol on the port of the service | `http` |
| `service.clusterIP` | cluster ip address | `nil` |
Expand Down
3 changes: 3 additions & 0 deletions helm/oauth2-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -428,3 +428,6 @@ spec:
topologySpreadConstraints:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.runtimeClassName }}
runtimeClassName: {{ .Values.runtimeClassName }}
{{- end }}
2 changes: 2 additions & 0 deletions helm/oauth2-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,8 @@ extraInitContainers: []

priorityClassName: ""

runtimeClassName: ""

# hostAliases is a list of aliases to be added to /etc/hosts for network name resolution
hostAliases: []
# - ip: "10.xxx.xxx.xxx"
Expand Down
Loading