2022年3月2日水曜日

MinikubeでGlusterFS上の永続ボリュームを使用するCouchDBをデプロイする

MinikubeでGlusterFS上の永続ボリュームを使用するCouchDBをデプロイするには、以下の手順を実行します。

実行手順

1. MinikubeでのGlusterfs準備
※GlusterFSクラスターは事前に準備しておきます。

※minikube内の/etc/hostsにエントリを追加するためのファイルにエントリ追加
mkdir -p ~/.minikube/files/etc
echo 'xxx.xxx.xxx.xxx glusternode1' >> ~/.minikube/files/etc/hosts
echo 'xxx.xxx.xxx.xxx glusternode2' >> ~/.minikube/files/etc/hosts
echo 'xxx.xxx.xxx.xxx glusternode3' >> ~/.minikube/files/etc/hosts
IPアドレスとホスト名は適宜変更してください。

※minikube内にglusterfs-clientをインストールする
minikube ssh

sudo apt-get update && sudo apt-get install -y glusterfs-client

exit

3. Endpointsの作成
以下のIPアドレスを適宜変更して、Endpointsを作成します。
cat << EOF > glusterfs-endpoints.yml
apiVersion: v1
kind: Endpoints
metadata:
  name: glusterfs-cluster
subsets:
- addresses:
  - ip: xxx.xxx.xxx.xxx
  ports:
  - port: 1
- addresses:
  - ip: xxx.xxx.xxx.xxx
  ports:
  - port: 1
- addresses:
  - ip: xxx.xxx.xxx.xxx
  ports:
  - port: 1
EOF

kubectl apply -f ./glusterfs-endpoints.yml

4. 永続ボリュームの作成
以下のGlusterFSボリューム名(myvolumeの部分)を変更して、永続ボリュームを作成します。
cat << EOF > glusterfs-couchdb-pv.yml
apiVersion: v1
kind: PersistentVolume
metadata:
  name: glusterfs-couchdb-pv
spec:
  capacity:
    storage: 5Gi
  accessModes:
    - ReadWriteOnce
  glusterfs:
    endpoints: glusterfs-cluster
    path: myvolume
    readOnly: false
EOF

kubectl apply -f ./glusterfs-couchdb-pv.yml

5. 永続ボリューム要求の作成
以下のコマンドを実行して、永続ボリューム要求を作成します。
cat << EOF > glusterfs-couchdb-pvc.yml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: glusterfs-couchdb-pvc
spec:
  accessModes:
    - ReadWriteOnce
  storageClassName: ""
  resources:
    requests:
      storage: 5Gi
  volumeName: glusterfs-couchdb-pv
EOF

kubectl apply -f ./glusterfs-couchdb-pvc.yml

4. Deploymentの作成
以下のコマンドでCouchDBのイメージと作成したNFS上の永続ボリュームを使用するDeploymentを作成します。
cat << EOF > couchdb-deployment.yml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: couchdb-deployment
  labels:
    app: mycouchdb
spec:
  replicas: 1
  selector:
    matchLabels:
      app: mycouchdb
  strategy:
    type: Recreate
  template:
    metadata:
      labels:
        app: mycouchdb
    spec:
      containers:
      - name: mycouchdb
        image: couchdb:3.2
        env:
        - name: COUCHDB_USER
          value: admin
        - name: COUCHDB_PASSWORD
          value: mycouchdb
        ports:
        - containerPort: 5984
        volumeMounts:
        - name: couchdb-data
          mountPath: /opt/couchdb/data
      volumes:
      - name: couchdb-data
        persistentVolumeClaim:
          claimName: glusterfs-couchdb-pvc
EOF

kubectl apply -f ./couchdb-deployment.yml

5. サービスの作成
以下のコマンドでサービスを作成します。
cat << EOF > couchdb-service.yml
apiVersion: v1
kind: Service
metadata:
  name: couchdb-service
spec:
  selector:
    app: mycouchdb
  ports:
  - protocol: TCP
    port: 5984
    targetPort: 5984
EOF

kubectl apply -f ./couchdb-service.yml

6. Port-Fowardingで外部からアクセスできるようにする
kubectl port-forward --address 0.0.0.0 service/couchdb-service 5984:5984

ブラウザからhttp://<サーバ名またはIPアドレス:5984/_utils/index.htmlにアクセスします。
ユーザ名admin、パスワードmycouchdbでログインします。

0 件のコメント:

コメントを投稿