Guest User

Untitled

a guest
Jul 17th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. version: '3.2'
  2. services:
  3. bastion:
  4. image: christophermaier/test-probe:0.1.0-20180509175222
  5. command:
  6. - "run"
  7. - "--listen-ctl=0.0.0.0:9632"
  8. - "--permanent-peer"
  9. hostname: bastion
  10. domainname: habitat.dev
  11. volumes:
  12. - type: bind
  13. source: ./CTL_SECRET
  14. target: /hab/sup/default/CTL_SECRET
  15. read_only: true
  16. networks:
  17. habitat:
  18. aliases:
  19. - bastion.habitat.dev
  20.  
  21. alpha:
  22. image: christophermaier/test-probe:0.1.0-20180509175222
  23. command:
  24. - "run"
  25. - "--listen-ctl=0.0.0.0:9632"
  26. - "--peer=bastion.habitat.dev"
  27. hostname: alpha
  28. domainname: habitat.dev
  29. volumes:
  30. - type: bind
  31. source: ./CTL_SECRET
  32. target: /hab/sup/default/CTL_SECRET
  33. read_only: true
  34. networks:
  35. habitat:
  36. aliases:
  37. - alpha.habitat.dev
  38.  
  39. beta:
  40. image: christophermaier/test-probe:0.1.0-20180509175222
  41. command:
  42. - "run"
  43. - "--listen-ctl=0.0.0.0:9632"
  44. - "--peer=bastion.habitat.dev"
  45. hostname: beta
  46. domainname: habitat.dev
  47. volumes:
  48. - type: bind
  49. source: ./CTL_SECRET
  50. target: /hab/sup/default/CTL_SECRET
  51. read_only: true
  52. networks:
  53. habitat:
  54. aliases:
  55. - beta.habitat.dev
  56.  
  57. gamma:
  58. image: christophermaier/test-probe:0.1.0-20180509175222
  59. command:
  60. - "run"
  61. - "--listen-ctl=0.0.0.0:9632"
  62. - "--peer=bastion.habitat.dev"
  63. hostname: gamma
  64. domainname: habitat.dev
  65. volumes:
  66. - type: bind
  67. source: ./CTL_SECRET
  68. target: /hab/sup/default/CTL_SECRET
  69. read_only: true
  70. networks:
  71. habitat:
  72. aliases:
  73. - gamma.habitat.dev
  74.  
  75. delta:
  76. image: christophermaier/test-probe:0.1.0-20180509175222
  77. command:
  78. - "run"
  79. - "--listen-ctl=0.0.0.0:9632"
  80. - "--peer=bastion.habitat.dev"
  81. hostname: delta
  82. domainname: habitat.dev
  83. volumes:
  84. - type: bind
  85. source: ./CTL_SECRET
  86. target: /hab/sup/default/CTL_SECRET
  87. read_only: true
  88. networks:
  89. habitat:
  90. aliases:
  91. - delta.habitat.dev
  92.  
  93. console:
  94. image: christophermaier/test-probe:0.1.0-20180509175222
  95. command: sh
  96. volumes:
  97. - type: bind
  98. source: ./CTL_SECRET
  99. target: /hab/sup/default/CTL_SECRET
  100. read_only: true
  101. networks:
  102. habitat:
  103.  
  104. networks:
  105. habitat:
Add Comment
Please, Sign In to add comment