@@ -28,24 +28,24 @@ First up, basic infrastructure for building your project:
28
28
29
29
## Launch Configuration
30
30
31
- We also get launch configuration under the
32
- [ ` config/ ` ] ( https://sigs.k8s.io/kubebuilder.io/docs/book/cronjob-tutorial/ testdata/project/config)
31
+ We also get launch configurations under the
32
+ [ ` config/ ` ] ( testdata/project/config )
33
33
directory. Right now, it just contains
34
34
[ 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 ` ] ( ../TODO.md ) contains a [ Kustomize base] ( ../TODO.md ) for launching
39
+ [ ` config/default ` ] ( testdata/project/config/default ) contains a [ Kustomize base] ( ../TODO.md ) 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 ` ] ( ../TODO.md ) : launch your controllers as pods in the
45
+ - [ ` config/manager ` ] ( testdata/project/config/manager ) : launch your controllers as pods in the
46
46
cluster
47
47
48
- - [ ` config/rbac ` ] ( ../TODO.md ) : permissions required to run your
48
+ - [ ` config/rbac ` ] ( testdata/project/config/rbac ) : permissions required to run your
49
49
controllers under their own service account
50
50
51
51
## The Entrypoint
0 commit comments