This chart bootstraps a Postee deployment on a Kubernetes cluster using the Helm package manager.
- Kubernetes 1.17+
- Helm 3+
cd deploy/helm
helm install my-postee -n postee --dry-run --set-file applicationConfigPath="../../cfg.yaml" ./posteecd deploy/helm
helm install app --create-namespace -n postee ./posteeLet's add the Helm chart and deploy Postee executing:
helm repo add aquasecurity https://aquasecurity.github.io/helm-charts/
helm repo update
helm search repo postee
helm install app --create-namespace -n postee aquasecurity/posteeCheck that all the pods are in Running state:
kubectl get pods -n postee
We check the logs:
kubectl logs deployment/my-posteeui -n postee | head
kubectl logs statefulsets/my-postee -n postee | head
helm -n postee delete my-postee