-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
57 lines (57 loc) · 1.34 KB
/
appsettings.json
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
{
"MaxSyncSizeGB": "5",
"AzureContainerRegistries": [
{
"Host": "ijtestacr.azurecr.io",
"TenantId": "f4ba3f29-303f-4c8b-a487-991dc21962c0",
"ClientId": "7c06291c-13bc-4321-ae27-34948ecc1eec",
"Secret": "mysecret"
}
],
"Registries": [
{
"Host": "ghcr.io",
"AuthType": "PasswordOAuth", // Basic, PasswordOAuth, AnonymousOAuth
"Username": "ivanjosipovic",
"Password": "Pat Password"
},
{
"Host": "registry.hub.docker.com",
"AuthType": "PasswordOAuth", // Basic, PasswordOAuth, AnonymousOAuth
"Username": "ivanjosipovic",
"Password": "Pat Password"
}
],
"SyncedImages": [
{
"Image": "ghcr.io/fluxcd/helm-controller",
"Semver": ">=0.11.0"
},
{
"Image": "ghcr.io/fluxcd/image-automation-controller",
"Semver": ">=0.14.0"
},
{
"Image": "ghcr.io/fluxcd/image-reflector-controller",
"Semver": ">=0.11.0"
},
{
"Image": "ghcr.io/fluxcd/kustomize-controller",
"Semver": ">=0.14.0"
},
{
"Image": "ghcr.io/fluxcd/notification-controller",
"Semver": ">=0.16.0"
},
{
"Image": "ghcr.io/fluxcd/source-controller",
"Semver": ">=0.15.0"
},
{
"Image": "registry.hub.docker.com/nginx/nginx-ingress",
"Tags": [
"1.12.0"
]
}
]
}