diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2020-12-07 15:17:04 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2020-12-07 15:17:04 +0100 |
commit | 1fb49d8220cad74d7221863754c919e3195a3d37 (patch) | |
tree | 16e87e9817cf9378188d327f63602546b6cd3809 /docs/samples/remote_storage/lsdf/lsdf-ips.yml | |
parent | 0b972f0816408fc696e75fd55de5cd160d6d7ccc (diff) | |
download | ands-1fb49d8220cad74d7221863754c919e3195a3d37.tar.gz ands-1fb49d8220cad74d7221863754c919e3195a3d37.tar.bz2 ands-1fb49d8220cad74d7221863754c919e3195a3d37.tar.xz ands-1fb49d8220cad74d7221863754c919e3195a3d37.zip |
A bit of troubleshooting docs and more LSDF samples
Diffstat (limited to 'docs/samples/remote_storage/lsdf/lsdf-ips.yml')
-rw-r--r-- | docs/samples/remote_storage/lsdf/lsdf-ips.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/samples/remote_storage/lsdf/lsdf-ips.yml b/docs/samples/remote_storage/lsdf/lsdf-ips.yml new file mode 100644 index 0000000..c091870 --- /dev/null +++ b/docs/samples/remote_storage/lsdf/lsdf-ips.yml @@ -0,0 +1,38 @@ +apiVersion: v1 +kind: Template +metadata: + name: lsdf + annotations: + descriptions: "LSDF volumes" +objects: + - apiVersion: v1 + kind: Secret + metadata: + name: lsdf-csa + type: openshift.io/cifs + stringData: + username: "gf6501" + password: "<put_the_password_here>" + - apiVersion: v1 + kind: PersistentVolume + metadata: + name: lsdf-ips + spec: + persistentVolumeReclaimPolicy: Retain + accessModes: + - ReadWriteMany + capacity: + storage: 100Ti + claimRef: + name: lsdf-ips + namespace: test + flexVolume: + driver: openshift.io/cifs + fsType: cifs + secretRef: + name: lsdf-csa + options: + networkPath: "//os.lsdf.kit.edu/ips-projects" + mountOptions: "vers=2.0,domain=os.lsdf.kit.edu,file_mode=0664,dir_mode=0775" + +
\ No newline at end of file |