From 8a698287d54f89b3e041acaa5bc8dcb974bf2879 Mon Sep 17 00:00:00 2001 From: Nicolas Takashi Date: Fri, 12 May 2023 16:38:40 +0100 Subject: [PATCH] [FIX] remove ns definition (#39) Signed-off-by: Nicolas Takashi --- charts/cole/Chart.yaml | 2 +- charts/cole/templates/role.yaml | 1 - charts/cole/templates/serviceaccount.yaml | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/charts/cole/Chart.yaml b/charts/cole/Chart.yaml index d623bcc..5d8e46f 100644 --- a/charts/cole/Chart.yaml +++ b/charts/cole/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.4.0 +version: 1.4.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/cole/templates/role.yaml b/charts/cole/templates/role.yaml index 208e3cc..2506d46 100644 --- a/charts/cole/templates/role.yaml +++ b/charts/cole/templates/role.yaml @@ -2,7 +2,6 @@ apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: {{ include "cole.fullname" . }} - namespace: {{ .Values.flags.grafana.namespace }} rules: - apiGroups: [""] resources: diff --git a/charts/cole/templates/serviceaccount.yaml b/charts/cole/templates/serviceaccount.yaml index 29fc6d6..4392c0c 100644 --- a/charts/cole/templates/serviceaccount.yaml +++ b/charts/cole/templates/serviceaccount.yaml @@ -3,7 +3,6 @@ apiVersion: v1 kind: ServiceAccount metadata: name: {{ include "cole.serviceAccountName" . }} - namespace: {{ .Values.flags.grafana.namespace }} labels: {{- include "cole.labels" . | nindent 4 }} {{- with .Values.serviceAccount.annotations }}