minio: expand decommission pools in argocd

expand the tenant (tenant.pools.size) in minio

1.install tenant from appofapps, pool name: pool-0

2.to expand tenant, add pool-1 into application yaml of tenant,check into git repo;

expand pools were OK. tenant: it worked.

3.If want to decommission pools, run the following commands.

#create and login a minio client pod in k8s

kubectl run minioclient -i -t --image=minio/mc --command -- /bin/sh -c 'echo hello;sleep 3600'

kubectl exec -i -t -n default minioclient -c minioclient -- sh

Note that the following commands need to be run in the pod of k8s.

#minio config

mc alias set dev4 http://minio.tenant.svc.cluster.local:80 minio minio123 --api s3v4

  1. #check the pools status

mc admin decommission status dev4

#decommission pool (it will automatically migrate data.)

mc admin decommission start dev4 http://myminio-pool-1-{0...3}.myminio-hl.tenant.svc.cluster.local/export{0...3}/data

  1. delete pool-1 in tenant application yaml, check into git repo;

tenant: it worked. ( pool-0 )

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: tenant
  namespace: argocd
  finalizers:
  - resources-finalizer.argocd.argoproj.io
spec:
  project: default
  source:
    repoURL: 'https://operator.min.io/'
    targetRevision: 5.0.6
    helm:
      parameters:
        - name: 'tenant.pools[0].storageClassName'
          value: cinder
        - name: 'tenant.pools[0].name'
          value: 'pool-0'
        - name: 'tenant.pools[0].servers'
          value: '4'
        - name: 'tenant.pools[0].size'
          value: 4Gi
        - name: 'tenant.pools[0].volumesPerServer'
          value: '4'
#       - name: 'tenant.pools[1].storageClassName'
#         value: cinder
#       - name: 'tenant.pools[1].name'
#         value: 'pool-1'
#       - name: 'tenant.pools[1].servers'
#         value: '4'
#       - name: 'tenant.pools[1].size'
#         value: 6Gi
#       - name: 'tenant.pools[1].volumesPerServer'
#         value: '4'
        - name: tenant.certificate.requestAutoCert
          value: 'false'
        - name: 'tenant.buckets[0].name'
          value: 'artifacts'
        - name: 'tenant.buckets[1].name'
          value: 'test'
    chart: tenant
  destination:
    server: 'https://kubernetes.default.svc'
    namespace: tenant
  syncPolicy:
    automated: {}
    syncOptions:
      - CreateNamespace=true
相关推荐
solinger2 个月前
ngrok forward本地argocd并设置为github repo webhook
argocd
solinger2 个月前
macos安装ArgoCD
argocd
The Straggling Crow3 个月前
GitOps Tekton+ArgoCD
java·argocd·tekton
努力做一名技术5 个月前
下一代 CI/CD:利用 Tekton 和 ArgoCD 实现云原生自动化
ci/cd·argocd·tekton
Apex Predator7 个月前
argocd部署
argocd
野心与梦9 个月前
26.云原生ArgoCD高级之ApplicationSet
云原生·argocd
野心与梦9 个月前
24.云原生ArgoCD高级之数据加密seale sealed
云原生·argocd
野心与梦9 个月前
25.云原生之ArgoCD-app of apps模式
云原生·argocd
野心与梦9 个月前
24.云原生之ArgoCD钩子
云原生·argocd