Skip to content

Commit 46531a1

Browse files
Update logging-loki-pod-placement.adoc
- Need to remove additional nodeSelector and tolerations from Lokistack CR - Here is the documentation link: https://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/logging/scheduling-resources#logging-loki-pod-placement_logging-taints-tolerations - nodeSelector and tolerations are mentioned twice under the distributor field of Lokistack CR. ~~~ distributor: nodeSelector: node-role.kubernetes.io/infra: "" tolerations: - effect: NoSchedule key: node-role.kubernetes.io/infra value: reserved - effect: NoExecute key: node-role.kubernetes.io/infra value: reserved nodeSelector: node-role.kubernetes.io/infra: "" tolerations: - effect: NoSchedule key: node-role.kubernetes.io/infra value: reserved - effect: NoExecute key: node-role.kubernetes.io/infra value: reserved ~~~ - values for both nodeSelector and tolerations are the same. - Keeping it twice is not required and it is an unnecessary configuration. - Hence need to remove additional nodeSelector and tolerations from the documentation. - Here is the updated look: ~~~ distributor: nodeSelector: node-role.kubernetes.io/infra: "" tolerations: - effect: NoSchedule key: node-role.kubernetes.io/infra value: reserved - effect: NoExecute key: node-role.kubernetes.io/infra value: reserved ~~~
1 parent 9872e65 commit 46531a1

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

modules/logging-loki-pod-placement.adoc

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,6 @@ spec:
8484
- effect: NoExecute
8585
key: node-role.kubernetes.io/infra
8686
value: reserved
87-
nodeSelector:
88-
node-role.kubernetes.io/infra: ""
89-
tolerations:
90-
- effect: NoSchedule
91-
key: node-role.kubernetes.io/infra
92-
value: reserved
93-
- effect: NoExecute
94-
key: node-role.kubernetes.io/infra
95-
value: reserved
9687
indexGateway:
9788
nodeSelector:
9889
node-role.kubernetes.io/infra: ""

0 commit comments

Comments
 (0)