Skip to content
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
2 changes: 1 addition & 1 deletion content/en/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<p class="text-muted">Kured is a Cloud Native Computing Foundation Sandbox project.</p>
</div>
<div class="row">
<small class="text-muted">The Linux Foundation® (TLF) has registered trademarks and uses trademarks. For a list of TLF trademarks, see <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage</a>.</small>
<small class="text-muted">The Linux Foundation® (TLF) has registered trademarks and uses trademarks. For a list of TLF trademarks, see <a href="https://www.linuxfoundation.org/legal/trademark-usage">Trademark Usage</a>.</small>
</div>
</div>

Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ In order to make kured run on these nodes as well we will need to edit the daemo
You can get a full deployment file by running the following command:

```bash
# while writing latest is 1.20.0
# while writing latest is 1.21.0
latest=$(curl -s https://api.github.com/repos/kubereboot/kured/releases | jq -r '.[0].tag_name')
wget "https://github.com/kubereboot/kured/releases/download/$latest/kured-$latest-combined.yaml"
```

In the `kured-1.20.0-combined.yaml` the daemonset has the following tolerations:
In the `kured-1.21.0-combined.yaml` the daemonset has the following tolerations:

```yaml
tolerations:
Expand All @@ -86,7 +86,7 @@ tolerations:
operator: Exists
```

After applying the `kured-1.20.0-combined.yaml` file you can check the number of pods with:
After applying the `kured-1.21.0-combined.yaml` file you can check the number of pods with:

```bash
kubectl -n kube-system get daemonsets/kured
Expand Down
1 change: 1 addition & 0 deletions content/en/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ server:

| kured | {k8s.io/,}kubectl | k8s.io/client-go | k8s.io/apimachinery | expected kubernetes compatibility |
| ------ | ----------------- | ---------------- | ------------------- | --------------------------------- |
| 1.21.0 | 0.34.3 | v0.34.3 | v0.34.3 | 1.33.x, 1.34.x, 1.35.x |
| 1.20.0 | 0.33.4 | v0.33.4 | v0.33.4 | 1.32.x, 1.33.x, 1.34.x |
| 1.19.0 | 0.32.8 | v0.32.8 | v0.32.8 | 1.31.x, 1.32.x, 1.33.x |
| 1.17.1 | 0.30.10 | v0.30.10 | v0.30.10 | 1.29.x, 1.30.x, 1.31.x |
Expand Down