Skip to content

Commit

Permalink
Invert the negation on creating serviceaccounts in different namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
funkypenguin committed Dec 20, 2020
1 parent c6c35f5 commit 2377372
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/fission-all/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: fission-all
version: 1.8.1-pre35
version: 1.8.1-pre36
description: Fission is a fast serverless framework for Kubernetes.
keywords:
- fission
Expand Down
4 changes: 2 additions & 2 deletions charts/fission-all/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: fission-fetcher
{{- if .Values.namespaceIsolation }}
{{- if not .Values.namespaceIsolation }}
namespace: {{ .Values.functionNamespace }}
{{- end }}
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: fission-builder
{{- if .Values.namespaceIsolation }}
{{- if not .Values.namespaceIsolation }}
namespace: {{ .Values.builderNamespace }}
{{- end }}

Expand Down

0 comments on commit 2377372

Please sign in to comment.