Skip to content

Commit

Permalink
apply change proposed in issue 899
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Ramlot <[email protected]>
  • Loading branch information
inteon committed Oct 15, 2024
1 parent 945ab69 commit 926ac44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/releases/upgrading/upgrading-1.7-1.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Before upgrading to 1.8.0, you will need to check that all the Certificate YAML

```sh
kubectl get cert -A -ojson | jq -r \
'.items[] | select(.spec.privateKey.rotationPolicy | strings | . != "Always" and . != "Never") | "\(.metadata.name) in namespace \(.metadata.namespace) has rotationPolicy=\(.spec.privateKey.rotationPolicy)"'
'.items[] | select(.spec.privateKey) | select(.spec.privateKey.rotationPolicy | . != "Always" and . != "Never") | "\(.metadata.name) in namespace \(.metadata.namespace) has rotationPolicy=\(.spec.privateKey.rotationPolicy)"'
```

This command will show you, the name and namespace of each Certificate resource that needs to be updated in Git. For example:
Expand Down

0 comments on commit 926ac44

Please sign in to comment.