We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97ce414 commit 2dac6ddCopy full SHA for 2dac6dd
1 file changed
store/base/templates/ceph.conf
@@ -2,7 +2,7 @@
2
fsid = {{ getv "/deis/store/fsid" }}
3
mon initial members = {{ getv "/deis/store/monSetupLock" }}
4
mon host = {{ join (getvs "/deis/store/hosts/*") "," }}
5
-mon addr = {{ join (ls "/deis/store/hosts/*") ":6789 ," }}:6789
+mon addr = {{ range $index, $element := (gets "/deis/store/hosts/*") }}{{if $index}},{{end}}{{ base $element.Key }}:6789{{ end }}
6
auth cluster required = cephx
7
auth service required = cephx
8
auth client required = cephx
0 commit comments