You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ui.replicas`|`1`| Number of replicas for the Deployment. |
54
54
|`ui.title`|`"Docker registry UI"`| Title of the registry |
55
-
|`ui.deleteImages`|`false`| Allow delete of images |
56
55
|`ui.proxy`|`false`| UI behave as a proxy of the registry |
57
56
|`ui.dockerRegistryUrl`|`null`| The URL of your docker registry, may be a service (when proxy is on) or an external URL. |
58
57
|`ui.pullUrl`|`null`| Override the pull URL |
59
-
|`ui.showCatalogNbTags`|`false`| Show number of tags per images on catalog page. This will produce + nb images requests, not recommended on large registries. |
60
-
|`ui.showContentDigest`|`false`| Show content digest in docker tag list. |
61
58
|`ui.singleRegistry`|`true`| Remove the menu that show the dialogs to add, remove and change the endpoint of your docker registry. |
59
+
|`ui.registrySecured`|`false`| By default, the UI will check on every requests if your registry is secured or not (you will see `401` responses in your console). Set to `true` if your registry uses Basic Authentication and divide by two the number of call to your registry. |
60
+
|`ui.showCatalogNbTags`|`false`| Show number of tags per images on catalog page. This will produce + nb images requests, not recommended on large registries. |
62
61
|`ui.catalogElementsLimit`|`1000`| Limit the number of elements in the catalog page. |
62
+
|`ui.catalogDefaultExpanded`|`false`| Expand by default all repositories in catalog |
63
+
|`ui.catalogMinBranches`|`1`| Set the minimum repository/namespace to expand (e.g. `joxit/docker-registry-ui``joxit/` is the repository/namespace). Can be 0 to disable branching. |
64
+
|`ui.catalogMaxBranches`|`1`| Set the maximum repository/namespace to expand (e.g. `joxit/docker-registry-ui``joxit/` is the repository/namespace). Can be 0 to disable branching. |
65
+
|`ui.deleteImages`|`false`| Allow delete of images |
66
+
|`ui.showContentDigest`|`false`| Show content digest in docker tag list. |
67
+
|`ui.taglistOrder`|`alpha-asc;num-desc`| Set the default order for the taglist page, could be `num-asc;alpha-asc`, `num-desc;alpha-asc`, `num-asc;alpha-desc`, `num-desc;alpha-desc`, `alpha-asc;num-asc`, `alpha-asc;num-desc`, `alpha-desc;num-asc` or `alpha-desc;num-desc`. |
68
+
|`ui.taglistPageSize`|`100`| Set the number of tags to display in one page. |
63
69
|`ui.historyCustomLabels`|`[]`| Expose custom labels in history page, custom labels will be processed like maintainer label. |
64
70
|`ui.nginxProxyHeaders`|`[]`| Update the default Nginx configuration and **set custom headers** for your backend docker registry. Only when `ui.proxy` is used. Example: nginxProxyHeaders: [ { my-heeader-name: my-header-value } ]|
65
71
|`ui.nginxProxyPassHeaders`|`[]`| Update the default Nginx configuration and **forward custom headers** to your backend docker registry. Only when `ui.proxy` is used. Example: nginxProxyPassHeaders: [ my-first-header, my-second-header ]|
Copy file name to clipboardExpand all lines: charts/docker-registry-ui/values.yaml
+24-8Lines changed: 24 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14,24 +14,40 @@ ui:
14
14
replicas: 1
15
15
# Title of the registry
16
16
title: "Docker registry UI"
17
-
# Allow delete of images
18
-
deleteImages: false
19
17
# UI behave as a proxy of the registry
20
18
proxy: false
21
19
# The URL of your docker registry, may be a service (when proxy is on) or an external URL.
22
20
dockerRegistryUrl: null
23
21
# Override the pull URL
24
22
pullUrl: null
25
-
# Show number of tags per images on catalog page. This will produce + nb images requests, not recommended on large registries.
26
-
showCatalogNbTags: false
27
-
# Show content digest in docker tag list.
28
-
showContentDigest: false
29
23
# Remove the menu that show the dialogs to add, remove and change the endpoint of your docker registry.
30
24
singleRegistry: true
25
+
# By default, the UI will check on every requests if your registry is secured or not (you will see `401` responses in your console). Set to `true` if your registry uses Basic Authentication and divide by two the number of call to your registry.
26
+
registrySecured: false
27
+
28
+
# Show number of tags per images on catalog page. This will produce + nb images requests, not recommended on large registries.
29
+
showCatalogNbTags: false
31
30
# Limit the number of elements in the catalog page.
32
31
catalogElementsLimit: 1000
32
+
# Expand by default all repositories in catalog
33
+
catalogDefaultExpanded: false
34
+
# Set the minimum repository/namespace to expand (e.g. `joxit/docker-registry-ui` `joxit/` is the repository/namespace). Can be 0 to disable branching.
35
+
catalogMinBranches: 1
36
+
# Set the maximum repository/namespace to expand (e.g. `joxit/docker-registry-ui` `joxit/` is the repository/namespace). Can be 0 to disable branching.
37
+
catalogMaxBranches: 1
38
+
39
+
# Allow delete of images
40
+
deleteImages: false
41
+
# Show content digest in docker tag list.
42
+
showContentDigest: false
43
+
# Set the default order for the taglist page, could be `num-asc;alpha-asc`, `num-desc;alpha-asc`, `num-asc;alpha-desc`, `num-desc;alpha-desc`, `alpha-asc;num-asc`, `alpha-asc;num-desc`, `alpha-desc;num-asc` or `alpha-desc;num-desc`.
44
+
taglistOrder: alpha-asc;num-desc
45
+
# Set the number of tags to display in one page.
46
+
taglistPageSize: 100
47
+
33
48
# Expose custom labels in history page, custom labels will be processed like maintainer label.
34
49
historyCustomLabels: []
50
+
35
51
# Update the default Nginx configuration and **set custom headers** for your backend docker registry. Only when `ui.proxy` is used.
36
52
# Example:
37
53
# nginxProxyHeaders:
@@ -73,7 +89,7 @@ ui:
73
89
footerNeutralText: ""
74
90
75
91
# The name and tag of the docker image of the interface
76
-
image: joxit/docker-registry-ui:2.4.1
92
+
image: joxit/docker-registry-ui:2.5.0
77
93
# Override default image pull secrets
78
94
imagePullSecrets: "-"
79
95
# Override default pull policy
@@ -132,7 +148,7 @@ registry:
132
148
# Enable the registry server.
133
149
enabled: false
134
150
# The name and tag of the docker registry server image
0 commit comments