glusterfs-template.yml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. ---
  2. kind: Template
  3. apiVersion: v1
  4. metadata:
  5. name: glusterfs
  6. labels:
  7. glusterfs: template
  8. annotations:
  9. description: GlusterFS DaemonSet template
  10. tags: glusterfs
  11. objects:
  12. - kind: DaemonSet
  13. apiVersion: extensions/v1beta1
  14. metadata:
  15. name: glusterfs-${CLUSTER_NAME}
  16. labels:
  17. glusterfs: ${CLUSTER_NAME}-daemonset
  18. annotations:
  19. description: GlusterFS DaemonSet
  20. tags: glusterfs
  21. spec:
  22. selector:
  23. matchLabels:
  24. glusterfs: ${CLUSTER_NAME}-pod
  25. updateStrategy:
  26. type: OnDelete
  27. template:
  28. metadata:
  29. name: glusterfs-${CLUSTER_NAME}
  30. labels:
  31. glusterfs: ${CLUSTER_NAME}-pod
  32. glusterfs-node: pod
  33. spec:
  34. nodeSelector: "${{NODE_LABELS}}"
  35. hostNetwork: true
  36. containers:
  37. - name: glusterfs
  38. image: ${IMAGE_NAME}
  39. imagePullPolicy: IfNotPresent
  40. env:
  41. - name: GB_GLFS_LRU_COUNT
  42. value: "${GB_GLFS_LRU_COUNT}"
  43. - name: TCMU_LOGDIR
  44. value: "${TCMU_LOGDIR}"
  45. - name: GB_LOGDIR
  46. value: "/var/log/glusterfs/gluster-block"
  47. resources:
  48. requests:
  49. memory: 100Mi
  50. cpu: 100m
  51. volumeMounts:
  52. - name: glusterfs-heketi
  53. mountPath: "/var/lib/heketi"
  54. - name: glusterfs-run
  55. mountPath: "/run"
  56. - name: glusterfs-lvm
  57. mountPath: "/run/lvm"
  58. - name: glusterfs-etc
  59. mountPath: "/etc/glusterfs"
  60. - name: glusterfs-logs
  61. mountPath: "/var/log/glusterfs"
  62. - name: glusterfs-config
  63. mountPath: "/var/lib/glusterd"
  64. - name: glusterfs-dev
  65. mountPath: "/dev"
  66. - name: glusterfs-misc
  67. mountPath: "/var/lib/misc/glusterfsd"
  68. - name: glusterfs-cgroup
  69. mountPath: "/sys/fs/cgroup"
  70. readOnly: true
  71. - name: glusterfs-ssl
  72. mountPath: "/etc/ssl"
  73. readOnly: true
  74. - name: kernel-modules
  75. mountPath: "/usr/lib/modules"
  76. readOnly: true
  77. - name: glusterfs-target
  78. mountPath: "/etc/target"
  79. securityContext:
  80. capabilities: {}
  81. privileged: true
  82. readinessProbe:
  83. timeoutSeconds: 3
  84. initialDelaySeconds: 40
  85. exec:
  86. command:
  87. - "/bin/bash"
  88. - "-c"
  89. - systemctl status glusterd.service
  90. periodSeconds: 25
  91. successThreshold: 1
  92. failureThreshold: 50
  93. livenessProbe:
  94. timeoutSeconds: 3
  95. initialDelaySeconds: 40
  96. exec:
  97. command:
  98. - "/bin/bash"
  99. - "-c"
  100. - systemctl status glusterd.service
  101. periodSeconds: 25
  102. successThreshold: 1
  103. failureThreshold: 50
  104. terminationMessagePath: "/dev/termination-log"
  105. volumes:
  106. - name: glusterfs-heketi
  107. hostPath:
  108. path: "/var/lib/heketi"
  109. - name: glusterfs-run
  110. emptyDir: {}
  111. - name: glusterfs-lvm
  112. hostPath:
  113. path: "/run/lvm"
  114. - name: glusterfs-etc
  115. hostPath:
  116. path: "/etc/glusterfs"
  117. - name: glusterfs-logs
  118. hostPath:
  119. path: "/var/log/glusterfs"
  120. - name: glusterfs-config
  121. hostPath:
  122. path: "/var/lib/glusterd"
  123. - name: glusterfs-dev
  124. hostPath:
  125. path: "/dev"
  126. - name: glusterfs-misc
  127. hostPath:
  128. path: "/var/lib/misc/glusterfsd"
  129. - name: glusterfs-cgroup
  130. hostPath:
  131. path: "/sys/fs/cgroup"
  132. - name: glusterfs-ssl
  133. hostPath:
  134. path: "/etc/ssl"
  135. - name: kernel-modules
  136. hostPath:
  137. path: "/usr/lib/modules"
  138. - name: glusterfs-target
  139. hostPath:
  140. path: "/etc/target"
  141. restartPolicy: Always
  142. terminationGracePeriodSeconds: 30
  143. dnsPolicy: ClusterFirst
  144. securityContext: {}
  145. parameters:
  146. - name: NODE_LABELS
  147. displayName: Daemonset Node Labels
  148. description: Labels which define the daemonset node selector. Must contain at least one label of the format \'glusterfs=<CLUSTER_NAME>-host\'
  149. value: '{ "glusterfs": "storage-host" }'
  150. - name: IMAGE_NAME
  151. displayName: GlusterFS container image name
  152. required: True
  153. - name: CLUSTER_NAME
  154. displayName: GlusterFS cluster name
  155. description: A unique name to identify which heketi service manages this cluster, useful for running multiple heketi instances
  156. value: storage
  157. - name: GB_GLFS_LRU_COUNT
  158. displayName: Maximum number of block hosting volumes
  159. description: This value is to set maximum number of block hosting volumes.
  160. value: "15"
  161. required: true
  162. - name: TCMU_LOGDIR
  163. displayName: Tcmu runner log directory
  164. description: This value is to set tcmu runner log directory
  165. value: "/var/log/glusterfs/gluster-block"
  166. required: true