Skip to content

Commit 2515661

Browse files
committed
fix(store): use hostnames for mon host
Commit 690b380 had a typo which made the `mon host` config entry for Ceph contain IP addresses, not hostnames. This doesn't seem to be an issue for day-to-day operations, but could have unforeseen consequences. It's best to fix this up.
1 parent e99ae10 commit 2515661

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
@@ -1,7 +1,7 @@
11
[global]
22
fsid = {{ .deis_store_fsid }}
33
mon initial members = {{ .deis_store_monSetupLock }}
4-
mon host = {{ range $index, $mon := .deis_store_hosts }}{{ if $index }}, {{ end }}{{ Base $mon.Key }}{{ end }}
4+
mon host = {{ range $index, $mon := .deis_store_hosts }}{{ if $index }}, {{ end }}{{ $mon.Value }}{{ end }}
55
mon addr = {{ range $index, $mon := .deis_store_hosts }}{{ if $index }}, {{ end }}{{ Base $mon.Key }}:6789{{ end }}
66
auth cluster required = cephx
77
auth service required = cephx

0 commit comments

Comments
 (0)