Helm/MinIO: Difference between revisions
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
==Install== | ==Install== | ||
{| | {| | ||
|valign="top"| | |valign="top"| | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Line 30: | Line 24: | ||
|- | |- | ||
|colspan=" | |colspan="2"| | ||
---- | ---- | ||
|- | |- | ||
| | |valign='top'| | ||
<syntaxhighlight lang="yaml"> | <syntaxhighlight lang="yaml"> | ||
cat <<YML | helm -n minio install minio bitnami/minio --version=14.7.1 -f - | cat <<YML | helm -n minio install minio bitnami/minio --version=14.7.1 -f - | ||
Line 47: | Line 41: | ||
enabled: true | enabled: true | ||
hostname: minio.k8s.local | hostname: minio.k8s.local | ||
statefulset: | |||
drivesPerNode: 4 | |||
replicaCount: 2 | |||
zones: 1 | |||
YML | |||
</syntaxhighlight> | |||
|valign='top'| | |||
<syntaxhighlight lang="yaml"> | |||
cat <<YML | helm -n minio install minio bitnami/minio --version=14.7.1 -f - | |||
--- | |||
global: | |||
defaultStorageClass: standard | |||
mode: distributed | |||
auth: | |||
rootUser: admin | |||
rootPassword: sadaqah! | |||
defaultBuckets: "" | |||
ingress: | |||
enabled: true | |||
hostname: minio.k8s.local | |||
statefulset: | |||
drivesPerNode: 4 | |||
replicaCount: 2 | |||
zones: 1 | |||
YML | YML | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|- | |- | ||
|colspan=" | |colspan="2"| | ||
---- | ---- | ||
|- | |- | ||
Line 65: | Line 84: | ||
sensible-browser http://minio.k8s.local &>/dev/null & | sensible-browser http://minio.k8s.local &>/dev/null & | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} |
Revision as of 03:44, 22 August 2024
helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update && helm repo list
Config
export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/config"
Install
kubectl get ns|grep minio
kubectl delete ns minio
|
kubectl get ns|grep minio
kubectl create ns minio
|
| |
cat <<YML | helm -n minio install minio bitnami/minio --version=14.7.1 -f -
---
global:
defaultStorageClass: standard
mode: standalone
auth:
rootUser: admin
rootPassword: sadaqah!
defaultBuckets: ""
ingress:
enabled: true
hostname: minio.k8s.local
statefulset:
drivesPerNode: 4
replicaCount: 2
zones: 1
YML
|
cat <<YML | helm -n minio install minio bitnami/minio --version=14.7.1 -f -
---
global:
defaultStorageClass: standard
mode: distributed
auth:
rootUser: admin
rootPassword: sadaqah!
defaultBuckets: ""
ingress:
enabled: true
hostname: minio.k8s.local
statefulset:
drivesPerNode: 4
replicaCount: 2
zones: 1
YML
|
| |
xdg-open http://minio.k8s.local &>/dev/null &
gnome-open http://minio.k8s.local &>/dev/null &
|
x-www-browser http://minio.k8s.local &>/dev/null &
sensible-browser http://minio.k8s.local &>/dev/null &
|
Uninstall
helm uninstall -n minio minio
kubectl delete namespace minio
Swiss Knife
kubectl -n minio run -i --tty --rm minio-cli --image=alpine --restart=Never -- sh
apk --update add minio-client inetutils-telnet
echo -n password: ;\
read -s MINIO_SERVER_ROOT_PASSWORD;\
export MINIO_SERVER_ROOT_PASSWORD;\
export MINIO_SERVER_ROOT_USER=admin;\
export MINIO_SERVER_HOST=minio.k8s.local;echo
telnet minio 9000
telnet minio 9001
ping minio.k8s.local
ping host.minikube.internal
mcli ping --count 5 minio
mcli ping --error-count 5 minio
telnet host.minikube.internal 9800
telnet host.minikube.internal 9801
telnet minio.minio.svc.cluster.local 9000
telnet minio.minio.svc.cluster.local 9001
Playground
helm -n minio install minio bitnami/minio --version=14.6.1
helm -n minio upgrade -i minio bitnami/minio --version=14.7.1
helm show values bitnami/minio --version=14.6.1|less
| |
| |
kubectl -n minio get secret minio -o json|jq -r '.data."root-password"'|base64 -d;echo
kubectl -n minio get secret minio -o json|jq -r '.data."root-user"'|base64 -d;echo
kubectl -n minio exec -it svc/minio -c minio -- bash
| |
| |
kubectl config --kubeconfig=${HOME}/.kube/aws-kubeconfig.yaml view --flatten
kubectl config --kubeconfig=${HOME}/.kube/dev-kubeconfig.yaml view --flatten
kubectl config --kubeconfig=${HOME}/.kube/gcp-kubeconfig.yaml view --flatten
kubectl config --kubeconfig=${HOME}/.kube/config view --flatten
| |
| |
kubectl -n minio delete all --all
kubectl -n minio delete ing --all
kubectl -n minio delete sts --all
|
kubectl -n minio delete svc --all
kubectl -n minio delete pvc --all
kubectl -n minio delete pv --all
|
| |
kubectl -n minio rollout history deploy minio
kubectl -n minio rollout restart deploy minio
kubectl -n minio rollout status deploy minio
|
kubectl -n minio exec -it svc/minio -c minio -- mc --help
kubectl -n minio exec -it svc/minio -c minio -- bash
kubectl -n minio logs -f svc/minio -c minio
|
References
| ||
| ||