Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 1.27 KB

portainer.md

File metadata and controls

57 lines (39 loc) · 1.27 KB
title sidebar_position description tags keywords slug
Portainer
3
A collection of resources to learn more about Portainer.
Portainer
Kubernetes
Docker
Containerization
Portainer
Kubernetes
Docker
Containerization
/kubernetes/tools/portainer

Resources

Installation

Via Helm

  • Create a namespace for portainer
kubectl create namespace portainer
  • Add the portainer helm repository
helm repo add portainer https://portainer.github.io/k8s
  • Install the portainer helm chart
helm update
helm install -n portainer portainer portainer/portainer 

To install the business edition, use the following command

helm install --create-namespace -n portainer portainer portainer/portainer \
    --set enterpriseEdition.enabled=true \
    --set tls.force=true
  • To access the portainer dashboard, run the following command
kubectl -n portainer port-forward svc/portainer 9000:9000

Dashboard will be available at http://localhost:9000. Preview

  • For business edition, follow this guide.