Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add priorityClassName for rescheduler #2200

Merged
merged 1 commit into from
Apr 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions installer/helm/chart/volcano/templates/admission.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ spec:
app: volcano-admission
spec:
serviceAccount: {{ .Release.Name }}-admission
priorityClassName: system-cluster-critical
{{- if .Values.basic.image_pull_secret }}
imagePullSecrets:
- name: {{ .Values.basic.image_pull_secret }}
Expand Down Expand Up @@ -140,6 +141,7 @@ spec:
template:
spec:
serviceAccountName: {{ .Release.Name }}-admission
priorityClassName: system-cluster-critical
{{- if .Values.basic.image_pull_secret }}
imagePullSecrets:
- name: {{ .Values.basic.image_pull_secret }}
Expand Down
1 change: 1 addition & 0 deletions installer/helm/chart/volcano/templates/controllers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ spec:
app: volcano-controller
spec:
serviceAccount: {{ .Release.Name }}-controllers
priorityClassName: system-cluster-critical
{{- if .Values.basic.image_pull_secret }}
imagePullSecrets:
- name: {{ .Values.basic.image_pull_secret }}
Expand Down
1 change: 1 addition & 0 deletions installer/helm/chart/volcano/templates/scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ spec:
app: volcano-scheduler
spec:
serviceAccount: {{ .Release.Name }}-scheduler
priorityClassName: system-cluster-critical
{{- if .Values.basic.image_pull_secret }}
imagePullSecrets:
- name: {{ .Values.basic.image_pull_secret }}
Expand Down
4 changes: 4 additions & 0 deletions installer/volcano-development-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ spec:
app: volcano-admission
spec:
serviceAccount: volcano-admission
priorityClassName: system-cluster-critical
containers:
- args:
- --tls-cert-file=/admission.local.config/certificates/tls.crt
Expand Down Expand Up @@ -174,6 +175,7 @@ spec:
template:
spec:
serviceAccountName: volcano-admission
priorityClassName: system-cluster-critical
restartPolicy: Never
containers:
- name: main
Expand Down Expand Up @@ -8473,6 +8475,7 @@ spec:
app: volcano-controller
spec:
serviceAccount: volcano-controllers
priorityClassName: system-cluster-critical
containers:
- name: volcano-controllers
image: volcanosh/vc-controller-manager-arm64:latest
Expand Down Expand Up @@ -8625,6 +8628,7 @@ spec:
app: volcano-scheduler
spec:
serviceAccount: volcano-scheduler
priorityClassName: system-cluster-critical
containers:
- name: volcano-scheduler
image: volcanosh/vc-scheduler-arm64:latest
Expand Down
4 changes: 4 additions & 0 deletions installer/volcano-development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ spec:
app: volcano-admission
spec:
serviceAccount: volcano-admission
priorityClassName: system-cluster-critical
containers:
- args:
- --tls-cert-file=/admission.local.config/certificates/tls.crt
Expand Down Expand Up @@ -174,6 +175,7 @@ spec:
template:
spec:
serviceAccountName: volcano-admission
priorityClassName: system-cluster-critical
restartPolicy: Never
containers:
- name: main
Expand Down Expand Up @@ -8473,6 +8475,7 @@ spec:
app: volcano-controller
spec:
serviceAccount: volcano-controllers
priorityClassName: system-cluster-critical
containers:
- name: volcano-controllers
image: volcanosh/vc-controller-manager:latest
Expand Down Expand Up @@ -8625,6 +8628,7 @@ spec:
app: volcano-scheduler
spec:
serviceAccount: volcano-scheduler
priorityClassName: system-cluster-critical
containers:
- name: volcano-scheduler
image: volcanosh/vc-scheduler:latest
Expand Down