Skip to content

Commit

Permalink
Bump node-manager to v0.3.1
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Serong <[email protected]>
  • Loading branch information
tserong committed Aug 29, 2024
1 parent 82bf683 commit d838ae8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions charts/harvester-node-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ 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.3.0
version: 0.3.1

# 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: v0.3.0
appVersion: "v0.3.1"

maintainers:
- name: harvester
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ spec:
type: object
spec:
properties:
longhornConfig:
properties:
enableV2DataEngine:
type: boolean
type: object
ntpConfigs:
properties:
ntpServers:
Expand Down
14 changes: 10 additions & 4 deletions charts/harvester-node-manager/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ spec:
securityContext:
privileged: true
volumeMounts:
- mountPath: /sys/kernel/mm/ksm
name: ksm
- mountPath: /sys/kernel/mm
name: mm
readOnly: false
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /host/proc
name: proc
readOnly: true
Expand All @@ -57,9 +60,12 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
- name: ksm
- name: mm
hostPath:
path: /sys/kernel/mm
- name: modules
hostPath:
path: /sys/kernel/mm/ksm
path: /lib/modules
- name: proc
hostPath:
path: /proc
Expand Down
2 changes: 1 addition & 1 deletion charts/harvester-node-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ webhook:
image:
repository: rancher/harvester-node-manager-webhook
pullPolicy: Always
tag: "v0.3.0"
tag: "v0.3.1"

0 comments on commit d838ae8

Please sign in to comment.