diff --git a/Makefile b/Makefile
index 7f0d6fc2940..c890561040f 100644
--- a/Makefile
+++ b/Makefile
@@ -447,30 +447,14 @@ generate-changelog: ## Generate a changelog entry
#----------------------------------------------------------------------------------
# Generate CRD Reference Documentation
#
-# We are trying to migrate our APIs and CRDs to be built using Kubebuilder.
-#
-# Historically, our docs are generated using Protocol Buffers as the source of truth,
-# and code generation (https://github.com/solo-io/solo-kit/tree/main/pkg/code-generator/docgen)
-# to generate the Markdown for these APIs.
-#
-# With the migration to Kubebuilder, protos are no longer the source of truth, and we must rely on other means to
-# generate documentation. As https://github.com/kubernetes-sigs/controller-tools/issues/240 calls out, there isn't an agreed
-# upon approach yet. We chose to use https://github.com/fybrik/crdoc as it allows us to generate the Markdown for our docs,
-# which is used by Hugo. Other tools produced HTML, which wouldn't have worked for our current setup.
-#
+# See docs/content/crds/README.md for more details.
#----------------------------------------------------------------------------------
-GWPARAMS_INPUT_CRD := install/helm/gloo/crds/gateway.gloo.solo.io_gatewayparameters.yaml
-GWPARAMS_OUTPUT_MARKDOWN := docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/gateway_parameters.md
-
-DRA_INPUT_CRD := install/helm/gloo/crds/gateway.gloo.solo.io_directresponses.yaml
-DRA_OUTPUT_MARKDOWN := docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/direct_response_action.md
-
-
+# To run this command correctly, you must have executed `install-go-tools`
.PHONY: generate-crd-reference-docs
generate-crd-reference-docs:
- $(DEPSGOBIN)/crdoc --resources $(GWPARAMS_INPUT_CRD) --output $(GWPARAMS_OUTPUT_MARKDOWN)
- $(DEPSGOBIN)/crdoc --resources $(DRA_INPUT_CRD) --output $(DRA_OUTPUT_MARKDOWN)
+ go run docs/content/crds/generate.go
+
#----------------------------------------------------------------------------------
# Generate mocks
diff --git a/changelog/v1.18.0-rc2/update-gloo-docs-format.yaml b/changelog/v1.18.0-rc2/update-gloo-docs-format.yaml
new file mode 100644
index 00000000000..888f6c24933
--- /dev/null
+++ b/changelog/v1.18.0-rc2/update-gloo-docs-format.yaml
@@ -0,0 +1,10 @@
+changelog:
+ - type: NON_USER_FACING
+ issueLink: https://github.com/solo-io/solo-projects/issues/6612
+ resolvesIssue: false
+ description: >-
+ Generate the documentation using the updated markdown templates to fit new formatting guidelines.
+ - type: DEPENDENCY_BUMP
+ dependencyOwner: solo-io
+ dependencyRepo: solo-kit
+ dependencyTag: v0.36.3
\ No newline at end of file
diff --git a/docs/content/crds/README.md b/docs/content/crds/README.md
new file mode 100644
index 00000000000..a7e73b864c7
--- /dev/null
+++ b/docs/content/crds/README.md
@@ -0,0 +1,39 @@
+# CRD Reference Documentation
+
+### Background
+We are trying to migrate our APIs and CRDs to be built using Kubebuilder.
+
+Historically, our docs are generated using Protocol Buffers as the source of truth, and code generation (https://github.com/solo-io/solo-kit/tree/main/pkg/code-generator/docgen) to generate the Markdown for these APIs.
+
+With the migration to Kubebuilder, protos are no longer the source of truth, and we must rely on other means to
+generate documentation. As https://github.com/kubernetes-sigs/controller-tools/issues/240 calls out, there isn't an agreed
+upon approach yet. We chose to use https://github.com/fybrik/crdoc as it allows us to generate the Markdown for our docs,
+which is used by Hugo. Other tools produced HTML, which wouldn't have worked for our current setup.
+
+### Which CRDs are documented using this mechanism?
+We opted to only add this to our newer APIs, which do not rely on protos as the source of truth. This means the following CRDs are affected:
+- GatewayParameters
+- DirectReponseAction
+
+### How are the reference docs for our proto-based APIs generated?
+We rely on our [solo-kit docgen](https://github.com/solo-io/solo-kit/tree/main/pkg/code-generator/docgen) code.
+
+### How do I regenerate the documentation locally?
+1. Install crdoc locally
+```bash
+make install-go-gools
+```
+
+2. Run the generation script.
+
+This can be done by either using the go script directly:
+```bash
+ go run docs/content/crds/generate.go
+```
+or relying on the Make target:
+```bash
+ make generate-crd-reference-docs
+```
+
+### When is this regenerated in CI?
+When running `make generated-code`.
diff --git a/docs/content/crds/generate.go b/docs/content/crds/generate.go
new file mode 100644
index 00000000000..0382ffe986e
--- /dev/null
+++ b/docs/content/crds/generate.go
@@ -0,0 +1,107 @@
+package main
+
+import (
+ "context"
+ "fmt"
+ "os"
+ "path/filepath"
+ "strings"
+
+ "github.com/hashicorp/go-multierror"
+ "github.com/rotisserie/eris"
+ "github.com/solo-io/gloo/pkg/utils/cmdutils"
+ "github.com/solo-io/gloo/projects/gateway2/api/v1alpha1"
+ "github.com/solo-io/skv2/codegen/util"
+ "github.com/stoewer/go-strcase"
+ "k8s.io/apimachinery/pkg/runtime/schema"
+)
+
+var (
+ // crdocBinary is assumed to be installed locally to this path
+ // see the `install-go-tools` target in the Makefile
+ crdocBinary = filepath.Join(util.GetModuleRoot(), "_output", ".bin", "crdoc")
+)
+
+func main() {
+ err := generateCrdReferenceDocs(context.Background())
+ if err != nil {
+ fmt.Println(err)
+ os.Exit(1)
+ }
+}
+
+// generateCrdReferenceDocs is the entrypoint to our automation for updating CRD reference markdown files
+func generateCrdReferenceDocs(ctx context.Context) error {
+ gvks := []schema.GroupVersionKind{
+ v1alpha1.GatewayParametersGVK,
+ v1alpha1.DirectResponseGVK,
+ }
+
+ outErr := &multierror.Error{}
+ for _, gvk := range gvks {
+ err := generateCrdReferenceMarkdown(ctx, gvk)
+ outErr = multierror.Append(outErr, err)
+ }
+
+ return outErr.ErrorOrNil()
+}
+
+func generateCrdReferenceMarkdown(ctx context.Context, gvk schema.GroupVersionKind) error {
+ // sourceFile is the path to the CRD. This is used as the source of truth for the CRD reference docs
+ sourceFile := filepath.Join(
+ "install",
+ "helm",
+ "gloo",
+ "crds",
+ fmt.Sprintf("%s_%s.yaml", gvk.Group, strings.ToLower(kindPlural(gvk))),
+ )
+
+ // outputFile is the path to the generated reference markdown file.
+ // NOTE: For now, this is tightly coupled to the `gateway2` project, since that is where the APIs that we
+ // rely on are defined, though that may need to change in the future
+ outputFile := filepath.Join(
+ "docs",
+ "content",
+ "reference",
+ "api",
+ "github.com",
+ "solo-io",
+ "gloo",
+ "projects",
+ "gateway2",
+ "api",
+ gvk.Version,
+ fmt.Sprintf("%s.md", strcase.SnakeCase(kindPlural(gvk))))
+
+ // templateFile is the path to the file used as the template for our docs
+ templateFile := filepath.Join(
+ "docs",
+ "content",
+ "crds",
+ "templates",
+ "markdown.tmpl")
+
+ cmd := cmdutils.Command(ctx, crdocBinary,
+ "--resources",
+ sourceFile,
+ "--output",
+ outputFile,
+ "--template",
+ templateFile,
+ )
+ runErr := cmd.Run()
+
+ if runErr.Cause() != nil {
+ return eris.Wrapf(runErr.Cause(), "%s produced error %s", runErr.PrettyCommand(), runErr.Error())
+ }
+ return nil
+}
+
+// kindPlural returns the pluralized kind for a given GVK.
+// This is hacky, but is useful because CRD files are named using this format, so we need a way to look up that file name
+// If the name of the file is incorrect, a developer will realize this because the script will fail with a file not found error.
+func kindPlural(gvk schema.GroupVersionKind) string {
+ // ensure that kind which ends in s, is not duplicated
+ // ie GatewayParameters becomes GatewayParameters, not GatewayParameterss
+ return strings.TrimSuffix(gvk.Kind, "s") + "s"
+}
diff --git a/docs/content/crds/templates/markdown.tmpl b/docs/content/crds/templates/markdown.tmpl
new file mode 100644
index 00000000000..e95e9142095
--- /dev/null
+++ b/docs/content/crds/templates/markdown.tmpl
@@ -0,0 +1,102 @@
+# API Reference
+
+Packages:
+{{range .Groups}}
+- [{{.Group}}/{{.Version}}](#{{ anchorize (printf "%s/%s" .Group .Version) }})
+{{- end -}}{{/* range .Groups */}}
+
+{{- range .Groups }}
+{{- $group := . }}
+
+# {{.Group}}/{{.Version}}
+
+Resource Types:
+{{range .Kinds}}
+- [{{.Name}}](#{{ anchorize .Name }})
+{{end}}{{/* range .Kinds */}}
+
+{{range .Kinds}}
+{{$kind := .}}
+## {{.Name}}
+[↩ Parent](#{{ anchorize (printf "%s/%s" $group.Group $group.Version) }} )
+
+{{range .Types}}
+
+{{if not .IsTopLevel}}
+### {{.Name}}
+{{if .ParentKey}}[↩ Parent](#{{.ParentKey}}){{end}}
+{{end}}
+
+
+{{.Description}}
+
+
+
+
+ | Name |
+ Type |
+ Description |
+ Required |
+
+
+
+ {{- if .IsTopLevel -}}
+
+ | apiVersion |
+ string |
+ {{$group.Group}}/{{$group.Version}} |
+ true |
+
+
+ | kind |
+ string |
+ {{$kind.Name}} |
+ true |
+
+
+ | metadata |
+ object |
+ Refer to the Kubernetes API documentation for the fields of the `metadata` field. |
+ true |
+
+ {{- end -}}
+ {{- range .Fields -}}
+
+ | {{if .TypeKey}}{{.Name}}{{else}}{{.Name}}{{end}} |
+ {{.Type}} |
+
+ {{.Description}}
+ {{- if or .Schema.XValidations .Schema.Format .Schema.Enum .Schema.Default .Schema.Minimum .Schema.Maximum }}
+
+ {{- end}}
+ {{- if .Schema.XValidations }}
+ Validations:
+ {{- range .Schema.XValidations -}}
+ {{ .Rule }}: {{ .Message }}
+ {{- end -}}
+ {{- end }}
+ {{- if .Schema.Format }}
+ Format: {{ .Schema.Format }}
+ {{- end }}
+ {{- if .Schema.Enum }}
+ Enum: {{ .Schema.Enum | toStrings | join ", " }}
+ {{- end }}
+ {{- if .Schema.Default }}
+ Default: {{ .Schema.Default }}
+ {{- end }}
+ {{- if .Schema.Minimum }}
+ Minimum: {{ .Schema.Minimum }}
+ {{- end }}
+ {{- if .Schema.Maximum }}
+ Maximum: {{ .Schema.Maximum }}
+ {{- end }}
+ |
+ {{.Required}} |
+
+ {{- end -}}
+
+
+
+{{- end}}{{/* range .Types */}}
+{{- end}}{{/* range .Kinds */}}
+{{- end}}{{/* range .Groups */}}
\ No newline at end of file
diff --git a/docs/content/reference/api/envoy/annotations/deprecation.proto.sk.md b/docs/content/reference/api/envoy/annotations/deprecation.proto.sk.md
index 2672c812982..d6fdefee566 100644
--- a/docs/content/reference/api/envoy/annotations/deprecation.proto.sk.md
+++ b/docs/content/reference/api/envoy/annotations/deprecation.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "deprecation.proto"
+title: "Deprecation"
weight: 5
---
@@ -9,7 +9,7 @@ weight: 5
### Package: `solo.io.envoy.annotations`
-##### Source File: `envoy/annotations/deprecation.proto`
+**Source File: `envoy/annotations/deprecation.proto`**
diff --git a/docs/content/reference/api/envoy/api/v2/route/route.proto.sk.md b/docs/content/reference/api/envoy/api/v2/route/route.proto.sk.md
index 2d8c4f0e864..d3686d533be 100644
--- a/docs/content/reference/api/envoy/api/v2/route/route.proto.sk.md
+++ b/docs/content/reference/api/envoy/api/v2/route/route.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "route.proto"
+title: "Route"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `solo.io.envoy.api.v2.route`
-#### Types:
+**Types:**
- [VirtualHost](#virtualhost)
@@ -54,7 +54,7 @@ weight: 5
-##### Source File: `envoy/api/v2/route/route.proto`
+**Source File: `envoy/api/v2/route/route.proto`**
diff --git a/docs/content/reference/api/extproto/ext.proto.sk.md b/docs/content/reference/api/extproto/ext.proto.sk.md
index ef8c403cd9a..4e9ef07ac41 100644
--- a/docs/content/reference/api/extproto/ext.proto.sk.md
+++ b/docs/content/reference/api/extproto/ext.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ext.proto"
+title: "Ext"
weight: 5
---
@@ -9,7 +9,7 @@ weight: 5
### Package: `extproto`
-##### Source File: `extproto/ext.proto`
+**Source File: `extproto/ext.proto`**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/external_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/external_options.proto.sk.md
index 2eb308688a2..317979c35f8 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/external_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/external_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "external_options.proto"
+title: "ExternalOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gateway.solo.io`
-#### Types:
+**Types:**
- [VirtualHostOption](#virtualhostoption) **Top-Level Resource**
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/external_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/external_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/external_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/external_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/gateway.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/gateway.proto.sk.md
index e7e5122c447..4fdebc2b1cc 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/gateway.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/gateway.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "gateway.proto"
+title: "Gateway"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gateway.solo.io`
-#### Types:
+**Types:**
- [Gateway](#gateway) **Top-Level Resource**
@@ -22,7 +22,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/gateway.proto)
+**Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/gateway.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/http_gateway.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/http_gateway.proto.sk.md
index aaa4a0e7497..76d8ea74f0c 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/http_gateway.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/http_gateway.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "http_gateway.proto"
+title: "HttpGateway"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gateway.solo.io`
-#### Types:
+**Types:**
- [HttpGateway](#httpgateway)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/http_gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/http_gateway.proto)
+**Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/http_gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/http_gateway.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_http_gateway.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_http_gateway.proto.sk.md
index 733fd1aef12..c1d8b0f61d1 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_http_gateway.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_http_gateway.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "matchable_http_gateway.proto"
+title: "MatchableHttpGateway"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gateway.solo.io`
-#### Types:
+**Types:**
- [MatchableHttpGateway](#matchablehttpgateway) **Top-Level Resource**
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/matchable_http_gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/matchable_http_gateway.proto)
+**Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/matchable_http_gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/matchable_http_gateway.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_tcp_gateway.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_tcp_gateway.proto.sk.md
index a8bf5d8edf9..efe502e4264 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_tcp_gateway.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/matchable_tcp_gateway.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "matchable_tcp_gateway.proto"
+title: "MatchableTcpGateway"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gateway.solo.io`
-#### Types:
+**Types:**
- [MatchableTcpGateway](#matchabletcpgateway) **Top-Level Resource**
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/matchable_tcp_gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/matchable_tcp_gateway.proto)
+**Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/matchable_tcp_gateway.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/matchable_tcp_gateway.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/route_table.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/route_table.proto.sk.md
index c79442194a7..aed08214e0e 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/route_table.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/route_table.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "route_table.proto"
+title: "RouteTable"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gateway.solo.io`
-#### Types:
+**Types:**
- [RouteTable](#routetable) **Top-Level Resource**
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/route_table.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/route_table.proto)
+**Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/route_table.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/route_table.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/virtual_service.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/virtual_service.proto.sk.md
index 2e279a531a9..1ac0d46a469 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/virtual_service.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway/api/v1/virtual_service.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "virtual_service.proto"
+title: "VirtualService"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gateway.solo.io`
-#### Types:
+**Types:**
- [VirtualService](#virtualservice) **Top-Level Resource**
@@ -23,7 +23,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/virtual_service.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/virtual_service.proto)
+**Source File: [github.com/solo-io/gloo/projects/gateway/api/v1/virtual_service.proto](https://github.com/solo-io/gloo/blob/main/projects/gateway/api/v1/virtual_service.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/direct_response_action.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/direct_responses.md
similarity index 99%
rename from docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/direct_response_action.md
rename to docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/direct_responses.md
index cde50090abe..969de5d559f 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/direct_response_action.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/direct_responses.md
@@ -102,4 +102,4 @@ Resource Types:
false |
-
+
\ No newline at end of file
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/gateway_parameters.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/gateway_parameters.md
index 700cad8eb9f..bf0913a0af0 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/gateway_parameters.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gateway2/api/v1alpha1/gateway_parameters.md
@@ -7761,4 +7761,4 @@ Resource Types:
false |
-
+
\ No newline at end of file
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/debug/proxy_endpoint.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/debug/proxy_endpoint.proto.sk.md
index 67795b27825..20ed39a550e 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/debug/proxy_endpoint.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/debug/proxy_endpoint.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "proxy_endpoint.proto"
+title: "ProxyEndpoint"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [ProxyEndpointRequest](#proxyendpointrequest)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/grpc/debug/proxy_endpoint.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/grpc/debug/proxy_endpoint.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/grpc/debug/proxy_endpoint.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/grpc/debug/proxy_endpoint.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/validation/gloo_validation.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/validation/gloo_validation.proto.sk.md
index 1ef543f61fe..e135f7f58a3 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/validation/gloo_validation.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/validation/gloo_validation.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "gloo_validation.proto"
+title: "GlooValidation"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [GlooValidationServiceRequest](#gloovalidationservicerequest)
@@ -51,7 +51,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/grpc/validation/gloo_validation.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/grpc/validation/gloo_validation.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/grpc/validation/gloo_validation.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/grpc/validation/gloo_validation.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/version/version.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/version/version.proto.sk.md
index 6ee84ad2ef7..e53a05bb2ee 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/version/version.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/grpc/version/version.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "version.proto"
+title: "Version"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [ServerVersion](#serverversion)
@@ -21,14 +21,14 @@ weight: 5
-##### Enums:
+**Enums:**
- [GlooType](#glootype)
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/grpc/version/version.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/grpc/version/version.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/grpc/version/version.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/grpc/version/version.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/artifact.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/artifact.proto.sk.md
index 108995538f9..ecda18c9701 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/artifact.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/artifact.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "artifact.proto"
+title: "Artifact"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Artifact](#artifact) **Top-Level Resource**
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/artifact.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/artifact.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/artifact.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/artifact.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto.sk.md
index 1ebcdcd9a60..58674c73aa3 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "circuit_breaker.proto"
+title: "CircuitBreaker"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [CircuitBreakerConfig](#circuitbreakerconfig)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/circuit_breaker.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/circuit_breaker.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/circuit_breaker.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto.sk.md
index bd8f06c7fab..c53c2a768d6 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "connection.proto"
+title: "Connection"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [ConnectionConfig](#connectionconfig)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/connection.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/connection.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/connection.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/matchers/matchers.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/matchers/matchers.proto.sk.md
index c725a21a5e9..dfbd7954e68 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/matchers/matchers.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/matchers/matchers.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "matchers.proto"
+title: "Matchers"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `matchers.core.gloo.solo.io`
-#### Types:
+**Types:**
- [Matcher](#matcher)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/core/matchers/matchers.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/core/matchers/matchers.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/core/matchers/matchers.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/core/matchers/matchers.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/selectors/selectors.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/selectors/selectors.proto.sk.md
index 4c7e1cb6fcc..b706731fafd 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/selectors/selectors.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/core/selectors/selectors.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "selectors.proto"
+title: "Selectors"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `selectors.core.gloo.solo.io`
-#### Types:
+**Types:**
- [Selector](#selector)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/core/selectors/selectors.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/core/selectors/selectors.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/core/selectors/selectors.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/core/selectors/selectors.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/destination_spec.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/destination_spec.proto.sk.md
index 4791ea87ce4..365400b979e 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/destination_spec.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/destination_spec.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "destination_spec.proto"
+title: "DestinationSpec"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [DestinationSpec](#destinationspec)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/destination_spec.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/destination_spec.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/destination_spec.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/destination_spec.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/endpoint.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/endpoint.proto.sk.md
index 9af0c15a8bd..1a403f66527 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/endpoint.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/endpoint.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "endpoint.proto"
+title: "Endpoint"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Endpoint](#endpoint) **Top-Level Resource**
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/endpoint.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/endpoint.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/endpoint.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/endpoint.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ai/ai.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ai/ai.proto.sk.md
index 71cdd9a380f..bdfb4b9a3d6 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ai/ai.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ai/ai.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ai.proto"
+title: "Ai"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `ai.options.gloo.solo.io`
-#### Types:
+**Types:**
- [SingleAuthToken](#singleauthtoken)
@@ -58,7 +58,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ai/ai.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/ai/ai.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ai/ai.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/ai/ai.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/caching/caching.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/caching/caching.proto.sk.md
index 6253b5409bc..e75f38a113f 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/caching/caching.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/caching/caching.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "caching.proto"
+title: "Caching"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `caching.options.gloo.solo.io`
-#### Types:
+**Types:**
- [Settings](#settings)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/caching/caching.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/caching/caching.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/caching/caching.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/caching/caching.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto.sk.md
index df12d0d737e..d26f75824f5 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "dlp.proto"
+title: "Dlp"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `dlp.options.gloo.solo.io`
-#### Types:
+**Types:**
- [FilterConfig](#filterconfig)
@@ -24,7 +24,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/dlp/dlp.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto.sk.md
index b59750b4b48..ecb9523d4b6 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "extauth-internal.proto"
+title: "ExtauthInternal"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `enterprise.gloo.solo.io`
-#### Types:
+**Types:**
- [ExtAuthConfig](#extauthconfig)
@@ -60,7 +60,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth-internal.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto.sk.md
index 714ad10b027..0a50a87c22e 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "extauth.proto"
+title: "Extauth"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `enterprise.gloo.solo.io`
-#### Types:
+**Types:**
- [AuthConfig](#authconfig) **Top-Level Resource**
@@ -99,7 +99,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/extauth/v1/extauth.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto.sk.md
index 23c7e0df958..4b6efbbe487 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "extproc.proto"
+title: "Extproc"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `extproc.options.gloo.solo.io`
-#### Types:
+**Types:**
- [Settings](#settings)
@@ -20,7 +20,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/extproc/extproc.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto.sk.md
index 106def2e2e4..54051f0af5f 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "gcp.proto"
+title: "Gcp"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gcp.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/gcp/gcp.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto.sk.md
index dac17c4769a..4c7389bbea1 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "graphql.proto"
+title: "Graphql"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `graphql.gloo.solo.io`
-#### Types:
+**Types:**
- [RequestTemplate](#requesttemplate)
@@ -36,7 +36,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/graphql/v1beta1/graphql.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto.sk.md
index b55f2354f34..a745cdfc6cd 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "jwt.proto"
+title: "Jwt"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `jwt.options.gloo.solo.io`
-#### Types:
+**Types:**
- [JwtStagedVhostExtension](#jwtstagedvhostextension)
@@ -28,7 +28,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/jwt/jwt.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto.sk.md
index bab2b564d65..47ebcee544f 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ratelimit.proto"
+title: "Ratelimit"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `ratelimit.options.gloo.solo.io`
-#### Types:
+**Types:**
- [IngressRateLimit](#ingressratelimit)
@@ -23,7 +23,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/ratelimit/ratelimit.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto.sk.md
index 2f69b9d99b9..2214ba92583 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "rbac.proto"
+title: "Rbac"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `rbac.options.gloo.solo.io`
-#### Types:
+**Types:**
- [Settings](#settings)
@@ -22,7 +22,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/rbac/rbac.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto.sk.md
index 69a1d470218..b304b00bd58 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "stateful_session.proto"
+title: "StatefulSession"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `stateful_session.options.gloo.solo.io`
-#### Types:
+**Types:**
- [StatefulSession](#statefulsession)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/stateful_session/stateful_session.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/tap/tap.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/tap/tap.proto.sk.md
index c33c4a92c46..43c9fc3e300 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/tap/tap.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/tap/tap.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "tap.proto"
+title: "Tap"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `tap.options.gloo.solo.io`
-#### Types:
+**Types:**
- [Tap](#tap)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/tap/tap.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/tap/tap.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/tap/tap.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/tap/tap.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/waf/waf.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/waf/waf.proto.sk.md
index 4b36a3ddebb..bbd8fcb344e 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/waf/waf.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/waf/waf.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "waf.proto"
+title: "Waf"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `waf.options.gloo.solo.io`
-#### Types:
+**Types:**
- [Settings](#settings)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/waf/waf.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/waf/waf.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/options/waf/waf.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/options/waf/waf.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/ratelimit.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/ratelimit.proto.sk.md
index c15cdf22121..b68c0ab3b29 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/ratelimit.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/ratelimit.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ratelimit.proto"
+title: "Ratelimit"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `glooe.solo.io`
-#### Types:
+**Types:**
- [RateLimitConfig](#ratelimitconfig)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/ratelimit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/ratelimit.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/enterprise/ratelimit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/enterprise/ratelimit.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto.sk.md
index b478d38ebf3..19c7a757135 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "extensions.proto"
+title: "Extensions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Extensions](#extensions)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/extensions.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/extensions.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/extensions.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/failover.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/failover.proto.sk.md
index 3a2c1d96413..7342377bdd5 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/failover.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/failover.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "failover.proto"
+title: "Failover"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Failover](#failover)
@@ -22,7 +22,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/failover.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/failover.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/failover.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/failover.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/filters/stages.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/filters/stages.proto.sk.md
index 2189c81d16e..c26b781cf7b 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/filters/stages.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/filters/stages.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "stages.proto"
+title: "Stages"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `filters.gloo.solo.io`
-#### Types:
+**Types:**
- [FilterStage](#filterstage)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/filters/stages.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/filters/stages.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/filters/stages.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/filters/stages.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/gloosnapshot/snap.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/gloosnapshot/snap.proto.sk.md
index 34b37ae362b..5a9e12a1b04 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/gloosnapshot/snap.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/gloosnapshot/snap.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "snap.proto"
+title: "Snap"
weight: 5
---
@@ -9,7 +9,7 @@ weight: 5
### Package: `gloosnapshot.gloo.solo.io`
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/gloosnapshot/snap.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/gloosnapshot/snap.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/gloosnapshot/snap.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/gloosnapshot/snap.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/http_listener_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/http_listener_options.proto.sk.md
index a31fa279b72..b70555203b0 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/http_listener_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/http_listener_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "http_listener_options.proto"
+title: "HttpListenerOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [HttpListenerOptions](#httplisteneroptions)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/http_listener_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/http_listener_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/http_listener_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/http_listener_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/listener_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/listener_options.proto.sk.md
index 7e5733ded24..d7d490c8c02 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/listener_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/listener_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "listener_options.proto"
+title: "ListenerOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [ListenerOptions](#listeneroptions)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/listener_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/listener_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/listener_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/listener_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto.sk.md
index 5a82983fe9a..1e9330e8252 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "load_balancer.proto"
+title: "LoadBalancer"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [LoadBalancerConfig](#loadbalancerconfig)
@@ -23,7 +23,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/load_balancer.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/load_balancer.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/load_balancer.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/advanced_http/advanced_http.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/advanced_http/advanced_http.proto.sk.md
index dcb8172fc5e..4a46ea0325a 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/advanced_http/advanced_http.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/advanced_http/advanced_http.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "advanced_http.proto"
+title: "AdvancedHttp"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `advancedhttp.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ResponseAssertions](#responseassertions)
@@ -20,14 +20,14 @@ weight: 5
-##### Enums:
+**Enums:**
- [HealthCheckResult](#healthcheckresult)
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/advanced_http/advanced_http.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/advanced_http/advanced_http.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/advanced_http/advanced_http.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/advanced_http/advanced_http.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/als/als.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/als/als.proto.sk.md
index b92d3ffaf02..429d1f27e53 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/als/als.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/als/als.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "als.proto"
+title: "Als"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `als.options.gloo.solo.io`
-#### Types:
+**Types:**
- [AccessLoggingService](#accessloggingservice)
@@ -33,7 +33,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/als/als.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/als/als.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/als/als.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/als/als.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/aws.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/aws.proto.sk.md
index 7973b198657..7cb7348108b 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/aws.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/aws.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "aws.proto"
+title: "Aws"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `aws.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/aws.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/aws/aws.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/aws.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/aws/aws.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto.sk.md
index f94f140324f..f44878cc222 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "aws_ec2.proto"
+title: "AwsEc2"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `aws_ec2.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/aws/ec2/aws_ec2.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/azure/azure.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/azure/azure.proto.sk.md
index 569b98a459c..690372e2b40 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/azure/azure.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/azure/azure.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "azure.proto"
+title: "Azure"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `azure.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/azure/azure.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/azure/azure.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/azure/azure.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/azure/azure.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/connection_limit/connection_limit.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/connection_limit/connection_limit.proto.sk.md
index b70ca9e8a49..3db25651796 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/connection_limit/connection_limit.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/connection_limit/connection_limit.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "connection_limit.proto"
+title: "ConnectionLimit"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `connection_limit.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ConnectionLimit](#connectionlimit)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/connection_limit/connection_limit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/connection_limit/connection_limit.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/connection_limit/connection_limit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/connection_limit/connection_limit.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/consul.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/consul.proto.sk.md
index 98d2ac66e10..51a6824f8bd 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/consul.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/consul.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "consul.proto"
+title: "Consul"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `consul.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/consul.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/consul/consul.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/consul.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/consul/consul.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/query_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/query_options.proto.sk.md
index 958930b9f0e..24fca0f596b 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/query_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/query_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "query_options.proto"
+title: "QueryOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `consul.options.gloo.solo.io`
-#### Types:
+**Types:**
- [QueryOptions](#queryoptions)
@@ -16,14 +16,14 @@ weight: 5
-##### Enums:
+**Enums:**
- [ConsulConsistencyModes](#consulconsistencymodes)
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/query_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/consul/query_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/consul/query_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/consul/query_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/cors/cors.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/cors/cors.proto.sk.md
index a2b2337f125..d539f67d224 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/cors/cors.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/cors/cors.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "cors.proto"
+title: "Cors"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `cors.options.gloo.solo.io`
-#### Types:
+**Types:**
- [CorsPolicy](#corspolicy)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/cors/cors.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/cors/cors.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/cors/cors.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/cors/cors.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto.sk.md
index 25fc4a0d0fc..7ed14342218 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "dynamic_forward_proxy.proto"
+title: "DynamicForwardProxy"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `dfp.options.gloo.solo.io`
-#### Types:
+**Types:**
- [FilterConfig](#filterconfig)
@@ -23,14 +23,14 @@ weight: 5
-##### Enums:
+**Enums:**
- [DnsLookupFamily](#dnslookupfamily)
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/dynamic_forward_proxy/dynamic_forward_proxy.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/faultinjection/fault.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/faultinjection/fault.proto.sk.md
index f979eede827..445cacde9af 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/faultinjection/fault.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/faultinjection/fault.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "fault.proto"
+title: "Fault"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `fault.options.gloo.solo.io`
-#### Types:
+**Types:**
- [RouteAbort](#routeabort)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/faultinjection/fault.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/faultinjection/fault.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/faultinjection/fault.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/faultinjection/fault.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/graphql/graphql.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/graphql/graphql.proto.sk.md
index 9eb49631acb..29722d51923 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/graphql/graphql.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/graphql/graphql.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "graphql.proto"
+title: "Graphql"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `graphql.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ServiceSpec](#servicespec)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/graphql/graphql.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/graphql/graphql.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/graphql/graphql.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/graphql/graphql.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc/grpc.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc/grpc.proto.sk.md
index 95698e0f4ce..cbfab7c8a46 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc/grpc.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc/grpc.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "grpc.proto"
+title: "Grpc"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `grpc.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ServiceSpec](#servicespec)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc/grpc.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/grpc/grpc.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc/grpc.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/grpc/grpc.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_json/grpc_json.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_json/grpc_json.proto.sk.md
index 008089a89a5..ac0462249b6 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_json/grpc_json.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_json/grpc_json.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "grpc_json.proto"
+title: "GrpcJson"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `grpc_json.options.gloo.solo.io`
-#### Types:
+**Types:**
- [GrpcJsonTranscoder](#grpcjsontranscoder)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_json/grpc_json.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/grpc_json/grpc_json.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_json/grpc_json.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/grpc_json/grpc_json.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_web/grpc_web.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_web/grpc_web.proto.sk.md
index 3619a6a856e..e6f0cb6b18f 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_web/grpc_web.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_web/grpc_web.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "grpc_web.proto"
+title: "GrpcWeb"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `grpc_web.options.gloo.solo.io`
-#### Types:
+**Types:**
- [GrpcWeb](#grpcweb)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_web/grpc_web.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/grpc_web/grpc_web.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/grpc_web/grpc_web.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/grpc_web/grpc_web.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/hcm/hcm.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/hcm/hcm.proto.sk.md
index 52712b18367..af4de93027b 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/hcm/hcm.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/hcm/hcm.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "hcm.proto"
+title: "Hcm"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `hcm.options.gloo.solo.io`
-#### Types:
+**Types:**
- [HttpConnectionManagerSettings](#httpconnectionmanagersettings)
@@ -25,7 +25,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/hcm/hcm.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/hcm/hcm.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/hcm/hcm.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/hcm/hcm.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/header_validation/header_validation.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/header_validation/header_validation.proto.sk.md
index 5083b2fc4e2..825bb475ca1 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/header_validation/header_validation.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/header_validation/header_validation.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "header_validation.proto"
+title: "HeaderValidation"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `header_validation.options.gloo.solo.io`
-#### Types:
+**Types:**
- [HeaderValidationSettings](#headervalidationsettings)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/header_validation/header_validation.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/header_validation/header_validation.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/header_validation/header_validation.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/header_validation/header_validation.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/headers/headers.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/headers/headers.proto.sk.md
index f7739ea1b7d..d60fd3093fa 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/headers/headers.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/headers/headers.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "headers.proto"
+title: "Headers"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `headers.options.gloo.solo.io`
-#### Types:
+**Types:**
- [HeaderManipulation](#headermanipulation)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/headers/headers.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/headers/headers.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/headers/headers.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/headers/headers.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/healthcheck/healthcheck.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/healthcheck/healthcheck.proto.sk.md
index 303f620006e..27cbc173f11 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/healthcheck/healthcheck.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/healthcheck/healthcheck.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "healthcheck.proto"
+title: "Healthcheck"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `healthcheck.options.gloo.solo.io`
-#### Types:
+**Types:**
- [HealthCheck](#healthcheck)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/healthcheck/healthcheck.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/healthcheck/healthcheck.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/healthcheck/healthcheck.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/healthcheck/healthcheck.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/kubernetes/kubernetes.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/kubernetes/kubernetes.proto.sk.md
index dabe175eaf3..84167bca857 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/kubernetes/kubernetes.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/kubernetes/kubernetes.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "kubernetes.proto"
+title: "Kubernetes"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `kubernetes.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/kubernetes/kubernetes.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/kubernetes/kubernetes.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/kubernetes/kubernetes.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/kubernetes/kubernetes.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/lbhash/lbhash.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/lbhash/lbhash.proto.sk.md
index e28e5387ea1..35d0c69d444 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/lbhash/lbhash.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/lbhash/lbhash.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "lbhash.proto"
+title: "Lbhash"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `lbhash.options.gloo.solo.io`
-#### Types:
+**Types:**
- [RouteActionHashConfig](#routeactionhashconfig)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/lbhash/lbhash.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/lbhash/lbhash.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/lbhash/lbhash.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/lbhash/lbhash.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto.sk.md
index dd61ef6e130..1bd742c9ab8 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "local_ratelimit.proto"
+title: "LocalRatelimit"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `local_ratelimit.options.gloo.solo.io`
-#### Types:
+**Types:**
- [TokenBucket](#tokenbucket)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/local_ratelimit/local_ratelimit.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/pipe/pipe.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/pipe/pipe.proto.sk.md
index cd3866fa664..4c80adf1ba1 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/pipe/pipe.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/pipe/pipe.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "pipe.proto"
+title: "Pipe"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `pipe.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/pipe/pipe.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/pipe/pipe.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/pipe/pipe.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/pipe/pipe.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol/protocol.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol/protocol.proto.sk.md
index aa47e0284f3..c82b2fc6ca6 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol/protocol.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol/protocol.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "protocol.proto"
+title: "Protocol"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `protocol.options.gloo.solo.io`
-#### Types:
+**Types:**
- [HttpProtocolOptions](#httpprotocoloptions)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol/protocol.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/protocol/protocol.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol/protocol.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/protocol/protocol.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto.sk.md
index e514e707f0b..23ffc1aa600 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "protocol_upgrade.proto"
+title: "ProtocolUpgrade"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `protocol_upgrade.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ProtocolUpgradeConfig](#protocolupgradeconfig)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/protocol_upgrade/protocol_upgrade.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto.sk.md
index c77603ec9d9..7b751460be4 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "proxy_protocol.proto"
+title: "ProxyProtocol"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `proxy_protocol.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ProxyProtocol](#proxyprotocol)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/proxy_protocol/proxy_protocol.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/rest/rest.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/rest/rest.proto.sk.md
index dd0c9697471..78a5c73ee50 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/rest/rest.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/rest/rest.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "rest.proto"
+title: "Rest"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `rest.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ServiceSpec](#servicespec)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/rest/rest.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/rest/rest.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/rest/rest.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/rest/rest.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/retries/retries.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/retries/retries.proto.sk.md
index 1d6f61c07a5..cc57dd51337 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/retries/retries.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/retries/retries.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "retries.proto"
+title: "Retries"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `retries.options.gloo.solo.io`
-#### Types:
+**Types:**
- [RetryBackOff](#retrybackoff)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/retries/retries.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/retries/retries.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/retries/retries.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/retries/retries.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/router/router.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/router/router.proto.sk.md
index 978802bd2e2..433a87d7cfe 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/router/router.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/router/router.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "router.proto"
+title: "Router"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Router](#router)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/router/router.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/router/router.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/router/router.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/router/router.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/service_spec.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/service_spec.proto.sk.md
index d16c07e1354..900ba0417d7 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/service_spec.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/service_spec.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "service_spec.proto"
+title: "ServiceSpec"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `options.gloo.solo.io`
-#### Types:
+**Types:**
- [ServiceSpec](#servicespec)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/service_spec.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/service_spec.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/service_spec.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/service_spec.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/shadowing/shadowing.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/shadowing/shadowing.proto.sk.md
index 22655be8715..c3e72f3db85 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/shadowing/shadowing.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/shadowing/shadowing.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "shadowing.proto"
+title: "Shadowing"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `shadowing.options.gloo.solo.io`
-#### Types:
+**Types:**
- [RouteShadowing](#routeshadowing)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/shadowing/shadowing.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/shadowing/shadowing.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/shadowing/shadowing.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/shadowing/shadowing.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/static/static.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/static/static.proto.sk.md
index c0c58b5ec69..8d289e8156d 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/static/static.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/static/static.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "static.proto"
+title: "Static"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `static.options.gloo.solo.io`
-#### Types:
+**Types:**
- [UpstreamSpec](#upstreamspec)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/static/static.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/static/static.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/static/static.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/static/static.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/stats/stats.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/stats/stats.proto.sk.md
index 0bdd6cc1cbf..df85edc0725 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/stats/stats.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/stats/stats.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "stats.proto"
+title: "Stats"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `stats.options.gloo.solo.io`
-#### Types:
+**Types:**
- [Stats](#stats)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/stats/stats.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/stats/stats.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/stats/stats.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/stats/stats.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/subset_spec.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/subset_spec.proto.sk.md
index d2a66489b83..cb2d10b230a 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/subset_spec.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/subset_spec.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "subset_spec.proto"
+title: "SubsetSpec"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `options.gloo.solo.io`
-#### Types:
+**Types:**
- [SubsetSpec](#subsetspec)
@@ -18,14 +18,14 @@ weight: 5
-##### Enums:
+**Enums:**
- [FallbackPolicy](#fallbackpolicy)
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/subset_spec.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/subset_spec.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/subset_spec.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/subset_spec.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tcp/tcp.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tcp/tcp.proto.sk.md
index d53d92a097c..9586332075e 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tcp/tcp.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tcp/tcp.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "tcp.proto"
+title: "Tcp"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `tcp.options.gloo.solo.io`
-#### Types:
+**Types:**
- [TcpProxySettings](#tcpproxysettings)
@@ -19,7 +19,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/tcp/tcp.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/tcp/tcp.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/tcp/tcp.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/tcp/tcp.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tracing/tracing.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tracing/tracing.proto.sk.md
index a9329f9b88e..96d103fe61f 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tracing/tracing.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/tracing/tracing.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "tracing.proto"
+title: "Tracing"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `tracing.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ListenerTracingSettings](#listenertracingsettings)
@@ -20,7 +20,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/tracing/tracing.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/tracing/tracing.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/tracing/tracing.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/tracing/tracing.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/parameters.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/parameters.proto.sk.md
index 2e0598f5a3c..b03de05466d 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/parameters.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/parameters.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "parameters.proto"
+title: "Parameters"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `transformation.options.gloo.solo.io`
-#### Types:
+**Types:**
- [Parameters](#parameters)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/parameters.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/transformation/parameters.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/parameters.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/transformation/parameters.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/transformation.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/transformation.proto.sk.md
index 7b166a86138..f5a5146da62 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/transformation.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/transformation.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "transformation.proto"
+title: "Transformation"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `transformation.options.gloo.solo.io`
-#### Types:
+**Types:**
- [ResponseMatch](#responsematch)
@@ -34,7 +34,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/transformation.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/transformation/transformation.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/transformation/transformation.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/transformation/transformation.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/wasm/wasm.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/wasm/wasm.proto.sk.md
index 6d92484df4e..6ea35fb271f 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/wasm/wasm.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/options/wasm/wasm.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "wasm.proto"
+title: "Wasm"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `wasm.options.gloo.solo.io`
-#### Types:
+**Types:**
- [PluginSource](#pluginsource)
@@ -21,7 +21,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/wasm/wasm.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/wasm/wasm.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/options/wasm/wasm.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/options/wasm/wasm.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto.sk.md
index 0a333c30230..be35e7ea9ac 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "proxy.proto"
+title: "Proxy"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Proxy](#proxy) **Top-Level Resource**
@@ -43,7 +43,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/proxy.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/proxy.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/proxy.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_configuration_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_configuration_options.proto.sk.md
index 1c0218551a2..bf4745795c1 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_configuration_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_configuration_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "route_configuration_options.proto"
+title: "RouteConfigurationOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [RouteConfigurationOptions](#routeconfigurationoptions)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/route_configuration_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/route_configuration_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/route_configuration_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/route_configuration_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_options.proto.sk.md
index 3e7df2bab92..3d035f7ea3c 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/route_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "route_options.proto"
+title: "RouteOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [RouteOptions](#routeoptions)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/route_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/route_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/route_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/route_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/secret.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/secret.proto.sk.md
index 3d226a669b2..46899097061 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/secret.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/secret.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "secret.proto"
+title: "Secret"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Secret](#secret) **Top-Level Resource**
@@ -22,7 +22,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/secret.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/secret.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/secret.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/secret.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/settings.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/settings.proto.sk.md
index 43fb88d4511..d82918ad4de 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/settings.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/settings.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "settings.proto"
+title: "Settings"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Settings](#settings) **Top-Level Resource**
@@ -53,7 +53,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/settings.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/settings.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/settings.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/settings.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/ssl/ssl.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/ssl/ssl.proto.sk.md
index 72f6bc8d40a..06e9a59d591 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/ssl/ssl.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/ssl/ssl.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ssl.proto"
+title: "Ssl"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [SslConfig](#sslconfig)
@@ -24,7 +24,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/ssl/ssl.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/ssl/ssl.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/ssl/ssl.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/ssl/ssl.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto.sk.md
index 34712cea4bb..cf3e077e4fc 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "subset.proto"
+title: "Subset"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Subset](#subset)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/subset.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/subset.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/subset.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/tcp_listener_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/tcp_listener_options.proto.sk.md
index 352069de4ec..41d99bd8caf 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/tcp_listener_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/tcp_listener_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "tcp_listener_options.proto"
+title: "TcpListenerOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [TcpListenerOptions](#tcplisteneroptions)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/tcp_listener_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/tcp_listener_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/tcp_listener_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/tcp_listener_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/upstream.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/upstream.proto.sk.md
index 8e4c606a35c..adb012e0a61 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/upstream.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/upstream.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "upstream.proto"
+title: "Upstream"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [Upstream](#upstream) **Top-Level Resource**
@@ -20,7 +20,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/upstream.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/upstream.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/upstream.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/upstream.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/virtual_host_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/virtual_host_options.proto.sk.md
index db2e94ee2cb..79282575fde 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/virtual_host_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/virtual_host_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "virtual_host_options.proto"
+title: "VirtualHostOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [VirtualHostOptions](#virtualhostoptions)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/virtual_host_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/virtual_host_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/virtual_host_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/virtual_host_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/weighted_destination_options.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/weighted_destination_options.proto.sk.md
index e4f26f4b9af..d7b13f2329a 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/weighted_destination_options.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/gloo/api/v1/weighted_destination_options.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "weighted_destination_options.proto"
+title: "WeightedDestinationOptions"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `gloo.solo.io`
-#### Types:
+**Types:**
- [WeightedDestinationOptions](#weighteddestinationoptions)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/weighted_destination_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/weighted_destination_options.proto)
+**Source File: [github.com/solo-io/gloo/projects/gloo/api/v1/weighted_destination_options.proto](https://github.com/solo-io/gloo/blob/main/projects/gloo/api/v1/weighted_destination_options.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/ingress.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/ingress.proto.sk.md
index 2ad5d5f473f..57b8395b7dc 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/ingress.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/ingress.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ingress.proto"
+title: "Ingress"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `ingress.solo.io`
-#### Types:
+**Types:**
- [Ingress](#ingress) **Top-Level Resource**
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/ingress/api/v1/ingress.proto](https://github.com/solo-io/gloo/blob/main/projects/ingress/api/v1/ingress.proto)
+**Source File: [github.com/solo-io/gloo/projects/ingress/api/v1/ingress.proto](https://github.com/solo-io/gloo/blob/main/projects/ingress/api/v1/ingress.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/service.proto.sk.md b/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/service.proto.sk.md
index 8ffeb4226db..7020773c35c 100644
--- a/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/service.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/gloo/projects/ingress/api/v1/service.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "service.proto"
+title: "Service"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `ingress.solo.io`
-#### Types:
+**Types:**
- [KubeService](#kubeservice) **Top-Level Resource**
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/gloo/projects/ingress/api/v1/service.proto](https://github.com/solo-io/gloo/blob/main/projects/ingress/api/v1/service.proto)
+**Source File: [github.com/solo-io/gloo/projects/ingress/api/v1/service.proto](https://github.com/solo-io/gloo/blob/main/projects/ingress/api/v1/service.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/any.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/any.proto.sk.md
index d271aebb13b..a1741779b8f 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/any.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/any.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "any.proto"
+title: "Any"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [Any](#any)
@@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/any.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/any.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/any.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/any.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/api.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/api.proto.sk.md
index 831f5fb4a85..5d4d02a3637 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/api.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/api.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "api.proto"
+title: "Api"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [Api](#api)
@@ -50,7 +50,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/api.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/api.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/api.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/api.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/descriptor.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/descriptor.proto.sk.md
index cf607617aa9..12440695676 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/descriptor.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/descriptor.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "descriptor.proto"
+title: "Descriptor"
weight: 5
---
@@ -47,7 +47,7 @@ without any other information (e.g. without reading its imports).
-#### Types:
+**Types:**
- [FileDescriptorSet](#filedescriptorset)
@@ -87,7 +87,7 @@ without any other information (e.g. without reading its imports).
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/descriptor.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/descriptor.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/descriptor.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/descriptor.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/duration.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/duration.proto.sk.md
index c7e4f2ed475..6aa06ca6caf 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/duration.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/duration.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "duration.proto"
+title: "Duration"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [Duration](#duration)
@@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/duration.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/duration.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/duration.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/duration.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/empty.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/empty.proto.sk.md
index 8e0ec262cfb..84fd1068ab2 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/empty.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/empty.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "empty.proto"
+title: "Empty"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [Empty](#empty)
@@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/empty.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/empty.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/empty.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/empty.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/field_mask.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/field_mask.proto.sk.md
index 4be4c5f18e6..797e9d6c2ba 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/field_mask.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/field_mask.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "field_mask.proto"
+title: "FieldMask"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [FieldMask](#fieldmask)
@@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/field_mask.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/field_mask.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/field_mask.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/field_mask.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/source_context.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/source_context.proto.sk.md
index 785b52b78b1..94ef3b9938c 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/source_context.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/source_context.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "source_context.proto"
+title: "SourceContext"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [SourceContext](#sourcecontext)
@@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/source_context.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/source_context.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/source_context.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/source_context.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/struct.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/struct.proto.sk.md
index 8c027131306..1fb3103d262 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/struct.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/struct.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "struct.proto"
+title: "Struct"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [Struct](#struct)
@@ -50,14 +50,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Enums:
+**Enums:**
- [NullValue](#nullvalue)
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/struct.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/struct.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/struct.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/struct.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/timestamp.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/timestamp.proto.sk.md
index 33b98b894ee..898fe7fe111 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/timestamp.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/timestamp.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "timestamp.proto"
+title: "Timestamp"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [Timestamp](#timestamp)
@@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/timestamp.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/timestamp.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/timestamp.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/timestamp.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/type.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/type.proto.sk.md
index a6856def5d1..de2f24b21e0 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/type.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/type.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "type.proto"
+title: "Type"
weight: 5
---
@@ -40,7 +40,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#### Types:
+**Types:**
- [Type](#type)
@@ -54,14 +54,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-##### Enums:
+**Enums:**
- [Syntax](#syntax)
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/type.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/type.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/type.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/type.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/wrappers.proto.sk.md b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/wrappers.proto.sk.md
index 1562016e90c..ca278673d52 100644
--- a/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/wrappers.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/protoc-gen-ext/external/google/protobuf/wrappers.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "wrappers.proto"
+title: "Wrappers"
weight: 5
---
@@ -49,7 +49,7 @@ individual entries of a map or fields of a oneof can already detect presence.
-#### Types:
+**Types:**
- [DoubleValue](#doublevalue)
@@ -65,7 +65,7 @@ individual entries of a map or fields of a oneof can already detect presence.
-##### Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/wrappers.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/wrappers.proto)
+**Source File: [github.com/solo-io/protoc-gen-ext/external/google/protobuf/wrappers.proto](https://github.com/solo-io/protoc-gen-ext/blob/main/external/google/protobuf/wrappers.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/skv2/api/core/v1/core.proto.sk.md b/docs/content/reference/api/github.com/solo-io/skv2/api/core/v1/core.proto.sk.md
index 18f566fdfd8..d77e91ec87e 100644
--- a/docs/content/reference/api/github.com/solo-io/skv2/api/core/v1/core.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/skv2/api/core/v1/core.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "core.proto"
+title: "Core"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `core.skv2.solo.io`
-#### Types:
+**Types:**
- [ObjectRef](#objectref)
@@ -27,7 +27,7 @@ weight: 5
-##### Source File: [github.com/solo-io/skv2/api/core/v1/core.proto](https://github.com/solo-io/skv2/blob/main/api/core/v1/core.proto)
+**Source File: [github.com/solo-io/skv2/api/core/v1/core.proto](https://github.com/solo-io/skv2/blob/main/api/core/v1/core.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/skv2/api/multicluster/v1alpha1/cluster.proto.sk.md b/docs/content/reference/api/github.com/solo-io/skv2/api/multicluster/v1alpha1/cluster.proto.sk.md
index b193c3068ed..f890062c7e8 100644
--- a/docs/content/reference/api/github.com/solo-io/skv2/api/multicluster/v1alpha1/cluster.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/skv2/api/multicluster/v1alpha1/cluster.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "cluster.proto"
+title: "Cluster"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `multicluster.solo.io`
-#### Types:
+**Types:**
- [KubernetesClusterSpec](#kubernetesclusterspec)
@@ -20,7 +20,7 @@ weight: 5
-##### Source File: [github.com/solo-io/skv2/api/multicluster/v1alpha1/cluster.proto](https://github.com/solo-io/skv2/blob/main/api/multicluster/v1alpha1/cluster.proto)
+**Source File: [github.com/solo-io/skv2/api/multicluster/v1alpha1/cluster.proto](https://github.com/solo-io/skv2/blob/main/api/multicluster/v1alpha1/cluster.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/core/v1/placement.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/core/v1/placement.proto.sk.md
index 198bf6bfd10..1357d1e6b4b 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/core/v1/placement.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/core/v1/placement.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "placement.proto"
+title: "Placement"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `core.fed.solo.io`
-#### Types:
+**Types:**
- [TemplateMetadata](#templatemetadata)
@@ -20,7 +20,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-apis/api/gloo-fed/fed/core/v1/placement.proto](https://github.com/solo-io/solo-apis/blob/main/api/gloo-fed/fed/core/v1/placement.proto)
+**Source File: [github.com/solo-io/solo-apis/api/gloo-fed/fed/core/v1/placement.proto](https://github.com/solo-io/solo-apis/blob/main/api/gloo-fed/fed/core/v1/placement.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/failover.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/failover.proto.sk.md
index 0b73d7e95e2..c7e493ccef1 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/failover.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/failover.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "failover.proto"
+title: "Failover"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `fed.solo.io`
-#### Types:
+**Types:**
- [FailoverSchemeSpec](#failoverschemespec)
@@ -21,7 +21,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/failover.proto](https://github.com/solo-io/solo-apis/blob/main/api/gloo-fed/fed/v1/failover.proto)
+**Source File: [github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/failover.proto](https://github.com/solo-io/solo-apis/blob/main/api/gloo-fed/fed/v1/failover.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/instance.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/instance.proto.sk.md
index 394a42731c4..67685fcb22b 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/instance.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/instance.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "instance.proto"
+title: "Instance"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `fed.solo.io`
-#### Types:
+**Types:**
- [GlooInstanceSpec](#glooinstancespec)
@@ -26,7 +26,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/instance.proto](https://github.com/solo-io/solo-apis/blob/main/api/gloo-fed/fed/v1/instance.proto)
+**Source File: [github.com/solo-io/solo-apis/api/gloo-fed/fed/v1/instance.proto](https://github.com/solo-io/solo-apis/blob/main/api/gloo-fed/fed/v1/instance.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-apis/api/rate-limiter/v1alpha1/ratelimit.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-apis/api/rate-limiter/v1alpha1/ratelimit.proto.sk.md
index 0f9f21354a9..bd73e75970f 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-apis/api/rate-limiter/v1alpha1/ratelimit.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-apis/api/rate-limiter/v1alpha1/ratelimit.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ratelimit.proto"
+title: "Ratelimit"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `ratelimit.api.solo.io`
-#### Types:
+**Types:**
- [RateLimitConfigSpec](#ratelimitconfigspec)
@@ -41,7 +41,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-apis/api/rate-limiter/v1alpha1/ratelimit.proto](https://github.com/solo-io/solo-apis/blob/main/api/rate-limiter/v1alpha1/ratelimit.proto)
+**Source File: [github.com/solo-io/solo-apis/api/rate-limiter/v1alpha1/ratelimit.proto](https://github.com/solo-io/solo-apis/blob/main/api/rate-limiter/v1alpha1/ratelimit.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/address.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/address.proto.sk.md
index 6cc8b8b0b67..728d315bb7a 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/address.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/address.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "address.proto"
+title: "Address"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `solo.io.envoy.api.v2.core`
-#### Types:
+**Types:**
- [Pipe](#pipe)
@@ -22,7 +22,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/address.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/address.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/address.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/address.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/base.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/base.proto.sk.md
index 4cb16c46a54..5ec54675623 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/base.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/base.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "base.proto"
+title: "Base"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `solo.io.envoy.api.v2.core`
-#### Types:
+**Types:**
- [Locality](#locality)
@@ -31,7 +31,7 @@ weight: 5
-##### Enums:
+**Enums:**
- [RoutingPriority](#routingpriority)
@@ -40,7 +40,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/base.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/base.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/base.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/base.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/http_uri.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/http_uri.proto.sk.md
index 1bc4e6b9494..f20aa195ed9 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/http_uri.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/http_uri.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "http_uri.proto"
+title: "HttpUri"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `solo.io.envoy.api.v2.core`
-#### Types:
+**Types:**
- [HttpUri](#httpuri)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/http_uri.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/http_uri.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/http_uri.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/http_uri.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/socket_option.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/socket_option.proto.sk.md
index 23a16c9f872..8af318c82a0 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/socket_option.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/socket_option.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "socket_option.proto"
+title: "SocketOption"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `solo.io.envoy.api.v2.core`
-#### Types:
+**Types:**
- [SocketOption](#socketoption)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/socket_option.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/socket_option.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/core/socket_option.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/core/socket_option.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/discovery.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/discovery.proto.sk.md
index 2c2f55b00be..bbcfdaac833 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/discovery.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/api/v2/discovery.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "discovery.proto"
+title: "Discovery"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `envoy.api.v2`
-#### Types:
+**Types:**
- [DiscoveryRequest](#discoveryrequest)
@@ -20,7 +20,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/discovery.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/discovery.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/envoy/api/v2/discovery.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/api/v2/discovery.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/percent.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/percent.proto.sk.md
index b73a454a329..be25eda3e1a 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/percent.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/percent.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "percent.proto"
+title: "Percent"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `solo.io.envoy.type`
-#### Types:
+**Types:**
- [Percent](#percent)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/external/envoy/type/percent.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/type/percent.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/envoy/type/percent.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/type/percent.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/semantic_version.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/semantic_version.proto.sk.md
index 2a2b45bba81..08faea26f42 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/semantic_version.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/envoy/type/semantic_version.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "semantic_version.proto"
+title: "SemanticVersion"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `solo.io.envoy.type`
-#### Types:
+**Types:**
- [SemanticVersion](#semanticversion)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/external/envoy/type/semantic_version.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/type/semantic_version.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/envoy/type/semantic_version.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/envoy/type/semantic_version.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/annotations.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/annotations.proto.sk.md
index a9a085d9272..58c46d8d094 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/annotations.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/annotations.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "annotations.proto"
+title: "Annotations"
weight: 5
---
@@ -25,7 +25,7 @@ limitations under the License.
-##### Source File: [github.com/solo-io/solo-kit/api/external/google/api/annotations.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/google/api/annotations.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/google/api/annotations.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/google/api/annotations.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/http.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/http.proto.sk.md
index bfcfd46ef0e..9b08990aa50 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/http.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/api/http.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "http.proto"
+title: "Http"
weight: 5
---
@@ -24,7 +24,7 @@ limitations under the License.
-#### Types:
+**Types:**
- [Http](#http)
@@ -34,7 +34,7 @@ limitations under the License.
-##### Source File: [github.com/solo-io/solo-kit/api/external/google/api/http.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/google/api/http.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/google/api/http.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/google/api/http.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/rpc/status.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/rpc/status.proto.sk.md
index 675bb8c5e7e..23cc34ce13b 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/rpc/status.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/google/rpc/status.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "status.proto"
+title: "Status"
weight: 5
---
@@ -24,7 +24,7 @@ limitations under the License.
-#### Types:
+**Types:**
- [Status](#status)
@@ -32,7 +32,7 @@ limitations under the License.
-##### Source File: [github.com/solo-io/solo-kit/api/external/google/rpc/status.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/google/rpc/status.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/google/rpc/status.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/google/rpc/status.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/metrics.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/metrics.proto.sk.md
index 1e66e592ab3..652607ae062 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/metrics.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/metrics.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "metrics.proto"
+title: "Metrics"
weight: 5
---
@@ -23,7 +23,7 @@ limitations under the License.
-#### Types:
+**Types:**
- [LabelPair](#labelpair)
@@ -40,14 +40,14 @@ limitations under the License.
-##### Enums:
+**Enums:**
- [MetricType](#metrictype)
-##### Source File: [github.com/solo-io/solo-kit/api/external/metrics.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/metrics.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/metrics.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/metrics.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/trace.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/trace.proto.sk.md
index 1ef38ae84c0..39de7336bf9 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/trace.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/external/trace.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "trace.proto"
+title: "Trace"
weight: 5
---
@@ -24,7 +24,7 @@ limitations under the License.
-#### Types:
+**Types:**
- [Span](#span)
@@ -49,7 +49,7 @@ limitations under the License.
-##### Source File: [github.com/solo-io/solo-kit/api/external/trace.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/trace.proto)
+**Source File: [github.com/solo-io/solo-kit/api/external/trace.proto](https://github.com/solo-io/solo-kit/blob/main/api/external/trace.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/metadata.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/metadata.proto.sk.md
index 40635b63c3e..1bd61d33cdb 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/metadata.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/metadata.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "metadata.proto"
+title: "Metadata"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `core.solo.io`
-#### Types:
+**Types:**
- [Metadata](#metadata)
@@ -17,7 +17,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/v1/metadata.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/metadata.proto)
+**Source File: [github.com/solo-io/solo-kit/api/v1/metadata.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/metadata.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/ref.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/ref.proto.sk.md
index 1a0667c5764..f672f9c63d9 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/ref.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/ref.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "ref.proto"
+title: "Ref"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `core.solo.io`
-#### Types:
+**Types:**
- [ResourceRef](#resourceref)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/v1/ref.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/ref.proto)
+**Source File: [github.com/solo-io/solo-kit/api/v1/ref.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/ref.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/solo-kit.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/solo-kit.proto.sk.md
index 76e31dfe22f..7f7ae90b99f 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/solo-kit.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/solo-kit.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "solo-kit.proto"
+title: "SoloKit"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `core.solo.io`
-#### Types:
+**Types:**
- [Resource](#resource)
@@ -16,7 +16,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/v1/solo-kit.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/solo-kit.proto)
+**Source File: [github.com/solo-io/solo-kit/api/v1/solo-kit.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/solo-kit.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/status.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/status.proto.sk.md
index 3614ef0069c..6e77964a9de 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/status.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/v1/status.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "status.proto"
+title: "Status"
weight: 5
---
@@ -8,7 +8,7 @@ weight: 5
### Package: `core.solo.io`
-#### Types:
+**Types:**
- [NamespacedStatuses](#namespacedstatuses)
@@ -18,7 +18,7 @@ weight: 5
-##### Source File: [github.com/solo-io/solo-kit/api/v1/status.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/status.proto)
+**Source File: [github.com/solo-io/solo-kit/api/v1/status.proto](https://github.com/solo-io/solo-kit/blob/main/api/v1/status.proto)**
diff --git a/docs/content/reference/api/github.com/solo-io/solo-kit/api/xds/solo-discovery-service.proto.sk.md b/docs/content/reference/api/github.com/solo-io/solo-kit/api/xds/solo-discovery-service.proto.sk.md
index d0b61aa3f81..f2b92ba64f6 100644
--- a/docs/content/reference/api/github.com/solo-io/solo-kit/api/xds/solo-discovery-service.proto.sk.md
+++ b/docs/content/reference/api/github.com/solo-io/solo-kit/api/xds/solo-discovery-service.proto.sk.md
@@ -1,6 +1,6 @@
---
-title: "solo-discovery-service.proto"
+title: "SoloDiscoveryService"
weight: 5
---
@@ -9,7 +9,7 @@ weight: 5
### Package: `solo.io.xds`
-##### Source File: [github.com/solo-io/solo-kit/api/xds/solo-discovery-service.proto](https://github.com/solo-io/solo-kit/blob/main/api/xds/solo-discovery-service.proto)
+**Source File: [github.com/solo-io/solo-kit/api/xds/solo-discovery-service.proto](https://github.com/solo-io/solo-kit/blob/main/api/xds/solo-discovery-service.proto)**
diff --git a/docs/content/static/content/osa_provided.md b/docs/content/static/content/osa_provided.md
index 68a79f94c84..3d385264016 100644
--- a/docs/content/static/content/osa_provided.md
+++ b/docs/content/static/content/osa_provided.md
@@ -48,6 +48,7 @@ Name|Version|License
[spf13/cobra](https://github.com/spf13/cobra)|v1.8.1|Apache License 2.0
[spf13/pflag](https://github.com/spf13/pflag)|v1.0.5|BSD 3-clause "New" or "Revised" License
[spf13/viper](https://github.com/spf13/viper)|v1.19.0|MIT License
+[stoewer/go-strcase](https://github.com/stoewer/go-strcase)|v1.3.0|MIT License
[stretchr/testify](https://github.com/stretchr/testify)|v1.9.0|MIT License
[go.opencensus.io](https://go.opencensus.io)|v0.24.0|Apache License 2.0
[go.uber.org/goleak](https://go.uber.org/goleak)|v1.3.0|MIT License
diff --git a/go.mod b/go.mod
index a5fee09521c..84f5d7b779e 100644
--- a/go.mod
+++ b/go.mod
@@ -58,7 +58,7 @@ require (
// Ref: https://github.com/solo-io/gloo/pull/9463/files#r1594409655 && https://solo-io-corp.slack.com/archives/C03MFATU265/p1716913420716729?thread_ts=1716476992.938679&cid=C03MFATU265
// as to why it is now based off `gloo-main` and not `gloo-repo-branch`
github.com/solo-io/solo-apis v0.0.0-20240917212400-9103ca169358
- github.com/solo-io/solo-kit v0.36.2
+ github.com/solo-io/solo-kit v0.36.3
github.com/spf13/afero v1.11.0
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
@@ -99,6 +99,7 @@ require (
github.com/google/uuid v1.6.0
github.com/mccutchen/go-httpbin/v2 v2.15.0
github.com/quasilyte/go-ruleguard/dsl v0.3.22
+ github.com/stoewer/go-strcase v1.3.0
github.com/stretchr/testify v1.9.0
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
google.golang.org/genproto/googleapis/api v0.0.0-20241021214115-324edc3d5d38
@@ -301,7 +302,6 @@ require (
github.com/solo-io/anyvendor v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/cast v1.7.0 // indirect
- github.com/stoewer/go-strcase v1.3.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xanzy/ssh-agent v0.3.0 // indirect
diff --git a/go.sum b/go.sum
index 72446cbce8a..cf941f31bde 100644
--- a/go.sum
+++ b/go.sum
@@ -2707,8 +2707,8 @@ github.com/solo-io/skv2 v0.41.0 h1:NRZUe83LquB8zR++SY36JKhw1abRd+SBuGUGAHS9rWA=
github.com/solo-io/skv2 v0.41.0/go.mod h1:GtEN0CCne94tm710YbefQh9YcMFcIu2X490g7Loq/Zs=
github.com/solo-io/solo-apis v0.0.0-20240917212400-9103ca169358 h1:yNJpr6sKTBUJ0XbYEdOZuFEr+umyq4XgB/GR1cbhCCI=
github.com/solo-io/solo-apis v0.0.0-20240917212400-9103ca169358/go.mod h1:xWaT1lP+nkAGYCuAtRdG1l4MsdKwphqeomC41AIsemY=
-github.com/solo-io/solo-kit v0.36.2 h1:oZCrgseICHC2j88TCHeS9y8p5ffRRsXspy3jwWcZewY=
-github.com/solo-io/solo-kit v0.36.2/go.mod h1:tLK3BllHZZUZsvgG3paVzux8ccmItKadqLSg7nOltDw=
+github.com/solo-io/solo-kit v0.36.3 h1:ElzKyTgJLxyiyxQhkAwzukDfIFshA3LER44SIIA9cRY=
+github.com/solo-io/solo-kit v0.36.3/go.mod h1:tLK3BllHZZUZsvgG3paVzux8ccmItKadqLSg7nOltDw=
github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo=
github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0=
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
diff --git a/install/helm/gloo/crds/enterprise.gloo.solo.io_v1_AuthConfig.yaml b/install/helm/gloo/crds/enterprise.gloo.solo.io_v1_AuthConfig.yaml
index 0a3fdbbaa1e..9fd8d5c3f6f 100644
--- a/install/helm/gloo/crds/enterprise.gloo.solo.io_v1_AuthConfig.yaml
+++ b/install/helm/gloo/crds/enterprise.gloo.solo.io_v1_AuthConfig.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_Gateway.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_Gateway.yaml
index 41ae44ae5e9..a9a3677ee1d 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_Gateway.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_Gateway.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_HttpListenerOption.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_HttpListenerOption.yaml
index bc38900b4fc..7d733186441 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_HttpListenerOption.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_HttpListenerOption.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_ListenerOption.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_ListenerOption.yaml
index 8f71493fed6..b2ad1f5017a 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_ListenerOption.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_ListenerOption.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_MatchableHttpGateway.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_MatchableHttpGateway.yaml
index 338657c0c6a..a2ef19adf12 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_MatchableHttpGateway.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_MatchableHttpGateway.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_MatchableTcpGateway.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_MatchableTcpGateway.yaml
index af4823d93b7..70abec4eb48 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_MatchableTcpGateway.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_MatchableTcpGateway.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_RouteOption.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_RouteOption.yaml
index 7645709d237..2169028ea93 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_RouteOption.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_RouteOption.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_RouteTable.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_RouteTable.yaml
index 64a37f07931..4ed310ea9f8 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_RouteTable.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_RouteTable.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_VirtualHostOption.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_VirtualHostOption.yaml
index 13c5614f8d9..050ce1f574a 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_VirtualHostOption.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_VirtualHostOption.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gateway.solo.io_v1_VirtualService.yaml b/install/helm/gloo/crds/gateway.solo.io_v1_VirtualService.yaml
index 7f38a5947ab..37e6bd9e719 100644
--- a/install/helm/gloo/crds/gateway.solo.io_v1_VirtualService.yaml
+++ b/install/helm/gloo/crds/gateway.solo.io_v1_VirtualService.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gloo.solo.io_v1_Proxy.yaml b/install/helm/gloo/crds/gloo.solo.io_v1_Proxy.yaml
index 0929d10c18c..31e53ff5801 100644
--- a/install/helm/gloo/crds/gloo.solo.io_v1_Proxy.yaml
+++ b/install/helm/gloo/crds/gloo.solo.io_v1_Proxy.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gloo.solo.io_v1_Settings.yaml b/install/helm/gloo/crds/gloo.solo.io_v1_Settings.yaml
index 5912403a6d3..9ccee93e6f1 100644
--- a/install/helm/gloo/crds/gloo.solo.io_v1_Settings.yaml
+++ b/install/helm/gloo/crds/gloo.solo.io_v1_Settings.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gloo.solo.io_v1_Upstream.yaml b/install/helm/gloo/crds/gloo.solo.io_v1_Upstream.yaml
index 2b52d95dcbd..ffd39e418ff 100644
--- a/install/helm/gloo/crds/gloo.solo.io_v1_Upstream.yaml
+++ b/install/helm/gloo/crds/gloo.solo.io_v1_Upstream.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/gloo.solo.io_v1_UpstreamGroup.yaml b/install/helm/gloo/crds/gloo.solo.io_v1_UpstreamGroup.yaml
index 1409e0a1585..82943d419aa 100644
--- a/install/helm/gloo/crds/gloo.solo.io_v1_UpstreamGroup.yaml
+++ b/install/helm/gloo/crds/gloo.solo.io_v1_UpstreamGroup.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
diff --git a/install/helm/gloo/crds/graphql.gloo.solo.io_v1beta1_GraphQLApi.yaml b/install/helm/gloo/crds/graphql.gloo.solo.io_v1beta1_GraphQLApi.yaml
index 7ac884444f9..8ca06486f88 100644
--- a/install/helm/gloo/crds/graphql.gloo.solo.io_v1beta1_GraphQLApi.yaml
+++ b/install/helm/gloo/crds/graphql.gloo.solo.io_v1beta1_GraphQLApi.yaml
@@ -1,4 +1,4 @@
-# Code generated by solo-kit. DO NOT EDIT.
+# CRD validation schema generated by solo-kit. DO NOT EDIT.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition