Skip to content

Commit 0e37bce

Browse files
authored
Merge pull request kubernetes#88144 from gavinfish/crlf-lf
Change line terminators from CRLF to LF
2 parents 1e84adb + 6e93319 commit 0e37bce

File tree

1 file changed

+46
-46
lines changed

1 file changed

+46
-46
lines changed
Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
1-
kind: Service
2-
apiVersion: v1
3-
metadata:
4-
name: csi-snapshotter
5-
labels:
6-
app: csi-snapshotter
7-
spec:
8-
selector:
9-
app: csi-snapshotter
10-
ports:
11-
- name: dummy
12-
port: 12345
13-
14-
---
15-
kind: StatefulSet
16-
apiVersion: apps/v1
17-
metadata:
18-
name: csi-snapshotter
19-
spec:
20-
serviceName: "csi-snapshotter"
21-
replicas: 1
22-
selector:
23-
matchLabels:
24-
app: csi-snapshotter
25-
template:
26-
metadata:
27-
labels:
28-
app: csi-snapshotter
29-
spec:
30-
serviceAccount: csi-snapshotter
31-
containers:
32-
- name: csi-snapshotter
1+
kind: Service
2+
apiVersion: v1
3+
metadata:
4+
name: csi-snapshotter
5+
labels:
6+
app: csi-snapshotter
7+
spec:
8+
selector:
9+
app: csi-snapshotter
10+
ports:
11+
- name: dummy
12+
port: 12345
13+
14+
---
15+
kind: StatefulSet
16+
apiVersion: apps/v1
17+
metadata:
18+
name: csi-snapshotter
19+
spec:
20+
serviceName: "csi-snapshotter"
21+
replicas: 1
22+
selector:
23+
matchLabels:
24+
app: csi-snapshotter
25+
template:
26+
metadata:
27+
labels:
28+
app: csi-snapshotter
29+
spec:
30+
serviceAccount: csi-snapshotter
31+
containers:
32+
- name: csi-snapshotter
3333
image: quay.io/k8scsi/csi-snapshotter:v2.0.0
34-
args:
35-
- "--v=5"
36-
- "--csi-address=$(ADDRESS)"
37-
env:
38-
- name: ADDRESS
39-
value: /csi/csi.sock
34+
args:
35+
- "--v=5"
36+
- "--csi-address=$(ADDRESS)"
37+
env:
38+
- name: ADDRESS
39+
value: /csi/csi.sock
4040
securityContext:
4141
# This is necessary only for systems with SELinux, where
4242
# non-privileged sidecar containers cannot access unix domain socket
4343
# created by privileged CSI driver container.
4444
privileged: true
45-
volumeMounts:
46-
- name: socket-dir
47-
mountPath: /csi
48-
volumes:
49-
- hostPath:
50-
path: /var/lib/kubelet/plugins/csi-hostpath
51-
type: DirectoryOrCreate
52-
name: socket-dir
45+
volumeMounts:
46+
- name: socket-dir
47+
mountPath: /csi
48+
volumes:
49+
- hostPath:
50+
path: /var/lib/kubelet/plugins/csi-hostpath
51+
type: DirectoryOrCreate
52+
name: socket-dir

0 commit comments

Comments
 (0)