Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gotoren/rook-ceph-playground
Rook/Ceph cluster manifest.
https://github.com/gotoren/rook-ceph-playground
kubernetes kustomize rook-ceph storage
Last synced: 4 days ago
JSON representation
Rook/Ceph cluster manifest.
- Host: GitHub
- URL: https://github.com/gotoren/rook-ceph-playground
- Owner: GotoRen
- License: mit
- Created: 2023-09-09T14:59:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-09T15:51:38.000Z (over 1 year ago)
- Last Synced: 2024-01-27T17:05:26.933Z (12 months ago)
- Topics: kubernetes, kustomize, rook-ceph, storage
- Homepage: https://www.ren510.dev/blog/baremetal-distributed-storage
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rook-ceph-playground
Kustomize を使用して Rook/Ceph をデプロイする。[参考](https://rook.io/docs/rook/latest/Getting-Started/quickstart/#deploy-the-rook-operator)
**※ 3 ノード以上の ベアメタル Kubernetes クラスタが構築済みであるとします。**
## Requirement
```shell
### kubectl / kustomize コマンドが使用できることを確認
$ kubectl version -o yaml
clientVersion:
buildDate: "2022-10-12T10:57:26Z"
compiler: gc
gitCommit: 434bfd82814af038ad94d62ebe59b133fcb50506
gitTreeState: clean
gitVersion: v1.25.3
goVersion: go1.19.2
major: "1"
minor: "25"
platform: darwin/amd64
kustomizeVersion: v4.5.7
serverVersion:
buildDate: "2022-10-12T10:49:09Z"
compiler: gc
gitCommit: 434bfd82814af038ad94d62ebe59b133fcb50506
gitTreeState: clean
gitVersion: v1.25.3
goVersion: go1.19.2
major: "1"
minor: "25"
platform: linux/amd64
```## Usage
### 1. Rook/Ceph
```shell
$ cd ./rook-ceph### rook-ceph という Namespace を準備する
$ kubectl create namespace rook-ceph### Rook/Ceph のデプロイ
$ kustomize build ./base | kubectl apply -f -### Tool Boxのデプロイ(必要に応じて)
$ kubectl apply -f ./base/toolbox.yaml -n rook-ceph
```### 2. MinIO Operator
```shell
$ cd ./minio/operator### minio-operator という Namespace を準備する
$ kubectl create namespace minio-operator### MinIO Operator のデプロイ
$ kustomize build ./base | kubectl apply -f -
```### 3. MinIO Tenant
```shell
$ cd ./minio/tetant### minio-tenant-sample-bucket-provider という Namespace を準備する
$ kubectl create namespace minio-tenant-sample-bucket-provider### MinIO Tenant のデプロイ
$ kustomize build ./base | kubectl apply -f -
```### パラメタ設定
- [これ](https://techstep.hatenablog.com/entry/2020/02/02/134702) が分かりやすい
```yaml
# ./rook-ceph/base/ceph-cluster.yaml
spec.mon.allowMultiplePerNode: false ## 1 ノードに複数の MON を配置することを許可するかどうか
spec.mgr.allowMultiplePerNode: false ## 1 ノードに複数の MGR を配置することを許可するかどうか
```