Skip to content

Commit

Permalink
Merge pull request #32 from keephq/feature/tpl2
Browse files Browse the repository at this point in the history
feat: tpl
  • Loading branch information
shahargl authored Aug 22, 2024
2 parents 0cf3a51 + 7af25b3 commit beb3a72
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/keep/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: keep
version: 0.1.4
version: 0.1.5
description: Keep Helm Chart
type: application
icon: https://platform.keephq.dev/_next/image?url=%2Fkeep.png&w=48&q=75
Expand Down
4 changes: 2 additions & 2 deletions charts/keep/templates/role-binding-secret-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: secret-manager-rolebinding
namespace: {{ .Values.namespace }}
namespace: {{ .Values.namespace | default .Release.Namespace | default "default" }}
subjects:
- kind: ServiceAccount
name: {{ include "keep.serviceAccountName" . }}
namespace: {{ .Values.namespace }}
namespace: {{ .Values.namespace | default .Release.Namespace | default "default" }}
roleRef:
kind: Role
name: secret-manager-role
Expand Down
2 changes: 1 addition & 1 deletion charts/keep/templates/role-secret-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: secret-manager-role
namespace: {{ .Values.namespace }}
namespace: {{ .Values.namespace | default .Release.Namespace | default "default" }}
rules:
- apiGroups: [""]
resources: ["secrets"]
Expand Down

0 comments on commit beb3a72

Please sign in to comment.