-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.md.gotmpl
67 lines (53 loc) · 1.26 KB
/
README.md.gotmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{{ template "chart.header" . }}
{{ template "chart.deprecationWarning" . }}
{{ template "chart.badgesSection" . }}
{{ template "chart.description" . }}
{{ template "chart.homepageLine" . }}
{{ template "chart.maintainersSection" . }}
{{ template "chart.sourcesSection" . }}
{{ template "chart.requirementsSection" . }}
Example:
```yaml
auth:
tls: true
# Registry by default:
mirrors:
- host: docker.io
source: https://registry-1.docker.io
- host: gcr.io
source: https://gcr.io
- host: ghcr.io
source: https://ghcr.io
- host: registry.k8s.io
source: https://registry.k8s.io
ingress:
enabled: true
hosts:
- host: mirrors.example.com
path: /
```
## Talos machine config
```yaml
machine:
registries:
config:
mirrors.example.com:
tls:
clientIdentity:
crt: BASE64-crt
key: BASE64-key
mirrors:
docker.io:
endpoints:
- https://mirrors.example.com/docker-io
gcr.io:
endpoints:
- https://mirrors.example.com/gcr-io
ghcr.io:
endpoints:
- https://mirrors.example.com/ghcr-io
registry.k8s.io:
endpoints:
- https://mirrors.example.com/registry-k8s-io
```
{{ template "chart.valuesSection" . }}