-
Notifications
You must be signed in to change notification settings - Fork 7
/
registries.yaml
88 lines (86 loc) · 2.29 KB
/
registries.yaml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
mirrors:
%%VIRTUAL_REGISTRY%%:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "/$1"
docker.io:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"^(?:library|)(.*)": "%%STAGE%%/docker.io/$1"
quay.io:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/quay.io/$1"
gcr.io:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/gcr.io/$1"
k8s.gcr.io:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/k8s.gcr.io/$1"
registry.opensource.zalan.do:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/registry.opensource.zalan.do/$1"
registry.suse.com:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/registry.suse.com/$1"
registry.opensuse.org:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/registry.opensuse.org/$1"
registry.rancher.com:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/registry.rancher.com/$1"
ghcr.io:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/ghcr.io/$1"
registry.k8s.io:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/registry.k8s.io/$1"
dp.apps.rancher.io:
endpoint:
- "https://%%REGISTRY%%/v2/"
- "https://%%REGISTRY2%%/v2/"
rewrite:
"(.*)": "%%STAGE%%/dp.apps.rancher.io/$1"
configs:
"%%REGISTRY%%":
auth:
username: %%USERNAME%% # this is the registry username
password: %%PASSWORD%% # this is the registry password
tls:
ca_file: /etc/ssl/ca-bundle.pem
"%%REGISTRY2%%":
auth:
username: %%USERNAME2%% # this is the registry username
password: %%PASSWORD2%% # this is the registry password
tls:
ca_file: /etc/ssl/ca-bundle.pem