Skip to content

Commit 5b92d7c

Browse files
committed
fixing sevice account requriements for vanilla deployment
1 parent a454f7a commit 5b92d7c

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

charts/netapp-neo/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ description: NetApp Neo v4.x — context lake microservice architecture for AI s
44
type: application
55
keywords: ["NetApp", "Neo", "MCP", "AI", "context lake"]
66
home: "https://netapp.github.io/Innovation-Labs/"
7-
version: 26.5.3
7+
version: 26.5.4
88
appVersion: "4.1.4"

charts/netapp-neo/templates/api-deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ spec:
2020
imagePullSecrets:
2121
{{- toYaml . | nindent 8 }}
2222
{{- end }}
23+
{{- if .Values.openshift.deploy }}
2324
serviceAccountName: {{ include "netapp-neo.apiServiceAccountName" . }}
25+
{{- end }}
2426
securityContext:
2527
runAsNonRoot: true
2628
{{- if .Values.postgresql.enabled }}

charts/netapp-neo/templates/ui-deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ spec:
2020
imagePullSecrets:
2121
{{- toYaml . | nindent 8 }}
2222
{{- end }}
23+
{{- if .Values.openshift.deploy }}
2324
serviceAccountName: {{ include "netapp-neo.uiServiceAccountName" . }}
25+
{{- end }}
2426
containers:
2527
- name: ui
2628
image: "{{ .Values.ui.image.repository }}:{{ .Values.ui.image.tag }}"

charts/netapp-neo/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ openshift:
1010
# Kubernetes. When false, OpenShift-only validations and ServiceAccounts are
1111
# skipped and workloads use explicit runAsUser security contexts instead of
1212
# relying on the restricted-v2 SCC to inject a UID.
13-
deploy: true
13+
deploy: false
1414
restrictedV2:
1515
# Mandatory for this chart in OpenShift.
1616
enabled: true

0 commit comments

Comments
 (0)