Skip to content

Commit de1b787

Browse files
author
yellowhat
authored
Use fullname instead of name to name resource (#68)
Signed-off-by: Yellowhat <yellowhat46@gmail.com>
1 parent 449a5b8 commit de1b787

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

chart/kepler/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: kepler
3-
description: A Helm chart for kepler (Kubernetes-based Efficient Power Level Exporter)
3+
description: A Helm chart for kepler (Kubernetes-based Efficient Power Level Exporter)
44
icon: "https://avatars.githubusercontent.com/u/91567619?s=200&v=4"
55
home: https://sustainable-computing.io/html/index.html
66
sources:
@@ -19,8 +19,8 @@ annotations:
1919
artifacthub.io/license: "Apache-2.0"
2020
artifacthub.io/signKey: |
2121
fingerprint: 91BF31657FB6BB5931CBFCF92A544B84946E3621
22-
url: https://keybase.io/bradmccoydev/pgp_keys.asc
22+
url: https://keybase.io/bradmccoydev/pgp_keys.asc
2323
2424
type: application
25-
version: 0.5.9
25+
version: 0.5.10
2626
appVersion: release-0.7.11

chart/kepler/templates/daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: apps/v1
33
kind: DaemonSet
44
metadata:
5-
name: {{ include "kepler.name" . }}
5+
name: {{ include "kepler.fullname" . }}
66
namespace: {{ .Release.Namespace }}
77
labels:
88
{{- include "kepler.labels" . | nindent 4 }}

chart/kepler/templates/rolebinding.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
5-
name: {{ include "kepler.name" . }}-clusterrole
5+
name: {{ include "kepler.fullname" . }}-clusterrole
66
rules:
77
- apiGroups: [""]
88
resources:
@@ -19,10 +19,10 @@ rules:
1919
apiVersion: rbac.authorization.k8s.io/v1
2020
kind: ClusterRoleBinding
2121
metadata:
22-
name: {{ include "kepler.name" . }}-clusterrole-binding
22+
name: {{ include "kepler.fullname" . }}-clusterrole-binding
2323
roleRef:
2424
kind: ClusterRole
25-
name: {{ include "kepler.name" . }}-clusterrole
25+
name: {{ include "kepler.fullname" . }}-clusterrole
2626
apiGroup: "rbac.authorization.k8s.io"
2727
subjects:
2828
- kind: ServiceAccount

chart/kepler/templates/service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v1
33
kind: Service
44
metadata:
5-
name: {{ include "kepler.name" . }}
5+
name: {{ include "kepler.fullname" . }}
66
namespace: {{ .Release.Namespace }}
77
labels:
88
{{- include "kepler.labels" . | nindent 4 }}

0 commit comments

Comments
 (0)