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
Copy file name to clipboardExpand all lines: README.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,19 +44,21 @@ Before deploying your custom image you must update the container image specifica
44
44
value: "true"
45
45
```
46
46
47
-
By default registry uses the filesystem as the storage medium. To use a custom object store like s3or gcs:
47
+
By default registry uses the filesystem as the storage medium. To use a custom object store like s3, gcs or azure:
48
48
- First provide the details required for authenticating to object store in base64 format by updating the secret file which can be found at `contrib/kubernetes/manifests/registry-{STORAGE_TYPE}-secret.yaml`.
49
-
- Set the STORAGE_TYPE environment variable.
50
-
```
51
-
$ export STORAGE_TYPE = {s3/gcs}
52
-
```
53
-
- Update the secret to be used in the pod manifest. This file is found at `contrib/kubernetes/manifests/registry-rc.yaml`:
49
+
- Update the storage type and secret to be used in the pod manifest. This file is found at `contrib/kubernetes/manifests/registry-rc.yaml`:
54
50
```yaml
51
+
- name: REGISTRY_STORAGE
52
+
value: filesystem
53
+
55
54
- name: registry-creds
56
55
secret:
57
56
secretName: fs-keyfile
58
57
```
59
-
58
+
- Set the STORAGE_TYPE environment variable.
59
+
```
60
+
$ export STORAGE_TYPE = {s3/gcs/azure}
61
+
```
60
62
61
63
Once updated, deploy the registry to your kubernetes cluster with:
0 commit comments