mirror of https://git.rancher.io/charts
18 lines
450 B
YAML
18 lines
450 B
YAML
|
{{- if .Capabilities.APIVersions.Has "route.openshift.io/v1" }}
|
||
|
{{- if .Values.kiali_route_url }}
|
||
|
---
|
||
|
apiVersion: oauth.openshift.io/v1
|
||
|
kind: OAuthClient
|
||
|
metadata:
|
||
|
name: {{ include "kiali-server.fullname" . }}-{{ .Release.Namespace }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
{{- include "kiali-server.labels" . | nindent 4 }}
|
||
|
redirectURIs:
|
||
|
- {{ .Values.kiali_route_url }}
|
||
|
grantMethod: auto
|
||
|
allowAnyScope: true
|
||
|
...
|
||
|
{{- end }}
|
||
|
{{- end }}
|