mirror of https://github.com/portainer/portainer
21 lines
413 B
Go
21 lines
413 B
Go
package migrator
|
|
|
|
import "github.com/portainer/portainer"
|
|
|
|
func (m *Migrator) updateEndpointsToVersion10() error {
|
|
legacyEndpoints, err := m.endpointService.Endpoints()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, endpoint := range legacyEndpoints {
|
|
endpoint.Type = portainer.DockerEnvironment
|
|
err = m.endpointService.UpdateEndpoint(endpoint.ID, &endpoint)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|