Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo causing RBAC resources not being created (#8991)
Signed-off-by: Vasily Sliouniaev <vasily.sliouniaev@jet.com>
  • Loading branch information
vsliouniaev authored and k8s-ci-robot committed Nov 5, 2018
1 parent 47e2754 commit 5f4b9ad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion stable/prometheus-node-exporter/Chart.yaml
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "0.16.0"
description: A Helm chart for prometheus node-exporter
name: prometheus-node-exporter
version: 0.5.0
version: 0.5.1
home: https://github.com/prometheus/node_exporter/
sources:
- https://github.com/prometheus/node_exporter/
Expand Down
@@ -1,5 +1,5 @@
{{- if .Values.rbacEnable }}
{{- if .Values.pspEnable }}
{{- if .Values.rbac.create }}
{{- if .Values.rbac.pspEnabled }}
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
Expand Down
@@ -1,5 +1,5 @@
{{- if .Values.rbacEnable }}
{{- if .Values.pspEnable }}
{{- if .Values.rbac.create }}
{{- if .Values.rbac.pspEnabled }}
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
Expand Down
4 changes: 2 additions & 2 deletions stable/prometheus-node-exporter/templates/psp.yaml
@@ -1,5 +1,5 @@
{{- if .Values.rbacEnable }}
{{- if .Values.pspEnable }}
{{- if .Values.rbac.create }}
{{- if .Values.rbac.pspEnabled }}
apiVersion: extensions/v1beta1
kind: PodSecurityPolicy
metadata:
Expand Down

0 comments on commit 5f4b9ad

Please sign in to comment.