Skip to content

Commit

Permalink
Fix enableAppArmor boolean in docs
Browse files Browse the repository at this point in the history
The docs interpret the bool as string which leads into a wrong command.
Now it's fixed by omitting the `"`.

Fixes #2321

Signed-off-by: Sascha Grunert <[email protected]>
  • Loading branch information
saschagrunert authored and k8s-ci-robot committed Jun 23, 2024
1 parent 023cbee commit fb63a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -1756,7 +1756,7 @@ running with the appropriate profile.
Ensure that the daemon has AppArmor enabled:

```
> kubectl -n security-profiles-operator patch spod spod --type=merge -p '{"spec":{"enableAppArmor":"true"}}'
> kubectl -n security-profiles-operator patch spod spod --type=merge -p '{"spec":{"enableAppArmor":true}}'
securityprofilesoperatordaemon.security-profiles-operator.x-k8s.io/spod patched
```

Expand Down

0 comments on commit fb63a4f

Please sign in to comment.