Skip certificate check (don't error out on self-signed certs)
							parent
							
								
									7a664e6a5f
								
							
						
					
					
						commit
						dc97156c83
					
				| 
						 | 
					@ -2,6 +2,7 @@ package registry
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	"bytes"
 | 
						"bytes"
 | 
				
			||||||
 | 
						"crypto/tls"
 | 
				
			||||||
	"encoding/json"
 | 
						"encoding/json"
 | 
				
			||||||
	"errors"
 | 
						"errors"
 | 
				
			||||||
	"fmt"
 | 
						"fmt"
 | 
				
			||||||
| 
						 | 
					@ -164,6 +165,7 @@ func (r *Registry) GetRemoteTags(registries []string, repository string, token [
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return nil, err
 | 
								return nil, err
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		utils.Debugf("Got status code %d from %s", res.StatusCode, endpoint)
 | 
							utils.Debugf("Got status code %d from %s", res.StatusCode, endpoint)
 | 
				
			||||||
		defer res.Body.Close()
 | 
							defer res.Body.Close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue