forked from envoyproxy/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: add hook to debug OIDC fail (envoyproxy#3914)
Signed-off-by: Karandashov Daniil <karandashovd@gmail.com>
- Loading branch information
Showing
10 changed files
with
123 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// Copyright Envoy Gateway Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// The full text of the Apache license is available in the LICENSE file at | ||
// the root of the repo. | ||
|
||
package troubleshoot | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
troubleshootv1b2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2" | ||
tbcollect "github.com/replicatedhq/troubleshoot/pkg/collect" | ||
"k8s.io/client-go/rest" | ||
|
||
"github.com/envoyproxy/gateway/internal/troubleshoot/collect" | ||
) | ||
|
||
func CollectResult(ctx context.Context, restConfig *rest.Config, bundlePath string, egNamespace string) tbcollect.CollectorResult { | ||
var result tbcollect.CollectorResult | ||
|
||
progressChan := make(chan interface{}) | ||
go func() { | ||
select { | ||
case <-ctx.Done(): | ||
close(progressChan) | ||
case msg := <-progressChan: | ||
fmt.Printf("Collecting support bundle: %v\n", msg) | ||
} | ||
}() | ||
|
||
collectors := []tbcollect.Collector{ | ||
// Collect the custom resources from Gateway API and EG | ||
collect.CustomResource{ | ||
ClientConfig: restConfig, | ||
BundlePath: bundlePath, | ||
IncludeGroups: []string{ | ||
"gateway.envoyproxy.io", | ||
"gateway.networking.k8s.io", | ||
}, | ||
}, | ||
// Collect resources from EnvoyGateway system namespace | ||
collect.EnvoyGatewayResource{ | ||
ClientConfig: restConfig, | ||
BundlePath: bundlePath, | ||
Namespace: egNamespace, | ||
}, | ||
// Collect logs from EnvoyGateway system namespace | ||
&tbcollect.CollectLogs{ | ||
Collector: &troubleshootv1b2.Logs{ | ||
Name: "pod-logs", | ||
Namespace: egNamespace, | ||
}, | ||
ClientConfig: restConfig, | ||
BundlePath: bundlePath, | ||
Context: ctx, | ||
}, | ||
// Collect prometheus metrics from EnvoyGateway system namespace | ||
collect.PrometheusMetric{ | ||
BundlePath: bundlePath, | ||
ClientConfig: restConfig, | ||
Namespace: egNamespace, | ||
}, | ||
// Collect config dump from EnvoyGateway system namespace | ||
collect.ConfigDump{ | ||
BundlePath: bundlePath, | ||
ClientConfig: restConfig, | ||
Namespace: egNamespace, | ||
}, | ||
} | ||
total := len(collectors) | ||
allCollectedData := make(map[string][]byte) | ||
for i, collector := range collectors { | ||
res, err := collector.Collect(progressChan) | ||
if err != nil { | ||
progressChan <- fmt.Errorf("failed to run collector: %s: %w", collector.Title(), err) | ||
progressChan <- tbcollect.CollectProgress{ | ||
CurrentName: collector.Title(), | ||
CurrentStatus: "failed", | ||
CompletedCount: i + 1, | ||
TotalCount: total, | ||
} | ||
continue | ||
} | ||
for k, v := range res { | ||
allCollectedData[k] = v | ||
} | ||
} | ||
result = allCollectedData | ||
|
||
return result | ||
} |
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
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