From 320a72f16af59d987ba5b634a0ed32ab2f5a18dc Mon Sep 17 00:00:00 2001 From: LiZhenCheng9527 Date: Mon, 29 Jan 2024 19:35:29 +0800 Subject: [PATCH] add install cert-manager and fluxcd Signed-off-by: LiZhenCheng9527 --- hack/e2e-test/install.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/hack/e2e-test/install.sh b/hack/e2e-test/install.sh index 387da4782..8e2bec1cb 100755 --- a/hack/e2e-test/install.sh +++ b/hack/e2e-test/install.sh @@ -17,6 +17,23 @@ VERSION=${VERSION} make docker kind load docker-image ghcr.io/kurator-dev/cluster-operator:${VERSION} --name kurator-host kind load docker-image ghcr.io/kurator-dev/fleet-manager:${VERSION} --name kurator-host +helm repo add jetstack https://charts.jetstack.io +helm repo update +kubectl create namespace cert-manager +helm install -n cert-manager cert-manager jetstack/cert-manager --set installCRDs=true + +helm repo add fluxcd-community https://fluxcd-community.github.io/helm-charts +cat <