Skip to content

Commit 2dac6dd

Browse files
committed
fix(store): change template to return ip address instead of :6789
1 parent 97ce414 commit 2dac6dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

store/base/templates/ceph.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
fsid = {{ getv "/deis/store/fsid" }}
33
mon initial members = {{ getv "/deis/store/monSetupLock" }}
44
mon host = {{ join (getvs "/deis/store/hosts/*") "," }}
5-
mon addr = {{ join (ls "/deis/store/hosts/*") ":6789 ," }}:6789
5+
mon addr = {{ range $index, $element := (gets "/deis/store/hosts/*") }}{{if $index}},{{end}}{{ base $element.Key }}:6789{{ end }}
66
auth cluster required = cephx
77
auth service required = cephx
88
auth client required = cephx

0 commit comments

Comments
 (0)