mirror of https://github.com/portainer/portainer
19 lines
419 B
Go
19 lines
419 B
Go
package kubernetes
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/portainer/portainer/api/internal/registryutils"
|
|
)
|
|
|
|
func (transport *baseTransport) refreshRegistry(request *http.Request, namespace string) (err error) {
|
|
cli, err := transport.k8sClientFactory.GetKubeClient(transport.endpoint)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
err = registryutils.RefreshEcrSecret(cli, transport.endpoint, transport.dataStore, namespace)
|
|
|
|
return
|
|
}
|