Skip to content

Commit

Permalink
bump chart, support priority class
Browse files Browse the repository at this point in the history
Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
  • Loading branch information
travisghansen committed Jul 21, 2023
1 parent d732779 commit 6a4e386
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.4.2

Released 2023-07-21

- bump chart details

# v0.4.1

Released 2023-07-21
Expand Down
4 changes: 2 additions & 2 deletions charts/metallb-node-route-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.1
version: 0.4.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.4.1"
appVersion: "0.4.2"
3 changes: 3 additions & 0 deletions charts/metallb-node-route-agent/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ spec:
labels:
{{- include "metallb-node-route-agent.selectorLabels" . | nindent 8 }}
spec:
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName | quote }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/metallb-node-route-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,16 @@ podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000

# system-node-critical
priorityClassName: ""

securityContext:
capabilities:
drop:
- ALL
add:
- NET_ADMIN
- NET_RAW

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

0 comments on commit 6a4e386

Please sign in to comment.