Files
rke2-single-node/05_base_apps_and_tools/installation_instructions.md
T

955 B

Phase-Secrets-Operator

helm repo add phase https://helm.phase.dev && helm repo update

helm install phase-secrets-operator phase/phase-kubernetes-operator --set image.tag=v1.3.0

kubectl create secret generic phase-service-token
--from-literal=token=
--type=Opaque
--namespace=default

Cert-Manager installieren

1. Repository hinzufügen und updaten

helm repo add jetstack https://charts.jetstack.io && helm repo update

2. Installation mit Gateway API Support

helm install cert-manager jetstack/cert-manager
--namespace cert-manager
--create-namespace
--set installCRDs=true
--set "config.enableGatewayAPI=true"

kubectl apply -f manifests

External DNS installieren

helm repo add external-dns https://kubernetes-sigs.github.io/external-dns/

kubectl create ns external-dns

helm upgrade --install external-dns external-dns/external-dns --namespace external-dns --version 1.19.0 -f external-dns-values.yaml