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

Map host paths to daemonset pods for IOPS improvements #54

Merged
merged 1 commit into from
Aug 2, 2022
Merged
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
30 changes: 30 additions & 0 deletions deploy/csi-azurelustre-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,16 @@ spec:
name: azurelustre-cache
- mountPath: /dev
name: host-dev
- mountPath: /host/var/log
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why would you need /var/log hostPath mount?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is where logs for Lustre utils go.

name: host-var-log
- mountPath: /usr
name: host-usr
- mountPath: /etc
name: host-etc
- mountPath: /lib
name: host-lib
- mountPath: /sbin
name: host-sbin
resources:
limits:
cpu: 1
Expand Down Expand Up @@ -164,3 +174,23 @@ spec:
path: /dev
type: Directory
name: host-dev
- hostPath:
path: /var/log
type: Directory
name: host-var-log
- hostPath:
path: /usr
type: Directory
name: host-usr
- hostPath:
path: /etc
type: Directory
name: host-etc
- hostPath:
path: /lib
type: Directory
name: host-lib
- hostPath:
path: /sbin
type: Directory
name: host-sbin