feat: init ingress analyzer (#138)

Signed-off-by: Matthis Holleville <matthish29@gmail.com>
This commit is contained in:
HOLLEVILLE Matthis
2023-03-29 18:27:05 +02:00
committed by GitHub
parent cad2b38d03
commit fe683b71b8
4 changed files with 66 additions and 0 deletions

View File

@@ -34,6 +34,11 @@ func RunAnalysis(ctx context.Context, config *AnalysisConfiguration,
if err != nil {
return err
}
err = AnalyzeIngress(ctx, config, client, aiClient, analysisResults)
if err != nil {
return err
}
return nil
}