mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-29 22:48:15 +02:00
integration: remove identity-provider-specific integration tests (#3636)
This commit is contained in:
parent
de804edc19
commit
55312ef330
95 changed files with 18 additions and 43640 deletions
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue