@@ -66,9 +66,9 @@ extend Kubernetes with new custom resources.
66
66
controller.** The controller is the software that reacts when a user calls the
67
67
custom resource API.
68
68
69
- Say you want your control plane to serve an ` Application ` custom resource API.
70
- When someone creates an ` Application ` , the control plane should create a
71
- Kubernetes ` Deployment ` and a ` Service ` .
69
+ Say you want your control plane to serve an ` App ` custom resource API. When
70
+ someone creates an ` App ` , the control plane should create a Kubernetes
71
+ ` Deployment ` and a ` Service ` .
72
72
73
73
** If there's not already a controller that does what you want - and exposes the
74
74
API you want - you have to write the controller yourself.**
@@ -78,8 +78,8 @@ flowchart TD
78
78
user(User)
79
79
80
80
subgraph control [Control Plane]
81
- api(Application API)
82
- controller[Your Application Controller]
81
+ api(App API)
82
+ controller[Your App Controller]
83
83
deployment(Deployment API)
84
84
service(Service API)
85
85
end
@@ -101,7 +101,7 @@ flowchart TD
101
101
user(User)
102
102
103
103
subgraph control [Control Plane]
104
- api(Application API)
104
+ api(App API)
105
105
106
106
subgraph crossplane [Composition Engine]
107
107
fn(Python Function)
@@ -181,7 +181,7 @@ flowchart TD
181
181
user(User)
182
182
183
183
subgraph control [Control Plane]
184
- api(Application API)
184
+ api(App API)
185
185
186
186
subgraph crossplane [Composition Engine]
187
187
fn(Python Function)
0 commit comments