-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Increase number of nfs threads
Signed-off-by: Maksim Paskal <[email protected]>
- Loading branch information
1 parent
c440def
commit a3ac949
Showing
3 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,14 +49,10 @@ spec: | |
{{ end }} | ||
containers: | ||
- name: nfs-server | ||
# git clone [email protected]:sjiveson/nfs-server-alpine.git | ||
# cd nfs-server-alpine | ||
# remove --no-nfs-version 2 in nfsd.sh | ||
# docker build . --platform=linux/amd64,linux/arm64 --pull --push -t paskalmaksim/nfs-server-alpine:$(date '+%Y%m%d')$(git rev-parse --short HEAD) | ||
image: paskalmaksim/nfs-server-alpine:20231106ca320f7 | ||
image: {{ printf "%s:%s" .Values.deployments.nfs.server.image.repository .Values.deployments.nfs.server.image.tag }} | ||
imagePullPolicy: {{ .Values.deployments.nfs.server.image.pullPolicy }} | ||
env: | ||
- name: SHARED_DIRECTORY | ||
value: "/exports" | ||
{{ toYaml .Values.deployments.nfs.server.env | indent 8 }} | ||
volumeMounts: | ||
- mountPath: /exports | ||
name: nfs-data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters