https://linen.dev logo
Join Slack
Powered by
# tool-helm
  • e

    eager-electrician-97708

    10/04/2019, 2:16 PM
    Napomene vezane za Helm v3...
  • e

    eager-electrician-97708

    10/04/2019, 2:17 PM
    Helm 3 has no
    helm init
    command anymore, but you do need to add some repository initially:
    Copy code
    helm repo add stable <https://kubernetes-charts.storage.googleapis.com>
  • e

    eager-electrician-97708

    10/04/2019, 2:17 PM
    In the near future, Helm Hub (https://helm.sh/blog/intro-helm-hub/) is intended to replace "stable" (https://github.com/helm/charts) charts repository.
  • e

    eager-electrician-97708

    10/04/2019, 2:18 PM
    With Helm 3, the decision was made to include
    --purge
    by default when running
    helm uninstall
  • e

    eager-electrician-97708

    10/04/2019, 2:19 PM
    In Helm 3, Helm no longer creates non-existent namespaces when installing charts, so we need to do that separately:
    kubectl create namespace <name>