-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sysdump: Use intermediate import package for supported envoy resources
This is to avoid the similar happening again in the future, when we add more envoy resource types. Relates: #1756 Relates: cilium/cilium#26469 Signed-off-by: Tam Mach <[email protected]>
- Loading branch information
Showing
102 changed files
with
1,877 additions
and
3,439 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright Authors of Cilium | ||
|
||
package sysdump | ||
|
||
import ( | ||
// This package is having all supported envoy protobuf objects for envoy unmarshalling. | ||
// Such indirect import helps to reduce the effort of adding new envoy protobuf objects, | ||
// as we are already upgrading cilium/cilium version regularly. | ||
_ "github.com/cilium/cilium/pkg/envoy/resource" | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.