Update the documentation with an up to date template for the insecure registry example
This commit is contained in:
parent
e22299f485
commit
02b80fecfc
@ -108,25 +108,49 @@ First we need a place to store the config template: `mkdir -p /home/${USER}/.k3d
|
|||||||
Create a file named `config.toml.tmpl` in `/home/${USER}/.k3d`, with following content:
|
Create a file named `config.toml.tmpl` in `/home/${USER}/.k3d`, with following content:
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
# Original section: no changes
|
|
||||||
[plugins.opt]
|
[plugins.opt]
|
||||||
path = "{{ .NodeConfig.Containerd.Opt }}"
|
path = "{{ .NodeConfig.Containerd.Opt }}"
|
||||||
[plugins.cri]
|
[plugins.cri]
|
||||||
stream_server_address = "{{ .NodeConfig.AgentConfig.NodeName }}"
|
stream_server_address = "127.0.0.1"
|
||||||
stream_server_port = "10010"
|
stream_server_port = "10010"
|
||||||
{{- if .IsRunningInUserNS }}
|
{{- if .IsRunningInUserNS }}
|
||||||
disable_cgroup = true
|
disable_cgroup = true
|
||||||
disable_apparmor = true
|
disable_apparmor = true
|
||||||
restrict_oom_score_adj = true
|
restrict_oom_score_adj = true
|
||||||
{{ end -}}
|
{{end}}
|
||||||
{{- if .NodeConfig.AgentConfig.PauseImage }}
|
{{- if .NodeConfig.AgentConfig.PauseImage }}
|
||||||
sandbox_image = "{{ .NodeConfig.AgentConfig.PauseImage }}"
|
sandbox_image = "{{ .NodeConfig.AgentConfig.PauseImage }}"
|
||||||
{{ end -}}
|
{{end}}
|
||||||
{{- if not .NodeConfig.NoFlannel }}
|
{{- if not .NodeConfig.NoFlannel }}
|
||||||
[plugins.cri.cni]
|
[plugins.cri.cni]
|
||||||
bin_dir = "{{ .NodeConfig.AgentConfig.CNIBinDir }}"
|
bin_dir = "{{ .NodeConfig.AgentConfig.CNIBinDir }}"
|
||||||
conf_dir = "{{ .NodeConfig.AgentConfig.CNIConfDir }}"
|
conf_dir = "{{ .NodeConfig.AgentConfig.CNIConfDir }}"
|
||||||
{{ end -}}
|
{{end}}
|
||||||
|
[plugins.cri.containerd.runtimes.runc]
|
||||||
|
runtime_type = "io.containerd.runc.v2"
|
||||||
|
{{ if .PrivateRegistryConfig }}
|
||||||
|
{{ if .PrivateRegistryConfig.Mirrors }}
|
||||||
|
[plugins.cri.registry.mirrors]{{end}}
|
||||||
|
{{range $k, $v := .PrivateRegistryConfig.Mirrors }}
|
||||||
|
[plugins.cri.registry.mirrors."{{$k}}"]
|
||||||
|
endpoint = [{{range $i, $j := $v.Endpoints}}{{if $i}}, {{end}}{{printf "%q" .}}{{end}}]
|
||||||
|
{{end}}
|
||||||
|
{{range $k, $v := .PrivateRegistryConfig.Configs }}
|
||||||
|
{{ if $v.Auth }}
|
||||||
|
[plugins.cri.registry.configs."{{$k}}".auth]
|
||||||
|
{{ if $v.Auth.Username }}username = "{{ $v.Auth.Username }}"{{end}}
|
||||||
|
{{ if $v.Auth.Password }}password = "{{ $v.Auth.Password }}"{{end}}
|
||||||
|
{{ if $v.Auth.Auth }}auth = "{{ $v.Auth.Auth }}"{{end}}
|
||||||
|
{{ if $v.Auth.IdentityToken }}identity_token = "{{ $v.Auth.IdentityToken }}"{{end}}
|
||||||
|
{{end}}
|
||||||
|
{{ if $v.TLS }}
|
||||||
|
[plugins.cri.registry.configs."{{$k}}".tls]
|
||||||
|
{{ if $v.TLS.CAFile }}ca_file = "{{ $v.TLS.CAFile }}"{{end}}
|
||||||
|
{{ if $v.TLS.CertFile }}cert_file = "{{ $v.TLS.CertFile }}"{{end}}
|
||||||
|
{{ if $v.TLS.KeyFile }}key_file = "{{ $v.TLS.KeyFile }}"{{end}}
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
|
||||||
# Added section: additional registries and the endpoints
|
# Added section: additional registries and the endpoints
|
||||||
[plugins.cri.registry.mirrors]
|
[plugins.cri.registry.mirrors]
|
||||||
|
Loading…
Reference in New Issue
Block a user