Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(store): change template to return ip address instead of :6789
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf committed Apr 25, 2015
1 parent 97ce414 commit 2dac6dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/base/templates/ceph.conf
Expand Up @@ -2,7 +2,7 @@
fsid = {{ getv "/deis/store/fsid" }}
mon initial members = {{ getv "/deis/store/monSetupLock" }}
mon host = {{ join (getvs "/deis/store/hosts/*") "," }}
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 }}
auth cluster required = cephx
auth service required = cephx
auth client required = cephx
Expand Down

0 comments on commit 2dac6dd

Please sign in to comment.