aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2025-02-14 21:46:09 +0100
committerAleksandr Nogikh <nogikh@google.com>2025-02-17 08:56:56 +0000
commit9be4ace34ffed29b36f379311c49249a457dabf3 (patch)
tree21d6edc14e1aa5b3c50f0016fb1abb76e0a11deb
parentcee0e5332a67a82fbade95307599ff448acbe604 (diff)
syz-cluster: update README.md
Use a non-default network plugin for minikube. Reorder the installation steps.
-rw-r--r--syz-cluster/README.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/syz-cluster/README.md b/syz-cluster/README.md
index 9fc152f50..b92476e33 100644
--- a/syz-cluster/README.md
+++ b/syz-cluster/README.md
@@ -2,8 +2,12 @@
1. Install and start minikube: https://minikube.sigs.k8s.io/docs/start/
```
-$ minikube start
+$ minikube start --cni=cilium
```
+
+`--cni=cilium` enables the use of a more advanced Network plugin that supports
+the emulation of network policies.
+
2. Add a Spanner Add-on: https://minikube.sigs.k8s.io/docs/handbook/addons/cloud-spanner/
```
$ minikube addons enable cloud-spanner
@@ -14,10 +18,14 @@ $ make all-containers
```
4. Deploy the cluster:
```
+$ make restart-spanner
$ kubectl create namespace argo
$ minikube kubectl -- kubectl apply -k ./overlays/dev/
$ argo template create workflow/*/workflow-template.yaml
-$ make restart-spanner
+```
+5. (Optional) Pre-fetch the kernel git repository:
+```
+kubectl create job --from=cronjob/kernel-repo-update kernel-repo-update-manual
```
## Developmental tips