Differences between revisions 1 and 18 (spanning 17 versions)
Revision 1 as of 2019-03-13 19:52:28
Size: 237
Editor: PieterSmit
Comment:
Revision 18 as of 2019-10-07 23:34:20
Size: 2151
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from Kubernetes/helm
## page was renamed from kubernetes/helm
Line 2: Line 4:
 Links:  Links: [[Azure/Kubernetes]] , [[k8s/Monitoring]]



== Install 2019-03 ==
 * Ran official curl, and get_helm, all fine
 * When deploying chart got an error, tiller not allowed to create namespaces.
 * Fixed with command belown and helm init --upgrade {{{{{
kubectl create serviceaccount --namespace kube-system tiller
 # serviceaccount "tiller" created

kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
 # clusterrolebinding "tiller-cluster-rule" created

kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'
 # deployment "tiller-deploy" patched

}}}}}

== 201903 add ingress and static ip ==
 
 1. Get k8s nodeResourceGroup grom gui or with {{{
az aks show --resource-group <rgK8S> --name <clusterName> --query nodeResourceGroup -o tsv
}}}
 1. provision static ip with {{{
az network public-ip create --resource-group <MC_K8S_from_above> --name <cluster-PublicIP> --allocation-method static
}}}
 1. assign ip to nginx ingress controller {{{
helm install stable/nginx-ingress -namespace kube-system --set controller.service.loadBalancerIP="52.23.23.32" --set controller.replicaCount=2
}}}

== Run 2019-02 ==
Line 4: Line 37:
Line 5: Line 39:
Line 6: Line 41:

 * helm status p1
 * helm history p1
 * helm rollback p1 3; roll back to version 3

 * helm rollback; to last successfully DEPLOYED revision

 * helm upgrade --debug --dry-run
 * helm upgrade --install


=== Tricks ===
 * Use checksum of config map to change app annotation and force a new version to be deployed for apps that do not pick up new configs.
   * https://helm.sh/docs/developing_charts/#hooks
   * https://youtu.be/WugC_mbbiWU?t=1043
 * hooks {{{
annotation:
  "helm.sh/hook": " "

}}}
----
CategoryK8sKubernetes

Kubernetes helm chart notes

Install 2019-03

  • Ran official curl, and get_helm, all fine
  • When deploying chart got an error, tiller not allowed to create namespaces.
  • Fixed with command belown and helm init --upgrade

    kubectl create serviceaccount --namespace kube-system tiller
     # serviceaccount "tiller" created
    
    kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
     # clusterrolebinding "tiller-cluster-rule" created
    
    kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}' 
     # deployment "tiller-deploy" patched

201903 add ingress and static ip

  1. Get k8s nodeResourceGroup grom gui or with

    az aks show --resource-group <rgK8S> --name <clusterName> --query nodeResourceGroup -o tsv
  2. provision static ip with

    az network public-ip create --resource-group <MC_K8S_from_above> --name <cluster-PublicIP> --allocation-method static
  3. assign ip to nginx ingress controller

    helm install stable/nginx-ingress  -namespace kube-system  --set controller.service.loadBalancerIP="52.23.23.32"  --set controller.replicaCount=2

Run 2019-02

  • helm install --name p1 git/helmchart/ --namespace piet --set "env=DEV" --timeout 600
  • Run: helm ls --all p1; to check the status of the release
  • run: helm del --purge p1; to delete it
  • helm status p1
  • helm history p1
  • helm rollback p1 3; roll back to version 3
  • helm rollback; to last successfully DEPLOYED revision
  • helm upgrade --debug --dry-run
  • helm upgrade --install

Tricks


CategoryK8sKubernetes

k8s/helm (last edited 2022-08-02 02:27:36 by PieterSmit)