deploy-heketi-template.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. ---
  2. kind: Template
  3. apiVersion: v1
  4. metadata:
  5. name: deploy-heketi
  6. labels:
  7. glusterfs: heketi-template
  8. deploy-heketi: support
  9. annotations:
  10. description: Bootstrap Heketi installation
  11. tags: glusterfs,heketi,installation
  12. objects:
  13. - kind: Service
  14. apiVersion: v1
  15. metadata:
  16. name: deploy-heketi-${CLUSTER_NAME}
  17. labels:
  18. glusterfs: deploy-heketi-${CLUSTER_NAME}-service
  19. deploy-heketi: support
  20. annotations:
  21. description: Exposes Heketi service
  22. spec:
  23. ports:
  24. - name: deploy-heketi-${CLUSTER_NAME}
  25. port: 8080
  26. targetPort: 8080
  27. selector:
  28. glusterfs: deploy-heketi-${CLUSTER_NAME}-pod
  29. - kind: Route
  30. apiVersion: v1
  31. metadata:
  32. name: ${HEKETI_ROUTE}
  33. labels:
  34. glusterfs: deploy-heketi-${CLUSTER_NAME}-route
  35. deploy-heketi: support
  36. spec:
  37. to:
  38. kind: Service
  39. name: deploy-heketi-${CLUSTER_NAME}
  40. - kind: DeploymentConfig
  41. apiVersion: v1
  42. metadata:
  43. name: deploy-heketi-${CLUSTER_NAME}
  44. labels:
  45. glusterfs: deploy-heketi-${CLUSTER_NAME}-dc
  46. deploy-heketi: support
  47. annotations:
  48. description: Defines how to deploy Heketi
  49. spec:
  50. replicas: 1
  51. selector:
  52. glusterfs: deploy-heketi-${CLUSTER_NAME}-pod
  53. triggers:
  54. - type: ConfigChange
  55. strategy:
  56. type: Recreate
  57. template:
  58. metadata:
  59. name: deploy-heketi
  60. labels:
  61. glusterfs: deploy-heketi-${CLUSTER_NAME}-pod
  62. deploy-heketi: support
  63. spec:
  64. serviceAccountName: heketi-${CLUSTER_NAME}-service-account
  65. containers:
  66. - name: heketi
  67. image: ${IMAGE_NAME}:${IMAGE_VERSION}
  68. env:
  69. - name: HEKETI_USER_KEY
  70. value: ${HEKETI_USER_KEY}
  71. - name: HEKETI_ADMIN_KEY
  72. value: ${HEKETI_ADMIN_KEY}
  73. - name: HEKETI_EXECUTOR
  74. value: ${HEKETI_EXECUTOR}
  75. - name: HEKETI_FSTAB
  76. value: ${HEKETI_FSTAB}
  77. - name: HEKETI_SNAPSHOT_LIMIT
  78. value: '14'
  79. - name: HEKETI_KUBE_GLUSTER_DAEMONSET
  80. value: '1'
  81. ports:
  82. - containerPort: 8080
  83. volumeMounts:
  84. - name: db
  85. mountPath: /var/lib/heketi
  86. - name: config
  87. mountPath: /etc/heketi
  88. readinessProbe:
  89. timeoutSeconds: 3
  90. initialDelaySeconds: 3
  91. httpGet:
  92. path: /hello
  93. port: 8080
  94. livenessProbe:
  95. timeoutSeconds: 3
  96. initialDelaySeconds: 30
  97. httpGet:
  98. path: /hello
  99. port: 8080
  100. volumes:
  101. - name: db
  102. - name: config
  103. secret:
  104. secretName: heketi-${CLUSTER_NAME}-config-secret
  105. parameters:
  106. - name: HEKETI_USER_KEY
  107. displayName: Heketi User Secret
  108. description: Set secret for those creating volumes as type _user_
  109. - name: HEKETI_ADMIN_KEY
  110. displayName: Heketi Administrator Secret
  111. description: Set secret for administration of the Heketi service as user _admin_
  112. - name: HEKETI_EXECUTOR
  113. displayName: heketi executor type
  114. description: Set the executor type, kubernetes or ssh
  115. value: kubernetes
  116. - name: HEKETI_FSTAB
  117. displayName: heketi fstab path
  118. description: Set the fstab path, file that is populated with bricks that heketi creates
  119. value: /var/lib/heketi/fstab
  120. - name: HEKETI_ROUTE
  121. displayName: heketi route name
  122. description: Set the hostname for the route URL
  123. value: "heketi-glusterfs"
  124. - name: IMAGE_NAME
  125. displayName: heketi container image name
  126. required: True
  127. - name: IMAGE_VERSION
  128. displayName: heketi container image version
  129. required: True
  130. - name: CLUSTER_NAME
  131. displayName: GlusterFS cluster name
  132. description: A unique name to identify this heketi service, useful for running multiple heketi instances
  133. value: glusterfs