From 3e364663c9fb15981109302421079e067a93e8af Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Fri, 10 May 2024 14:19:02 +0100 Subject: [PATCH] Update CRDs installation outside of Helm chart Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- chart/openfaas/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/chart/openfaas/README.md b/chart/openfaas/README.md index e97b553cd..3fa0ab9cd 100644 --- a/chart/openfaas/README.md +++ b/chart/openfaas/README.md @@ -168,10 +168,8 @@ If you only have administrative access, you can split the installation. Your adm Ask your admin team to run the following to install the namespaces and CRDs: ```bash -git clone https://github.com/openfaas/faas-netes/ --depth=1 - -kubectl apply -f ./faas-netes/namespaces.yml -kubectl apply -f ./faas-netes/artifacts/crds/ +kubectl apply -f https://raw.githubusercontent.com/openfaas/faas-netes/master/namespaces.yml +kubectl apply -f https://raw.githubusercontent.com/openfaas/faas-netes/master/artifacts/crds/crds.yaml ``` Now, your application team can install OpenFaaS with a Role instead of a ClusterRole, along with the `skipCRDs` flag.