Skip to content

Commit

Permalink
readme: Use verify=false for the one-liner
Browse files Browse the repository at this point in the history
Don't verify when applying, due to temporary issue with KFP manifests:
kubeflow#2133

Signed-off-by: Kimonas Sotirchos <kimwnasptd@arrikto.com>
  • Loading branch information
kimwnasptd committed Feb 15, 2022
1 parent 5b9e660 commit 2d3d3fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ The `example` directory contains an example kustomization for the single command
You can install all Kubeflow official components (residing under `apps`) and all common services (residing under `common`) using the following command:

```sh
while ! kustomize build example | kubectl apply -f -; do echo "Retrying to apply resources"; sleep 10; done
while ! kustomize build example | kubectl apply -f - --validate=false; do echo "Retrying to apply resources"; sleep 10; done
```

Once, everything is installed successfully, you can access the Kubeflow Central Dashboard [by logging in to your cluster](#connect-to-your-kubeflow-cluster).
Expand Down

0 comments on commit 2d3d3fa

Please sign in to comment.