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 to Broker #401

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions wiz-broker/templates/wiz-broker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ metadata:
labels:
{{- include "wiz-broker.labels" . | nindent 4 }}
spec:
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
replicas: 1
selector:
matchLabels:
Expand Down
2 changes: 2 additions & 0 deletions wiz-broker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ mtls:
rollmeAnnotation:
enabled: true

priorityClassName: ""

wizConnector:
# Specifies whether a connector secret should be created
# If createSecret is false you need to:
Expand Down
2 changes: 2 additions & 0 deletions wiz-kubernetes-connector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ wiz-broker:

wizConnector:
createSecret: false # Secret created by wiz-kubernetes-connector.

priorityClassName: ""

resources:
# We usually recommend not to specify default resources and to leave this as a conscious
Expand Down