vmware-tanzu / pinniped

Pinniped is the easy, secure way to log in to your Kubernetes clusters.
https://pinniped.dev
Apache License 2.0
527 stars 64 forks source link

use "latest" dir for API docs in doc URLs on the web site #1970

Closed cfryanr closed 1 month ago

cfryanr commented 1 month ago

When we released Pinniped v0.30.0, we included generated code for Kubernetes 1.30. The release process updated this config file for our web site to say 1.30: https://github.com/vmware-tanzu/pinniped/blob/main/site/config.yaml#L11

Sadly, 1.30 in YAML means the decimal value 1.3, not the string "1.30". This broke many API doc links on our web site because they accidentally use 1.3 where they should use 1.30.

This PR changes all those links to use https://github.com/vmware-tanzu/pinniped/blob/main/generated/latest/README.adoc instead of interpolating the specific version number like https://github.com/vmware-tanzu/pinniped/blob/main/generated/1.30/README.adoc.

Release note:

NONE
joshuatcasey commented 1 month ago

Merging and bypassing CI since this is only a site/ change.