You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is that the kustomization file here does not include that resource, only the 3 other CRDs.
Note that release-0.7 branch is up to date with the relevant line added.
The issue is that some other provided reference the git branch directly in their documentation with kustomize such as in Openshift ServiceMesh here. Note that yes they suggest v0.4.0 however I wanted to apply the latest.
What you expected to happen:
I expected both the release and then tag would have the same behaviour. I think this commit just needs ported to the v0.7.1 tag? or a new v0.7.2 release might be needed?
How to reproduce it (as minimally and precisely as possible):
Not working
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.7.1"| yq ea '.metadata.name' -
What happened:
When you download the v0.7.1 standard release yaml and extract just the CRD resource, there are 4 of them:
However when you run the following command it only returns 3 resources:
The issue is that the kustomization file here does not include that resource, only the 3 other CRDs.
Note that release-0.7 branch is up to date with the relevant line added.
The issue is that some other provided reference the git branch directly in their documentation with
kustomize
such as in Openshift ServiceMesh here. Note that yes they suggest v0.4.0 however I wanted to apply the latest.What you expected to happen:
I expected both the release and then tag would have the same behaviour. I think this commit just needs ported to the v0.7.1 tag? or a new v0.7.2 release might be needed?
How to reproduce it (as minimally and precisely as possible):
Not working
Works:
curl https://github.com/kubernetes-sigs/gateway-api/releases/download/v0.7.1/standard-install.yaml -L -O yq ea 'select(.kind == "CustomResourceDefinition") | .metadata.name' ./standard-install.yaml
Anything else we need to know?:
This could be fixed in the RedHat docs for Openshift, but it still feels inconsistent here.
Also, this also fixes it by using the release branch as the ref instead:
The text was updated successfully, but these errors were encountered: