Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

Commit d47a639

Browse files
authored
Merge pull request #22 from mengjiao-liu/add-deploy-doc
Add deployment documentation
2 parents 99c9376 + 856784e commit d47a639

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

docs/deployment-guide.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Deploying Container Object Storage Interface CSI Adapter On Kubernetes
2+
3+
This document describes steps for Kubernetes administrators to setup Container Object Storage Interface (COSI) CSI Adapter onto a Kubernetes cluster.
4+
5+
COSI CSI Adapter can be setup using the [kustomization file](https://github.com/kubernetes-sigs/container-object-storage-interface-csi-adapter/blob/master/kustomization.yaml) from the [container-object-storage-interface-csi-adapter](https://github.com/kubernetes-sigs/container-object-storage-interface-csi-adapter) repository with following command:
6+
7+
```sh
8+
kubectl create -k github.com/kubernetes-sigs/container-object-storage-interface-csi-adapter
9+
```
10+
The output should look like the following:
11+
```sh
12+
storageclass.storage.k8s.io/objectstorage.k8s.io created
13+
serviceaccount/objectstorage-csi-adapter-sa created
14+
role.rbac.authorization.k8s.io/objectstorage-csi-adapter created
15+
clusterrole.rbac.authorization.k8s.io/objectstorage-csi-adapter-role created
16+
rolebinding.rbac.authorization.k8s.io/objectstorage-csi-adapter created
17+
clusterrolebinding.rbac.authorization.k8s.io/objectstorage-csi-adapter created
18+
secret/objectstorage.k8s.io created
19+
daemonset.apps/objectstorage-csi-adapter created
20+
csidriver.storage.k8s.io/objectstorage.k8s.io created
21+
```
22+
23+
The CSI Adapter will be deployed in the `default` namespace.
24+

0 commit comments

Comments
 (0)