gluster-s3-template.yml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. ---
  2. kind: Template
  3. apiVersion: v1
  4. metadata:
  5. name: gluster-s3
  6. labels:
  7. glusterfs: s3-template
  8. gluster-s3: template
  9. annotations:
  10. description: Gluster S3 service template
  11. tags: glusterfs,heketi,gluster-s3
  12. objects:
  13. - kind: Service
  14. apiVersion: v1
  15. metadata:
  16. name: gluster-s3-${CLUSTER_NAME}-${S3_ACCOUNT}-service
  17. labels:
  18. glusterfs: s3-${CLUSTER_NAME}-${S3_ACCOUNT}-service
  19. gluster-s3: ${CLUSTER_NAME}-${S3_ACCOUNT}-service
  20. spec:
  21. ports:
  22. - protocol: TCP
  23. port: 8080
  24. targetPort: 8080
  25. selector:
  26. glusterfs: s3-${CLUSTER_NAME}-${S3_ACCOUNT}-pod
  27. type: ClusterIP
  28. sessionAffinity: None
  29. status:
  30. loadBalancer: {}
  31. - kind: Route
  32. apiVersion: v1
  33. metadata:
  34. name: gluster-s3-${CLUSTER_NAME}-${S3_ACCOUNT}-route
  35. labels:
  36. glusterfs: s3-${CLUSTER_NAME}-${S3_ACCOUNT}-route
  37. gluster-s3: ${CLUSTER_NAME}-${S3_ACCOUNT}-route
  38. spec:
  39. to:
  40. kind: Service
  41. name: gluster-s3-${CLUSTER_NAME}-${S3_ACCOUNT}-service
  42. - kind: DeploymentConfig
  43. apiVersion: v1
  44. metadata:
  45. name: gluster-s3-${CLUSTER_NAME}-${S3_ACCOUNT}-dc
  46. labels:
  47. glusterfs: s3-${CLUSTER_NAME}-${S3_ACCOUNT}-dc
  48. gluster-s3: ${CLUSTER_NAME}-${S3_ACCOUNT}-dc
  49. annotations:
  50. openshift.io/scc: privileged
  51. description: Defines how to deploy gluster s3 object storage
  52. spec:
  53. replicas: 1
  54. selector:
  55. glusterfs: s3-${CLUSTER_NAME}-${S3_ACCOUNT}-pod
  56. template:
  57. metadata:
  58. name: gluster-${CLUSTER_NAME}-${S3_ACCOUNT}-s3
  59. labels:
  60. glusterfs: s3-${CLUSTER_NAME}-${S3_ACCOUNT}-pod
  61. gluster-s3: ${CLUSTER_NAME}-${S3_ACCOUNT}-pod
  62. spec:
  63. containers:
  64. - name: gluster-s3
  65. image: ${IMAGE_NAME}
  66. imagePullPolicy: IfNotPresent
  67. ports:
  68. - name: gluster
  69. containerPort: 8080
  70. protocol: TCP
  71. env:
  72. - name: S3_ACCOUNT
  73. value: "${S3_ACCOUNT}"
  74. - name: S3_USER
  75. value: "${S3_USER}"
  76. - name: S3_PASSWORD
  77. value: "${S3_PASSWORD}"
  78. resources: {}
  79. volumeMounts:
  80. - name: gluster-vol1
  81. mountPath: "/mnt/gluster-object/${S3_ACCOUNT}"
  82. - name: gluster-vol2
  83. mountPath: "/mnt/gluster-object/gsmetadata"
  84. - name: glusterfs-cgroup
  85. readOnly: true
  86. mountPath: "/sys/fs/cgroup"
  87. terminationMessagePath: "/dev/termination-log"
  88. securityContext:
  89. privileged: true
  90. volumes:
  91. - name: glusterfs-cgroup
  92. hostPath:
  93. path: "/sys/fs/cgroup"
  94. - name: gluster-vol1
  95. persistentVolumeClaim:
  96. claimName: ${PVC}
  97. - name: gluster-vol2
  98. persistentVolumeClaim:
  99. claimName: ${META_PVC}
  100. restartPolicy: Always
  101. terminationGracePeriodSeconds: 30
  102. dnsPolicy: ClusterFirst
  103. serviceAccountName: default
  104. serviceAccount: default
  105. securityContext: {}
  106. parameters:
  107. - name: IMAGE_NAME
  108. displayName: glusterblock provisioner container image name
  109. required: True
  110. - name: CLUSTER_NAME
  111. displayName: GlusterFS cluster name
  112. description: A unique name to identify which heketi service manages this cluster, useful for running multiple heketi instances
  113. value: storage
  114. - name: S3_ACCOUNT
  115. displayName: S3 Account Name
  116. description: S3 storage account which will provide storage on GlusterFS volumes
  117. required: true
  118. - name: S3_USER
  119. displayName: S3 User
  120. description: S3 user who can access the S3 storage account
  121. required: true
  122. - name: S3_PASSWORD
  123. displayName: S3 User Password
  124. description: Password for the S3 user
  125. required: true
  126. - name: PVC
  127. displayName: Primary GlusterFS-backed PVC
  128. description: GlusterFS-backed PVC for object storage
  129. value: gluster-s3-claim
  130. - name: META_PVC
  131. displayName: Metadata GlusterFS-backed PVC
  132. description: GlusterFS-backed PVC for object storage metadata
  133. value: gluster-s3-meta-claim
  134. - name: CLUSTER_NAME
  135. displayName: GlusterFS cluster name
  136. description: A unique name to identify which heketi service manages this cluster, useful for running multiple heketi instances
  137. value: storage