logging-deployer.yaml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. apiVersion: "v1"
  2. kind: "Template"
  3. metadata:
  4. name: logging-deployer-template
  5. annotations:
  6. description: "Template for deploying everything needed for aggregated logging. Requires cluster-admin 'logging-deployer' service account and 'logging-deployer' secret."
  7. tags: "infrastructure"
  8. labels:
  9. logging-infra: deployer
  10. provider: openshift
  11. component: deployer
  12. objects:
  13. -
  14. apiVersion: v1
  15. kind: Pod
  16. metadata:
  17. generateName: logging-deployer-
  18. spec:
  19. containers:
  20. - image: ${IMAGE_PREFIX}logging-deployment:${IMAGE_VERSION}
  21. imagePullPolicy: Always
  22. name: deployer
  23. volumeMounts:
  24. - name: secret
  25. mountPath: /secret
  26. readOnly: true
  27. - name: empty
  28. mountPath: /etc/deploy
  29. env:
  30. - name: PROJECT
  31. valueFrom:
  32. fieldRef:
  33. fieldPath: metadata.namespace
  34. - name: IMAGE_PREFIX
  35. value: ${IMAGE_PREFIX}
  36. - name: IMAGE_VERSION
  37. value: ${IMAGE_VERSION}
  38. - name: ENABLE_OPS_CLUSTER
  39. value: ${ENABLE_OPS_CLUSTER}
  40. - name: KIBANA_HOSTNAME
  41. value: ${KIBANA_HOSTNAME}
  42. - name: KIBANA_OPS_HOSTNAME
  43. value: ${KIBANA_OPS_HOSTNAME}
  44. - name: PUBLIC_MASTER_URL
  45. value: ${PUBLIC_MASTER_URL}
  46. - name: MASTER_URL
  47. value: ${MASTER_URL}
  48. - name: ES_INSTANCE_RAM
  49. value: ${ES_INSTANCE_RAM}
  50. - name: ES_CLUSTER_SIZE
  51. value: ${ES_CLUSTER_SIZE}
  52. - name: ES_NODE_QUORUM
  53. value: ${ES_NODE_QUORUM}
  54. - name: ES_RECOVER_AFTER_NODES
  55. value: ${ES_RECOVER_AFTER_NODES}
  56. - name: ES_RECOVER_EXPECTED_NODES
  57. value: ${ES_RECOVER_EXPECTED_NODES}
  58. - name: ES_RECOVER_AFTER_TIME
  59. value: ${ES_RECOVER_AFTER_TIME}
  60. - name: ES_OPS_INSTANCE_RAM
  61. value: ${ES_OPS_INSTANCE_RAM}
  62. - name: ES_OPS_CLUSTER_SIZE
  63. value: ${ES_OPS_CLUSTER_SIZE}
  64. - name: ES_OPS_NODE_QUORUM
  65. value: ${ES_OPS_NODE_QUORUM}
  66. - name: ES_OPS_RECOVER_AFTER_NODES
  67. value: ${ES_OPS_RECOVER_AFTER_NODES}
  68. - name: ES_OPS_RECOVER_EXPECTED_NODES
  69. value: ${ES_OPS_RECOVER_EXPECTED_NODES}
  70. - name: ES_OPS_RECOVER_AFTER_TIME
  71. value: ${ES_OPS_RECOVER_AFTER_TIME}
  72. - name: MODE
  73. value: ${MODE}
  74. dnsPolicy: ClusterFirst
  75. restartPolicy: Never
  76. serviceAccount: logging-deployer
  77. volumes:
  78. - name: empty
  79. emptyDir: {}
  80. - name: secret
  81. secret:
  82. secretName: logging-deployer
  83. parameters:
  84. -
  85. description: 'Specify image prefix for logging components; e.g. for "registry.access.redhat.com/openshift3/logging-deployment:3.2.1", set prefix "registry.access.redhat.com/openshift3/"'
  86. name: IMAGE_PREFIX
  87. value: registry.access.redhat.com/openshift3/
  88. -
  89. description: 'Specify version for logging components; e.g. for "registry.access.redhat.com/openshift3/logging-deployment:3.2.1", set version "3.2.1"'
  90. name: IMAGE_VERSION
  91. value: "3.2.1"
  92. -
  93. description: "If true, set up to use a second ES cluster for ops logs."
  94. name: ENABLE_OPS_CLUSTER
  95. value: "false"
  96. -
  97. description: "External hostname where clients will reach kibana"
  98. name: KIBANA_HOSTNAME
  99. required: true
  100. -
  101. description: "External hostname at which admins will visit the ops Kibana."
  102. name: KIBANA_OPS_HOSTNAME
  103. value: kibana-ops.example.com
  104. -
  105. description: "External URL for the master, for OAuth purposes"
  106. name: PUBLIC_MASTER_URL
  107. required: true
  108. -
  109. description: "Internal URL for the master, for authentication retrieval"
  110. name: MASTER_URL
  111. value: "https://kubernetes.default.svc.cluster.local"
  112. -
  113. description: "Amount of RAM to reserve per ElasticSearch instance."
  114. name: ES_INSTANCE_RAM
  115. value: "8G"
  116. -
  117. description: "How many instances of ElasticSearch to deploy."
  118. name: ES_CLUSTER_SIZE
  119. required: true
  120. -
  121. description: "Number of nodes required to elect a master (ES minimum_master_nodes). By default, derived from ES_CLUSTER_SIZE / 2 + 1."
  122. name: ES_NODE_QUORUM
  123. -
  124. description: "Number of nodes required to be present before the cluster will recover from a full restart. By default, one fewer than ES_CLUSTER_SIZE."
  125. name: ES_RECOVER_AFTER_NODES
  126. -
  127. description: "Number of nodes desired to be present before the cluster will recover from a full restart. By default, ES_CLUSTER_SIZE."
  128. name: ES_RECOVER_EXPECTED_NODES
  129. -
  130. description: "Timeout for *expected* nodes to be present when cluster is recovering from a full restart."
  131. name: ES_RECOVER_AFTER_TIME
  132. value: "5m"
  133. -
  134. description: "Amount of RAM to reserve per ops ElasticSearch instance."
  135. name: ES_OPS_INSTANCE_RAM
  136. value: "8G"
  137. -
  138. description: "How many ops instances of ElasticSearch to deploy. By default, ES_CLUSTER_SIZE."
  139. name: ES_OPS_CLUSTER_SIZE
  140. -
  141. description: "Number of ops nodes required to elect a master (ES minimum_master_nodes). By default, derived from ES_CLUSTER_SIZE / 2 + 1."
  142. name: ES_OPS_NODE_QUORUM
  143. -
  144. description: "Number of ops nodes required to be present before the cluster will recover from a full restart. By default, one fewer than ES_OPS_CLUSTER_SIZE."
  145. name: ES_OPS_RECOVER_AFTER_NODES
  146. -
  147. description: "Number of ops nodes desired to be present before the cluster will recover from a full restart. By default, ES_OPS_CLUSTER_SIZE."
  148. name: ES_OPS_RECOVER_EXPECTED_NODES
  149. -
  150. description: "Timeout for *expected* ops nodes to be present when cluster is recovering from a full restart."
  151. name: ES_OPS_RECOVER_AFTER_TIME
  152. value: "5m"
  153. -
  154. description: "The mode that the deployer runs in."
  155. name: MODE
  156. value: "install"