Install WordPress in Kubernetes

To install WordPress in Kubernetes, you need to install helm package manager. Now run helm install stable/wordpress After the helm chart is run, you will get commands to get login for WordPress admin area. Here is services it create boby@sok-01:~$ kubectl get service NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.39.240.1 443/TCP 34m whopping-labradoodle-mariadb … Read more

Helm Kubernetes Package Manager

Helm is Package Manager for Kubernetes. Helm packages are called “Charts”. Charts allow you to deploy various software on Kubernetes cluster. https://helm.sh/ To install helm, run curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh bash get_helm.sh If you are on Ubuntu, you can install from snap snap install helm –classic To update helm repos, run helm repo update To … Read more