You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Directory trees like `testdata/project/config/default` aren't listed, breaking links in the book. Workaround this by using the github URLs for the paths. There's going to be a better way, but at least the links will work.
[Kustomize](https://sigs.k8s.io/kustomize) YAML definitions required to
35
35
launch our controller on a cluster, but once we get started writing our
36
36
controller, it'll also hold our CustomResourceDefinitions, RBAC
37
37
configuration, and WebhookConfigurations.
38
38
39
-
[`config/default`](testdata/project/config/default) contains a [Kustomize base](../TODO.md) for launching
39
+
[`config/default`](https://github.com/kubernetes-sigs/kubebuilder/tree/master/docs/book/src/cronjob-tutorial/testdata/project/config/default) contains a [Kustomize base](https://github.com/kubernetes-sigs/kubebuilder/blob/master/docs/book/src/cronjob-tutorial/testdata/project/config/default/kustomization.yaml) for launching
40
40
the controller in a standard configuration.
41
41
42
42
Each other directory contains a different piece of configuration,
43
43
refactored out into its own base:
44
44
45
-
-[`config/manager`](testdata/project/config/manager): launch your controllers as pods in the
45
+
-[`config/manager`](https://github.com/kubernetes-sigs/kubebuilder/tree/master/docs/book/src/cronjob-tutorial/testdata/project/config/manager): launch your controllers as pods in the
46
46
cluster
47
47
48
-
-[`config/rbac`](testdata/project/config/rbac): permissions required to run your
48
+
-[`config/rbac`](https://github.com/kubernetes-sigs/kubebuilder/tree/master/docs/book/src/cronjob-tutorial/testdata/project/config/rbac): permissions required to run your
0 commit comments