Skip to content

Commit

Permalink
Merge pull request #118 from dholbach/website-updates
Browse files Browse the repository at this point in the history
Website updates
  • Loading branch information
dholbach authored May 21, 2024
2 parents 6dc5cd0 + dfd11b0 commit 3c8779a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 2 additions & 4 deletions content/en/docs/community.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ weight: 10

If you have any questions about, feedback for or problems with `kured`:

- Invite yourself to the <a href="https://slack.cncf.io/" target="_blank">CNCF Slack</a>.
- Ask a question on the [#kured](https://cloud-native.slack.com/archives/kured) slack channel.
- Invite yourself to the <a href="https://slack.cncf.io/" target="_blank">CNCF Slack</a> and
ask a question on the [#kured](https://cloud-native.slack.com/archives/kured) slack channel.
- [File an issue](https://github.com/kubereboot/kured/issues/new).
- Join us in [our monthly meeting](https://docs.google.com/document/d/1AWT8YDdqZY-Se6Y1oAlwtujWLVpNVK2M_F_Vfqw06aI/edit),
every first Wednesday of the month at 16:00 UTC.
- You might want to [join the kured-dev mailing list](https://lists.cncf.io/g/cncf-kured-dev) as well.

We follow the [CNCF Code of Conduct](https://github.com/kubereboot/kured/blob/main/CODE_OF_CONDUCT.md).
Expand Down
18 changes: 9 additions & 9 deletions content/en/docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ YAML:

```yaml
taints:
- effect: NoExecute
key: CriticalAddonsOnly
value: "true"
- effect: NoExecute
key: CriticalAddonsOnly
value: "true"
```
In order to make kured run on these nodes as well we will need to edit the daemonset of the deployment.
Expand All @@ -70,10 +70,10 @@ In the `kured-1.14.0-dockerhub.yaml` the daemonset has the following tolerations

```yaml
tolerations:
- key: node-role.kubernetes.io/control-plane
effect: NoSchedule
- key: node-role.kubernetes.io/master
effect: NoSchedule
- key: node-role.kubernetes.io/control-plane
effect: NoSchedule
- key: node-role.kubernetes.io/master
effect: NoSchedule
```
In the docs about [taint and toleration](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) you an read up about the concept.
Expand All @@ -82,8 +82,8 @@ In Order to tollerate kured on the tainted nodes change this section into:
```yaml
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- key: CriticalAddonsOnly
operator: Exists
```
after applying the `kured-1.14.0-dockerhub.yaml` file you can check the number of pods with:
Expand Down
2 changes: 2 additions & 0 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ params:
url: 'https://lists.cncf.io/g/cncf-kured-dev'
icon: fa-solid fa-envelope
desc: Sign up to the Kured mailing list
social:
twitter: kubereboot

menus:
main:
Expand Down

0 comments on commit 3c8779a

Please sign in to comment.