본문 바로가기

DEVOPS/KASTEN

(4)
(DK) KASTEN Minio https://docs.min.io/docs/minio-erasure-code-quickstart-guide.html MinIO | Learn more about MinIO's Erasure Code Implementation MinIO Erasure Code Quickstart Guide MinIO protects data against hardware failures and silent data corruption using erasure code and checksums. With the highest level of redundancy, you may lose up to half (N/2) of the total drives and still be able to reco docs.min.io MI..
(DK) KASTEN NFS ### PVC 생성 apiVersion: v1 kind: PersistentVolume metadata: name: test-pv spec: capacity: storage: 10Gi volumeMode: Filesystem accessModes: - ReadWriteMany persistentVolumeReclaimPolicy: Retain storageClassName: nfs mountOptions: - hard - nfsvers=3.0 nfs: path: /volume1/Cloud-Home/08.VEEAM server: 10.253.1.254 --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: test-pvc namespace: kast..
(DK) KASTEN LDAP Integration ## helm을 다운로드 받는다. helm repo add kasten https://charts.kasten.io/ helm repo update helm show values kasten/k10 > k10.yaml 그리고 k10.yaml 파일을 편집한다. ## ldap이라는 부분을 찾은 후 ## 수정이 필요하다. 크게 어려운 부분은 없을 거라고 생각 한다. ldap: enabled: true restartPod: false # Enable this value to force a restart of the authentication service pod dashboardURL: "http://kasten.tkg.io/k10" #The URL for accessing K10's dashboard host..
(DK) KASTEN Install with Tanzu ## helm을 다운로드 받는다. helm repo add kasten https://charts.kasten.io/ helm repo update ### SSL 구성을 위해 SSL 인증서와 Key를 만들어준다 kubectl create secret tls kasten-tls --cert=/data/cert/yourodmain.com.crt --key=/data/cert/yourdomain.com.key -n kasten-io ## Ingress를 사용하는 방식중 Token으로 접속 할 수 있게 구성 한다. helm install k10 kasten/k10 \ --set ingress.create=true \ --set ingress.class=contour \ --set auth.tokenAuth.en..