mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	full diff:
- https://github.com/containerd/containerd/compare/v1.7.8...v1.7.9
- 5ae9b23c40...c9ee8491d7
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			177 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			177 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package authprovider
 | 
						|
 | 
						|
type AuthTLSConfig struct {
 | 
						|
	RootCAs  []string
 | 
						|
	Insecure bool
 | 
						|
	KeyPairs []TLSKeyPair
 | 
						|
}
 | 
						|
 | 
						|
type TLSKeyPair struct {
 | 
						|
	Key         string
 | 
						|
	Certificate string
 | 
						|
}
 |