File tree Expand file tree Collapse file tree 4 files changed +3
-8
lines changed Expand file tree Collapse file tree 4 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 11name : oauth2-proxy
2- version : 4.0.2
2+ version : 4.0.3
33apiVersion : v2
44appVersion : 7.1.3
55home : https://oauth2-proxy.github.io/oauth2-proxy/
Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ Parameter | Description | Default
9797` ingress.enabled ` | Enable Ingress | ` false `
9898` ingress.path ` | Ingress accepted path | ` / `
9999` ingress.pathType ` | Ingress [ path type] ( https://kubernetes.io/docs/concepts/services-networking/ingress/#path-types ) | ` ImplementationSpecific `
100- ` ingress.apiVersion ` | Ingress api version | ` nil `
101100` ingress.extraPaths ` | Ingress extra paths to prepend to every host configuration. Useful when configuring [ custom actions with AWS ALB Ingress Controller] ( https://kubernetes-sigs.github.io/aws-alb-ingress-controller/guide/ingress/annotation/#actions ) . | ` [] `
102101` ingress.annotations ` | Ingress annotations | ` nil `
103102` ingress.hosts ` | Ingress accepted hostnames | ` nil `
Original file line number Diff line number Diff line change 55{{- $ingressPathType := .Values.ingress.pathType -}}
66{{- $extraPaths := .Values.ingress.extraPaths -}}
77{{- $apiV1 := false -}}
8- {{- if .Values.ingress.apiVersion -}}
9- apiVersion : {{ .Values.ingress.apiVersion }}
10- {{- else if .Capabilities.APIVersions.Has "networking.k8s.io/v1" -}}
8+ {{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress" -}}
119apiVersion : networking.k8s.io/v1
1210{{- $apiV1 = true -}}
13- {{- else if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1" -}}
11+ {{- else if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1/Ingress " -}}
1412apiVersion : networking.k8s.io/v1beta1
1513{{- else -}}
1614apiVersion : extensions/v1beta1
Original file line number Diff line number Diff line change @@ -91,8 +91,6 @@ ingress:
9191 path : /
9292 # Only used if API capabilities (networking.k8s.io/v1) allow it
9393 pathType : ImplementationSpecific
94- # define the ingress api version (e.g. networking.k8s.io/v1)
95- # apiVersion: networking.k8s.io/v1
9694 # Used to create an Ingress record.
9795 # hosts:
9896 # - chart-example.local
You can’t perform that action at this time.
0 commit comments