Difference between revisions of "Install Zammad on K3S"

From Bitbull Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
kubectl create namespace zammad
+
kubectl create namespace zammad
 
  kubectl config set-context --current --namespace=zammad
 
  kubectl config set-context --current --namespace=zammad
 
  helm repo add zammad https://zammad.github.io/zammad-helm
 
  helm repo add zammad https://zammad.github.io/zammad-helm
Line 7: Line 7:
 
  kubectl get all
 
  kubectl get all
  
  kubectl create ingress ingress-www --rule=help.app.bitbull.ch/*=zammad-nginx:8080
+
  kubectl create ingress ingress-www --rule=help.domain.tld/*=zammad-nginx:8080
  
 
[[Category:Helm]]
 
[[Category:Helm]]
 
[[Category:K3S]]
 
[[Category:K3S]]
 
[[Category:OpenShift & K8S]]
 
[[Category:OpenShift & K8S]]

Latest revision as of 08:56, 30 November 2024

kubectl create namespace zammad

kubectl config set-context --current --namespace=zammad
helm repo add zammad https://zammad.github.io/zammad-helm
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml # for K3S
helm upgrade --install zammad zammad/zammad --namespace zammad
kubectl get all
kubectl create ingress ingress-www --rule=help.domain.tld/*=zammad-nginx:8080