Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📖 Fix html tag issue in developer/architecture/controllers/control-plane.md #4550

Merged
merged 1 commit into from
Apr 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The `status` object **must** have the following fields defined:
<th> Implementation in Kubeadm Control Plane Controller </th>
</tr>
<tr>
<td><code>initialized</code>
<td><code>initialized</code></td>
<td>Boolean</td>
<td>
a boolean field that is true when the target cluster has
Expand All @@ -95,9 +95,8 @@ The `status` object **must** have the following fields defined:
<td>
Ready denotes that the target API Server is ready to receive requests.
</td>
<td />
<td></td>
</tr>
<tr>
</table>

#### Required `status` fields for implementations using replicas
Expand All @@ -118,7 +117,6 @@ following fields defined:
<td>Integer</td>
<td>Total number of fully running and ready control plane instances.</td>
<td>Is equal to the number of fully running and ready control plane machines</td>
<td />
</tr>
<tr>
<td><code>replicas</code></td>
Expand All @@ -127,7 +125,6 @@ following fields defined:
i.e. the state machine for this instance
of the control plane is able to transition to ready.</td>
<td>Is equal to the number of non-terminated control plane machines</td>
<td />
</tr>
<tr>
<td><code>selector</code></td>
Expand All @@ -138,7 +135,7 @@ following fields defined:
kubectl describe. The string will be in the same format as the query-param
syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors
</td>
<td />
<td></td>
</tr>
<tr>
<td><code>unavailableReplicas</code></td>
Expand Down Expand Up @@ -169,7 +166,6 @@ following fields defined:
control plane that have the desired template spec.
</td>
</tr>
</tr>
</table>

#### Optional `status` fields
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ In order to make it possible for users to deploy multiple instances of the same
⚠️ Users selecting this deployment model, please be aware:

- Support should be considered best-effort.
- Cluster API (incl. every provider managed under `kubernetes-sigs`, won't release a specialized components file
- Cluster API (incl. every provider managed under `kubernetes-sigs`) won't release a specialized components file
supporting the scenario described above; however, users should be able to create such deployment model from
the `/config` folder.
- Cluster API (incl. every provider managed under `kubernetes-sigs`) testing infrastructure won't run test cases
Expand Down