Merge pull request #2097 from iwilltry42/registry-insecure-skip-verify

Feature: add insecure_skip_verify field to registry config template
pull/2192/head
Brad Davidson 2020-09-01 15:58:26 -07:00 committed by GitHub
commit a3e9d31e6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -28,6 +28,7 @@ type TLSConfig struct {
CAFile string `toml:"ca_file" yaml:"ca_file"` CAFile string `toml:"ca_file" yaml:"ca_file"`
CertFile string `toml:"cert_file" yaml:"cert_file"` CertFile string `toml:"cert_file" yaml:"cert_file"`
KeyFile string `toml:"key_file" yaml:"key_file"` KeyFile string `toml:"key_file" yaml:"key_file"`
InsecureSkipVerify bool `toml:"insecure_skip_verify" yaml:"insecure_skip_verify"`
} }
// Registry is registry settings configured // Registry is registry settings configured

View File

@ -67,6 +67,7 @@ const ContainerdConfigTemplate = `
{{ if $v.TLS.CAFile }}ca_file = "{{ $v.TLS.CAFile }}"{{end}} {{ if $v.TLS.CAFile }}ca_file = "{{ $v.TLS.CAFile }}"{{end}}
{{ if $v.TLS.CertFile }}cert_file = "{{ $v.TLS.CertFile }}"{{end}} {{ if $v.TLS.CertFile }}cert_file = "{{ $v.TLS.CertFile }}"{{end}}
{{ if $v.TLS.KeyFile }}key_file = "{{ $v.TLS.KeyFile }}"{{end}} {{ if $v.TLS.KeyFile }}key_file = "{{ $v.TLS.KeyFile }}"{{end}}
{{ if $v.TLS.InsecureSkipVerify }}insecure_skip_verify = true{{end}}
{{end}} {{end}}
{{end}} {{end}}
{{end}} {{end}}