integration: remove identity-provider-specific integration tests (#3636)

This commit is contained in:
Caleb Doxsey 2022-10-03 09:22:11 -06:00 committed by GitHub
parent de804edc19
commit 55312ef330
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
95 changed files with 18 additions and 43640 deletions

View file

@ -152,10 +152,9 @@ func setIDPAndClusterType(ctx context.Context) {
}
for _, container := range containers {
for _, name := range container.Names {
parts := regexp.MustCompile(`^/(\w+?)-(\w+?)_pomerium.*$`).FindStringSubmatch(name)
if len(parts) == 3 {
IDP = parts[1]
ClusterType = parts[2]
parts := regexp.MustCompile(`^/(\w+?)[-_]pomerium.*$`).FindStringSubmatch(name)
if len(parts) == 2 {
ClusterType = parts[1]
}
}
}