Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

feat: Replace check for edgex-kong with security-proxy-auth #164

Merged
merged 2 commits into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions test/utils/net.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@ var portService = map[string]string{
"59880": "core-data",
"59881": "core-metadata",
"59882": "core-command",
"8000": "nginx(http)",
"8443": "nginx(https)",
"8200": "vault",
"8500": "consul",
"6379": "redis",
"59861": "support-scheduler",
// app services
"59711": "app-rfid-llrp-inventory",
"59701": "app-service-configurable",
// security services
"59842": "security-proxy-auth",
// device services
"59910": "device-gpio",
"59901": "device-modbus",
Expand Down Expand Up @@ -64,7 +68,15 @@ func PlatformPorts(includePublicPorts bool) (ports []string) {
ServicePort("vault"),
ServicePort("consul"),
ServicePort("redis"),
ServicePort("nginx(http)"),
ServicePort("security-proxy-auth"),
farshidtz marked this conversation as resolved.
Show resolved Hide resolved

)
if includePublicPorts {
ports = append(ports,
ServicePort("nginx(https)"),
)
}
return
}

Expand Down