File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
pkg/operator/clusterlink/agent Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 46
46
- mountPath : /etc/clusterlink/kubeconfig
47
47
name : proxy-config
48
48
readOnly : true
49
+ - mountPath : /run/xtables.lock
50
+ name : iptableslock
51
+ readOnly : false
52
+ - mountPath : /lib/modules
53
+ name : lib-modules
54
+ readOnly : true
49
55
terminationGracePeriodSeconds : 30
50
56
securityContext :
51
57
privileged : true
55
61
configMap :
56
62
defaultMode : 420
57
63
name : proxy-config
64
+ - hostPath :
65
+ path : /run/xtables.lock
66
+ type : FileOrCreate
67
+ name : iptableslock
68
+ - name : lib-modules
69
+ hostPath :
70
+ path : /lib/modules
71
+
72
+
Original file line number Diff line number Diff line change @@ -56,13 +56,25 @@ spec:
56
56
- mountPath: /etc/clusterlink
57
57
name: proxy-config
58
58
readOnly: true
59
+ - mountPath: /run/xtables.lock
60
+ name: iptableslock
61
+ readOnly: false
62
+ - mountPath: /lib/modules
63
+ name: lib-modules
64
+ readOnly: true
59
65
terminationGracePeriodSeconds: 30
60
66
hostNetwork: true
61
67
volumes:
62
68
- name: proxy-config
63
69
secret:
64
70
secretName: {{ .ProxyConfigMapName }}
65
-
71
+ - hostPath:
72
+ path: /run/xtables.lock
73
+ type: FileOrCreate
74
+ name: iptableslock
75
+ - name: lib-modules
76
+ hostPath:
77
+ path: /lib/modules
66
78
`
67
79
68
80
// DaemonSetReplace is a struct to help to concrete
You can’t perform that action at this time.
0 commit comments