We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9fc062 commit 172d91bCopy full SHA for 172d91b
2 files changed
charts/controller/templates/controller-deployment.yaml
@@ -53,6 +53,8 @@ spec:
53
{{- end}}
54
55
env:
56
+ - name: REGISTRATION_MODE
57
+ value: {{ .Values.registration_mode }}
58
# NOTE(bacongobbler): use deis/registry_proxy to work around Docker --insecure-registry requirements
59
- name: "DEIS_REGISTRY_SERVICE_HOST"
60
value: "localhost"
charts/controller/values.yaml
@@ -4,6 +4,11 @@ docker_tag: canary
4
app_pull_policy: "Always"
5
# limits_cpu: "100m"
6
# limits_memory: "50Mi"
7
+# Possible values are:
8
+# enabled - allows for open registration
9
+# disabled - turns off open registration
10
+# admin_only - allows for registration by an admin only.
11
+registration_mode: "enabled"
12
13
global:
14
# Set the storage backend
0 commit comments