mirror of https://github.com/portainer/portainer
29 lines
640 B
Go
29 lines
640 B
Go
package migrator
|
|
|
|
import "github.com/portainer/portainer/api"
|
|
|
|
func (m *Migrator) updateEndpointsToVersion11() error {
|
|
legacyEndpoints, err := m.endpointService.Endpoints()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, endpoint := range legacyEndpoints {
|
|
if endpoint.Type == portainer.AgentOnDockerEnvironment {
|
|
endpoint.TLSConfig.TLS = true
|
|
endpoint.TLSConfig.TLSSkipVerify = true
|
|
} else {
|
|
if endpoint.TLSConfig.TLSSkipVerify && !endpoint.TLSConfig.TLS {
|
|
endpoint.TLSConfig.TLSSkipVerify = false
|
|
}
|
|
}
|
|
|
|
err = m.endpointService.UpdateEndpoint(endpoint.ID, &endpoint)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|