glusterfs-template.yml 4.6 KB

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