Hugo: Fix lists (#8511)

Fix display of lists, add empty lines before them so that hugo formats
them correctly as lists and not as paragraphs.
This commit is contained in:
Andreas Jaeger
2018-05-16 08:22:29 +02:00
committed by k8s-ci-robot
parent c2f73e5862
commit ed3fc99154
2 changed files with 7 additions and 0 deletions
@@ -219,6 +219,7 @@ endpoints. You can switch to the new reconciler by adding the flag
{{< feature-state state="alpha" >}} {{< feature-state state="alpha" >}}
If you want to know more, you can check the following resources: If you want to know more, you can check the following resources:
- [issue kubernetes/kubernetes#22609](https://github.com/kubernetes/kubernetes/issues/22609), - [issue kubernetes/kubernetes#22609](https://github.com/kubernetes/kubernetes/issues/22609),
which gives additional context which gives additional context
- [master/reconcilers/mastercount.go](https://github.com/kubernetes/kubernetes/blob/dd9981d038012c120525c9e6df98b3beb3ef19e1/pkg/master/reconcilers/mastercount.go#L63), - [master/reconcilers/mastercount.go](https://github.com/kubernetes/kubernetes/blob/dd9981d038012c120525c9e6df98b3beb3ef19e1/pkg/master/reconcilers/mastercount.go#L63),
@@ -117,6 +117,7 @@ This section breaks down the access required on various API objects by the CCM t
The Node controller only works with Node objects. It requires full access to get, list, create, update, patch, watch, and delete Node objects. The Node controller only works with Node objects. It requires full access to get, list, create, update, patch, watch, and delete Node objects.
v1/Node: v1/Node:
- Get - Get
- List - List
- Create - Create
@@ -130,6 +131,7 @@ v1/Node:
The route controller listens to Node object creation and configures routes appropriately. It requires get access to Node objects. The route controller listens to Node object creation and configures routes appropriately. It requires get access to Node objects.
v1/Node: v1/Node:
- Get - Get
### Service controller ### Service controller
@@ -141,6 +143,7 @@ To access Services, it requires list, and watch access. To update Services, it r
To set up endpoints for the Services, it requires access to create, list, get, watch, and update. To set up endpoints for the Services, it requires access to create, list, get, watch, and update.
v1/Service: v1/Service:
- List - List
- Get - Get
- Watch - Watch
@@ -152,6 +155,7 @@ v1/Service:
The PersistentVolumeLabels controller listens on PersistentVolume (PV) create events and then updates them. This controller requires access to get and update PVs. The PersistentVolumeLabels controller listens on PersistentVolume (PV) create events and then updates them. This controller requires access to get and update PVs.
v1/PersistentVolume: v1/PersistentVolume:
- Get - Get
- List - List
- Watch - Watch
@@ -162,11 +166,13 @@ v1/PersistentVolume:
The implementation of the core of CCM requires access to create events, and to ensure secure operation, it requires access to create ServiceAccounts. The implementation of the core of CCM requires access to create events, and to ensure secure operation, it requires access to create ServiceAccounts.
v1/Event: v1/Event:
- Create - Create
- Patch - Patch
- Update - Update
v1/ServiceAccount: v1/ServiceAccount:
- Create - Create
The RBAC ClusterRole for the CCM looks like this: The RBAC ClusterRole for the CCM looks like this: