-
Notifications
You must be signed in to change notification settings - Fork 5.3k
docs: Unexclude remaining configs from validation #13534
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
66c0d93
9846e6f
5c0ecbd
2a0c622
f2d49bb
0524b2f
fc143ef
84a59c4
e3bed9d
efc4d19
0486e4d
1578721
ce06ed6
a4a5a1d
338dd2f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,20 +9,24 @@ exports_files(["protodoc_manifest.yaml"]) | |
|
|
||
| envoy_package() | ||
|
|
||
| # TODO(phlax): fix failing/excluded configs | ||
| # the following config only fails on windows: | ||
| # dns-cache-circuit-breaker: "Error: unable to read file: /etc/ssl/certs/ca-certificates.crt" | ||
|
|
||
| filegroup( | ||
| name = "configs", | ||
| srcs = glob( | ||
| ["root/**/*.yaml"], | ||
| [ | ||
| "root/**/*.yaml", | ||
| "root/**/*.pb", | ||
| ], | ||
| exclude = [ | ||
| "root/intro/_include/life-of-a-request.yaml", | ||
| # TODO(phlax/windows-dev): figure out how to get this working on windows | ||
| # "Error: unable to read file: /etc/ssl/certs/ca-certificates.crt" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll open an issue for this, it could dovetail with the idea of Envoy tapping into the trusted system cert pool as well potentially?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cool, will do |
||
| "root/configuration/http/http_filters/_include/dns-cache-circuit-breaker.yaml", | ||
| "root/intro/arch_overview/security/_include/ssl.yaml", | ||
| ], | ||
| ) + select({ | ||
| "//bazel:windows_x86_64": [], | ||
| "//conditions:default": [ | ||
| "root/configuration/http/http_filters/_include/dns-cache-circuit-breaker.yaml", | ||
| "root/configuration/http/http_filters/_include/grpc-reverse-bridge-filter.yaml", | ||
| "root/configuration/http/http_filters/_include/grpc-transcoder-filter.yaml", | ||
| "root/intro/arch_overview/security/_include/ssl.yaml", | ||
| ], | ||
| ), | ||
| }), | ||
| ) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| syntax = "proto3"; | ||
|
|
||
| package helloworld; | ||
|
|
||
| import "google/api/annotations.proto"; | ||
|
|
||
| // The greeting service definition. | ||
| service Greeter { | ||
| // Sends a greeting | ||
| rpc SayHello(HelloRequest) returns (HelloReply) { | ||
| option (google.api.http) = { | ||
| get: "/say" | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| // The request message containing the user's name. | ||
| message HelloRequest { | ||
| string name = 1; | ||
| } | ||
|
|
||
| // The response message containing the greetings | ||
| message HelloReply { | ||
| string message = 1; | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.