mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			418 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			418 B
		
	
	
	
		
			Go
		
	
	
| package kubernetes
 | |
| 
 | |
| import (
 | |
| 	"github.com/portainer/portainer/api/internal/registryutils"
 | |
| 	"net/http"
 | |
| )
 | |
| 
 | |
| 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
 | |
| }
 |