Skip to content

Commit 80be704

Browse files
committed
fix(orc): some fixes
1 parent c86bd35 commit 80be704

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

charts/orc/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A Helm chart for https://github.com/k-orc/openstack-resource-contro
44
type: application
55
appVersion: 2.2.0
66
kubeVersion: ">=1.29.0-0"
7-
version: 0.1.6
7+
version: 0.1.7
88
maintainers:
99
- name: Wiremind
1010
url: https://github.com/wiremind/wiremind-helm-charts

charts/orc/templates/clusterrole.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ rules:
5050
apiVersion: rbac.authorization.k8s.io/v1
5151
kind: ClusterRole
5252
metadata:
53+
labels:
54+
{{ include "orc.labels" . | indent 4 }}
5355
name: {{ include "orc.name" . }}-manager-role
5456
rules:
5557
- apiGroups:
@@ -105,6 +107,8 @@ rules:
105107
apiVersion: rbac.authorization.k8s.io/v1
106108
kind: ClusterRole
107109
metadata:
110+
labels:
111+
{{ include "orc.labels" . | indent 4 }}
108112
name: {{ include "orc.name" . }}-metrics-auth-role
109113
rules:
110114
- apiGroups:

charts/orc/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ spec:
8181
{{- toYaml . | nindent 8 }}
8282
{{- end }}
8383
serviceAccountName: {{ include "orc.name" . }}-controller-manager
84-
terminationGracePeriodSeconds: 10
84+
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
8585
{{- with .Values.updateStrategy }}
8686
strategy:
8787
{{- toYaml . | nindent 4 }}

charts/orc/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ updateStrategy:
99
rollingUpdate:
1010
maxUnavailable: 1
1111

12+
terminationGracePeriodSeconds: 10
13+
1214
priorityClassName: system-cluster-critical
1315

1416
# nodeSelector: {}

0 commit comments

Comments
 (0)