2022年2月10日木曜日

Microk8sでGlusterFSの永続ストレージを使用するApache Httpdをデプロイする

Microk8sでGlusterFSの永続ストレージを使用するApache Httpdをデプロイするには、以下の手順を実行します。

実行手順

1. Microk8sをインストールしたホスト上でのGlusterfs準備
※GlusterFSクラスターは事前に準備しておきます。

※Microk8sホスト内の/etc/hostsにエントリを追加
echo 'xxx.xxx.xxx.xxx glusternode1' | sudo tee -a /etc/hosts
echo 'xxx.xxx.xxx.xxx glusternode2' | sudo tee -a /etc/hosts
echo 'xxx.xxx.xxx.xxx glusternode3' | sudo tee -a /etc/hosts
IPアドレスとホスト名は適宜変更してください。

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

2. テスト用ページの作成
Glusterfsサーバーのホストにテスト用ページを作成します。
echo '<html><head><title>sample</title></head><body>contents on GlusterFS server.</body></html>' | sudo tee /glusterfs/index.html
※パスなどは適宜変更してください

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

microk8s kubectl apply -f ./glusterfs-endpoints.yml

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

microk8s kubectl apply -f ./glusterfs-httpd-pv.yml

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

microk8s kubectl apply -f ./glusterfs-httpd-pvc.yml

6. Deploymentの作成
以下のコマンドを実行してDeploymentを作成します。
cat << EOF > glusterfs-httpd-deployment.yml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: httpd-deployment
  labels:
    app: myhttpd
spec:
  replicas: 1
  selector:
    matchLabels:
      app: myhttpd
  template:
    metadata:
      labels:
        app: myhttpd
    spec:
      containers:
      - name: myhttpd
        image: httpd:2.4-alpine
        ports:
        - containerPort: 80
        volumeMounts:
        - name: documentroot
          mountPath: /usr/local/apache2/htdocs
      volumes:
      - name: documentroot
        persistentVolumeClaim:
          claimName: glusterfs-httpd-pvc
EOF

microk8s kubectl apply -f ./glusterfs-httpd-deployment.yml

7. サービスの作成
以下のコマンドを実行してサービスを作成します。
cat << EOF > httpd-service.yml
apiVersion: v1
kind: Service
metadata:
  name: httpd-service
spec:
  selector:
    app: myhttpd
  type: LoadBalancer
  externalIPs:
  - xxx.xxx.xxx.xxx # 外部からアクセスできるMicrok8sをインストールしたホストのIPを設定します。
  ports:
  - protocol: TCP
    port: 8080
    targetPort: 80
EOF

microk8s kubectl apply -f ./httpd-service.yml

ブラウザからhttp://<ホスト名:8080/ にアクセスします

0 件のコメント:

コメントを投稿