glusterfs-template.yml 4.9 KB

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