HasAddress is implemented by elastic/floating IP addresses in order to include relevant dynamically allocated addresses in the api-server's server TLS certificate.
| 21 | // HasAddress is implemented by elastic/floating IP addresses in order to include |
| 22 | // relevant dynamically allocated addresses in the api-server's server TLS certificate. |
| 23 | type HasAddress interface { |
| 24 | Task[CloudupSubContext] |
| 25 | |
| 26 | // GetWellKnownServices returns the services that are behind this address. |
| 27 | GetWellKnownServices() []wellknownservices.WellKnownService |
| 28 | |
| 29 | // FindIPAddress returns the address associated with the implementor. If there is no address, returns (nil, nil). |
| 30 | FindAddresses(context *CloudupContext) ([]string, error) |
| 31 | } |
no outgoing calls
no test coverage detected