Skip to content

Commit 724d5fb

Browse files
Volodymyr SavchenkoVolodymyr Savchenko
Volodymyr Savchenko
authored and
Volodymyr Savchenko
committed
Merge branch 'master' of github.com:rucio/helm-charts into reproducible-deployment
2 parents 4284689 + c711c8c commit 724d5fb

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

rucio/charts/rucio-daemons/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rucio-daemons
2-
version: 36.0.0
2+
version: 36.0.1
33
apiVersion: v1
44
description: A Helm chart to deploy daemons for Rucio
55
keywords:

rucio/charts/rucio-daemons/templates/automatic-restart-account.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
apiVersion: v1
33
kind: ServiceAccount
44
metadata:
5-
name: {{ .Release.Name }}-rucio-restart
5+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
66
---
77
kind: RoleBinding
88
apiVersion: rbac.authorization.k8s.io/v1
99
metadata:
10-
name: {{ .Release.Name }}-rucio-restart
10+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
1111
namespace: {{ .Release.Namespace }}
1212
subjects:
1313
- kind: ServiceAccount
14-
name: {{ .Release.Name }}-rucio-restart
14+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
1515
namespace: {{ .Release.Namespace }}
1616
roleRef:
1717
kind: ClusterRole

rucio/charts/rucio-daemons/templates/automatic-restart-cronjob.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
apiVersion: {{ template "rucio.kubeApiVersion.cronjob" . }}
33
kind: CronJob
44
metadata:
5-
name: {{ .Release.Name }}-automatic-restart
5+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-automatic-restart
66
spec:
77
schedule: "{{ .Values.automaticRestart.schedule }}"
88
jobTemplate:
99
spec:
1010
template:
1111
spec:
12-
serviceAccountName: {{ .Release.Name }}-rucio-restart
12+
serviceAccountName: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
1313
containers:
1414
- name: restart-pods
1515
image: "{{ .Values.automaticRestart.image.repository }}:{{ .Values.automaticRestart.image.tag }}"

rucio/charts/rucio-server/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rucio-server
2-
version: 36.0.0
2+
version: 36.0.1
33
apiVersion: v1
44
description: A Helm chart to deploy servers for Rucio
55
keywords:

rucio/charts/rucio-server/templates/automatic-restart-account.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
apiVersion: v1
33
kind: ServiceAccount
44
metadata:
5-
name: {{ .Release.Name }}-rucio-restart
5+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
66
---
77
kind: RoleBinding
88
apiVersion: rbac.authorization.k8s.io/v1
99
metadata:
10-
name: {{ .Release.Name }}-rucio-restart
10+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
1111
namespace: {{ .Release.Namespace }}
1212
subjects:
1313
- kind: ServiceAccount
14-
name: {{ .Release.Name }}-rucio-restart
14+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
1515
namespace: {{ .Release.Namespace }}
1616
roleRef:
1717
kind: ClusterRole

rucio/charts/rucio-server/templates/automatic-restart-cronjob.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
apiVersion: {{ template "rucio.kubeApiVersion.cronjob" . }}
33
kind: CronJob
44
metadata:
5-
name: {{ .Release.Name }}-automatic-restart
5+
name: {{ .Release.Name }}-{{ template "rucio.name" . }}-automatic-restart
66
spec:
77
schedule: "{{ .Values.automaticRestart.schedule }}"
88
jobTemplate:
99
spec:
1010
template:
1111
spec:
12-
serviceAccountName: {{ .Release.Name }}-rucio-restart
12+
serviceAccountName: {{ .Release.Name }}-{{ template "rucio.name" . }}-rucio-restart
1313
containers:
1414
- name: restart-pods
1515
image: "{{ .Values.automaticRestart.image.repository }}:{{ .Values.automaticRestart.image.tag }}"

0 commit comments

Comments
 (0)