Support for proxy repositories by pulling from the proxy and then tagging the image.
		
			
				
	
	
		
			17 lines
		
	
	
		
			390 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			390 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import "time"
 | 
						|
 | 
						|
type Config struct {
 | 
						|
	InitialPullAll         bool
 | 
						|
	PollInterval           time.Duration
 | 
						|
	KubernetesNamespace    string
 | 
						|
	SocketPath             string
 | 
						|
	ContainerdNamespace    string
 | 
						|
	Nodename               string
 | 
						|
	ReadyDuration          time.Duration
 | 
						|
	includeControllerNodes bool
 | 
						|
	monitoringWindowSize   time.Duration
 | 
						|
	mirrors                map[string]string
 | 
						|
}
 |