Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Move to original file
  • Loading branch information
barchw committed Nov 5, 2025
commit 00d07b6bb4d9639b79c4c93f0e845e83dde6306c
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,12 @@ bin/crd-ref-docs:
.PHONY: generate-istio-crd-docs
generate-istio-crd-docs: bin/crd-ref-docs ## Generate CRD reference docs
./bin/crd-ref-docs \
--output-path=docs/contributor/istio-crd.md \
--output-path=docs/user/04-00-istio-custom-resource.md \
--source-path=api/v1alpha2 \
--renderer=markdown \
--config=crd-ref-docs/config.yaml \
--templates-dir=crd-ref-docs/templates
# Replace Optional: \{\} and Required: \{\} with Optional and Required
sed -i'' -e 's/Optional: \\{\\}/Optional/g' docs/contributor/istio-crd.md
sed -i'' -e 's/Required: \\{\\}/Required/g' docs/contributor/istio-crd.md
sed -i'' -e 's/Optional: \\{\\}/Optional/g' docs/user/04-00-istio-custom-resource.md
sed -i'' -e 's/Required: \\{\\}/Required/g' docs/user/04-00-istio-custom-resource.md
rm docs/user/04-00-istio-custom-resource.md-e
1 change: 0 additions & 1 deletion api/v1alpha2/authorizers.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ type Authorizer struct {
PathPrefix *string `json:"pathPrefix,omitempty"`

// Specifies the timeout for the HTTP authorization request to the external service.
// Default timeout, as defined in [Envoy](https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/http/ext_authz/v3/ext_authz.proto#extensions-filters-http-ext-authz-v3-extauthz) is 200ms.
// +kubebuilder:validation:Optional
Timeout *metav1.Duration `json:"timeout,omitempty"`
}
Expand Down
7 changes: 0 additions & 7 deletions crd-ref-docs/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,3 @@ processor:
- "List$"
ignoreFields:
- "TypeMeta$"

render:
kubernetesVersion: 1.33
knownTypes:
- name: SecretObjectReference
package: sigs.k8s.io/gateway-api/apis/v1
link: https://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io/v1.SecretObjectReference
Loading