member_commands.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. // Copyright 2015 CoreOS, Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package command
  15. import (
  16. "fmt"
  17. "os"
  18. "strings"
  19. "github.com/coreos/etcd/Godeps/_workspace/src/github.com/codegangsta/cli"
  20. )
  21. func NewMemberCommand() cli.Command {
  22. return cli.Command{
  23. Name: "member",
  24. Usage: "member add, remove and list subcommands",
  25. Subcommands: []cli.Command{
  26. {
  27. Name: "list",
  28. Usage: "enumerate existing cluster members",
  29. ArgsUsage: " ",
  30. Action: actionMemberList,
  31. },
  32. {
  33. Name: "add",
  34. Usage: "add a new member to the etcd cluster",
  35. ArgsUsage: "<name> <peerURL>",
  36. Action: actionMemberAdd,
  37. },
  38. {
  39. Name: "remove",
  40. Usage: "remove an existing member from the etcd cluster",
  41. ArgsUsage: "<memberID>",
  42. Action: actionMemberRemove,
  43. },
  44. {
  45. Name: "update",
  46. Usage: "update an existing member in the etcd cluster",
  47. ArgsUsage: "<memberID> <peerURLs>",
  48. Action: actionMemberUpdate,
  49. },
  50. },
  51. }
  52. }
  53. func actionMemberList(c *cli.Context) {
  54. if len(c.Args()) != 0 {
  55. fmt.Fprintln(os.Stderr, "No arguments accepted")
  56. os.Exit(1)
  57. }
  58. mAPI := mustNewMembersAPI(c)
  59. ctx, cancel := contextWithTotalTimeout(c)
  60. defer cancel()
  61. members, err := mAPI.List(ctx)
  62. if err != nil {
  63. fmt.Fprintln(os.Stderr, err.Error())
  64. os.Exit(1)
  65. }
  66. for _, m := range members {
  67. if len(m.Name) == 0 {
  68. fmt.Printf("%s[unstarted]: peerURLs=%s\n", m.ID, strings.Join(m.PeerURLs, ","))
  69. } else {
  70. fmt.Printf("%s: name=%s peerURLs=%s clientURLs=%s\n", m.ID, m.Name, strings.Join(m.PeerURLs, ","), strings.Join(m.ClientURLs, ","))
  71. }
  72. }
  73. }
  74. func actionMemberAdd(c *cli.Context) {
  75. args := c.Args()
  76. if len(args) != 2 {
  77. fmt.Fprintln(os.Stderr, "Provide a name and a single member peerURL")
  78. os.Exit(1)
  79. }
  80. mAPI := mustNewMembersAPI(c)
  81. url := args[1]
  82. ctx, cancel := contextWithTotalTimeout(c)
  83. defer cancel()
  84. m, err := mAPI.Add(ctx, url)
  85. if err != nil {
  86. fmt.Fprintln(os.Stderr, err.Error())
  87. os.Exit(1)
  88. }
  89. newID := m.ID
  90. newName := args[0]
  91. fmt.Printf("Added member named %s with ID %s to cluster\n", newName, newID)
  92. members, err := mAPI.List(ctx)
  93. if err != nil {
  94. fmt.Fprintln(os.Stderr, err.Error())
  95. os.Exit(1)
  96. }
  97. conf := []string{}
  98. for _, memb := range members {
  99. for _, u := range memb.PeerURLs {
  100. n := memb.Name
  101. if memb.ID == newID {
  102. n = newName
  103. }
  104. conf = append(conf, fmt.Sprintf("%s=%s", n, u))
  105. }
  106. }
  107. fmt.Print("\n")
  108. fmt.Printf("ETCD_NAME=%q\n", newName)
  109. fmt.Printf("ETCD_INITIAL_CLUSTER=%q\n", strings.Join(conf, ","))
  110. fmt.Printf("ETCD_INITIAL_CLUSTER_STATE=\"existing\"\n")
  111. }
  112. func actionMemberRemove(c *cli.Context) {
  113. args := c.Args()
  114. if len(args) != 1 {
  115. fmt.Fprintln(os.Stderr, "Provide a single member ID")
  116. os.Exit(1)
  117. }
  118. removalID := args[0]
  119. mAPI := mustNewMembersAPI(c)
  120. ctx, cancel := contextWithTotalTimeout(c)
  121. defer cancel()
  122. // Get the list of members.
  123. members, err := mAPI.List(ctx)
  124. if err != nil {
  125. fmt.Fprintln(os.Stderr, "Error while verifying ID against known members:", err.Error())
  126. os.Exit(1)
  127. }
  128. // Sanity check the input.
  129. foundID := false
  130. for _, m := range members {
  131. if m.ID == removalID {
  132. foundID = true
  133. }
  134. if m.Name == removalID {
  135. // Note that, so long as it's not ambiguous, we *could* do the right thing by name here.
  136. fmt.Fprintf(os.Stderr, "Found a member named %s; if this is correct, please use its ID, eg:\n\tetcdctl member remove %s\n", m.Name, m.ID)
  137. fmt.Fprintf(os.Stderr, "For more details, read the documentation at https://github.com/coreos/etcd/blob/master/Documentation/runtime-configuration.md#remove-a-member\n\n")
  138. }
  139. }
  140. if !foundID {
  141. fmt.Fprintf(os.Stderr, "Couldn't find a member in the cluster with an ID of %s.\n", removalID)
  142. os.Exit(1)
  143. }
  144. // Actually attempt to remove the member.
  145. err = mAPI.Remove(ctx, removalID)
  146. if err != nil {
  147. fmt.Fprintf(os.Stderr, "Received an error trying to remove member %s: %s", removalID, err.Error())
  148. os.Exit(1)
  149. }
  150. fmt.Printf("Removed member %s from cluster\n", removalID)
  151. }
  152. func actionMemberUpdate(c *cli.Context) {
  153. args := c.Args()
  154. if len(args) != 2 {
  155. fmt.Fprintln(os.Stderr, "Provide an ID and a list of comma separated peerURL (0xabcd http://example.com,http://example1.com)")
  156. os.Exit(1)
  157. }
  158. mAPI := mustNewMembersAPI(c)
  159. mid := args[0]
  160. urls := args[1]
  161. ctx, cancel := contextWithTotalTimeout(c)
  162. err := mAPI.Update(ctx, mid, strings.Split(urls, ","))
  163. cancel()
  164. if err != nil {
  165. fmt.Fprintln(os.Stderr, err.Error())
  166. os.Exit(1)
  167. }
  168. fmt.Printf("Updated member with ID %s in cluster\n", mid)
  169. }