mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 02:43:36 +00:00
vendor files
This commit is contained in:
1
vendor/k8s.io/kubernetes/examples/volumes/iscsi/README.md
generated
vendored
Normal file
1
vendor/k8s.io/kubernetes/examples/volumes/iscsi/README.md
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
This file has moved to [https://github.com/kubernetes/examples/blob/master/staging/volumes/iscsi/README.md](https://github.com/kubernetes/examples/blob/master/staging/volumes/iscsi/README.md)
|
15
vendor/k8s.io/kubernetes/examples/volumes/iscsi/chap-secret.yaml
generated
vendored
Normal file
15
vendor/k8s.io/kubernetes/examples/volumes/iscsi/chap-secret.yaml
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: chap-secret
|
||||
type: "kubernetes.io/iscsi-chap"
|
||||
data:
|
||||
discovery.sendtargets.auth.username: dXNlcg==
|
||||
discovery.sendtargets.auth.password: ZGVtbw==
|
||||
discovery.sendtargets.auth.username_in: bXVzZXI=
|
||||
discovery.sendtargets.auth.password_in: bXBhc3M=
|
||||
node.session.auth.username: dXNlcm5hbWU=
|
||||
node.session.auth.password: cGFzc3dvcmQ=
|
||||
node.session.auth.username_in: bXVzZXIy
|
||||
node.session.auth.password_in: bXBhc3My
|
24
vendor/k8s.io/kubernetes/examples/volumes/iscsi/iscsi-chap.yaml
generated
vendored
Normal file
24
vendor/k8s.io/kubernetes/examples/volumes/iscsi/iscsi-chap.yaml
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: iscsipd
|
||||
spec:
|
||||
containers:
|
||||
- name: iscsipd-ro
|
||||
image: kubernetes/pause
|
||||
volumeMounts:
|
||||
- mountPath: "/mnt/iscsipd"
|
||||
name: iscsivol
|
||||
volumes:
|
||||
- name: iscsivol
|
||||
iscsi:
|
||||
targetPortal: 127.0.0.1
|
||||
iqn: iqn.2015-02.example.com:test
|
||||
lun: 0
|
||||
fsType: ext4
|
||||
readOnly: true
|
||||
chapAuthDiscovery: true
|
||||
chapAuthSession: true
|
||||
secretRef:
|
||||
name: chap-secret
|
21
vendor/k8s.io/kubernetes/examples/volumes/iscsi/iscsi.yaml
generated
vendored
Normal file
21
vendor/k8s.io/kubernetes/examples/volumes/iscsi/iscsi.yaml
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: iscsipd
|
||||
spec:
|
||||
containers:
|
||||
- name: iscsipd-rw
|
||||
image: kubernetes/pause
|
||||
volumeMounts:
|
||||
- mountPath: "/mnt/iscsipd"
|
||||
name: iscsipd-rw
|
||||
volumes:
|
||||
- name: iscsipd-rw
|
||||
iscsi:
|
||||
targetPortal: 10.0.2.15:3260
|
||||
portals: ['10.0.2.16:3260', '10.0.2.17:3260']
|
||||
iqn: iqn.2001-04.com.example:storage.kube.sys1.xyz
|
||||
lun: 0
|
||||
fsType: ext4
|
||||
readOnly: true
|
Reference in New Issue
Block a user