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

[CLS-57107] Mount containerd.sock for gk3 as well #210

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions charts/s1-agent/templates/agent/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,16 @@ spec:
- name: persistence
mountPath: {{ include "persistentDir" . }}
{{- else }}
- name: containerd
mountPath: /run/containerd/containerd.sock
readOnly: true
- name: crio
mountPath: /run/crio/crio.sock
readOnly: true
- name: dockerd
mountPath: /var/run/cri-dockerd.sock
readOnly: true
{{- end }}
- name: containerd
mountPath: /run/containerd/containerd.sock
readOnly: true
- name: config
mountPath: /opt/configmaps/config
readOnly: true
Expand Down Expand Up @@ -136,16 +136,16 @@ spec:
hostPath:
path: {{ include "persistentDir" . }}
{{- else }}
- name: containerd
hostPath:
path: /run/containerd/containerd.sock
- name: crio
hostPath:
path: /run/crio/crio.sock
- name: dockerd
hostPath:
path: /var/run/cri-dockerd.sock
{{- end }}
- name: containerd
hostPath:
path: /run/containerd/containerd.sock
- name: config
configMap:
name: {{ include "agent.fullname" . }}-config
Expand Down