{{- if or .Values.global.aws.enabled .Values.global.azure.enabled }} {{- $oc4 := and .Values.openshift (semverCompare ">=1.12-0" (substr 1 -1 .Capabilities.KubeVersion.GitVersion)) -}} {{- $oc3 := and .Values.openshift (not $oc4) (semverCompare ">=1.9-0" (substr 1 -1 .Capabilities.KubeVersion.GitVersion)) -}} {{- if $oc3 }} apiVersion: authorization.openshift.io/v1 {{- else if (semverCompare ">=1.8-0" (substr 1 -1 .Capabilities.KubeVersion.GitVersion)) }} apiVersion: rbac.authorization.k8s.io/v1 {{- else }} apiVersion: v1 {{- end }} kind: RoleBinding metadata: name: neuvector-csp-adapter-binding namespace: {{ .Release.Namespace }} labels: chart: {{ template "neuvector.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} roleRef: apiGroup: rbac.authorization.k8s.io kind: Role name: neuvector-csp-adapter-role subjects: - kind: ServiceAccount {{- if .Values.global.aws.enabled }} name: {{ .Values.global.aws.serviceAccount }} {{- end }} {{- if .Values.global.azure.enabled }} name: {{ .Values.global.azure.serviceAccount }} {{- end }} namespace: {{ .Release.Namespace }} {{- end }}