logging-deployer.yaml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. dnsPolicy: ClusterFirst
  73. restartPolicy: Never
  74. serviceAccount: logging-deployer
  75. volumes:
  76. - name: empty
  77. emptyDir: {}
  78. - name: secret
  79. secret:
  80. secretName: logging-deployer
  81. parameters:
  82. -
  83. description: 'Specify prefix for logging components; e.g. for "openshift/origin-logging-deployer:v1.1", set prefix "openshift/origin-"'
  84. name: IMAGE_PREFIX
  85. value: "registry.access.redhat.com/openshift3/"
  86. -
  87. description: 'Specify version for logging components; e.g. for "openshift/origin-logging-deployer:v1.1", set version "v1.1"'
  88. name: IMAGE_VERSION
  89. value: "3.1.0"
  90. -
  91. description: "If true, set up to use a second ES cluster for ops logs."
  92. name: ENABLE_OPS_CLUSTER
  93. value: "false"
  94. -
  95. description: "External hostname where clients will reach kibana"
  96. name: KIBANA_HOSTNAME
  97. required: true
  98. -
  99. description: "External hostname at which admins will visit the ops Kibana."
  100. name: KIBANA_OPS_HOSTNAME
  101. value: kibana-ops.example.com
  102. -
  103. description: "External URL for the master, for OAuth purposes"
  104. name: PUBLIC_MASTER_URL
  105. required: true
  106. -
  107. description: "Internal URL for the master, for authentication retrieval"
  108. name: MASTER_URL
  109. value: "https://kubernetes.default.svc.cluster.local"
  110. -
  111. description: "Amount of RAM to reserve per ElasticSearch instance."
  112. name: ES_INSTANCE_RAM
  113. value: "8G"
  114. -
  115. description: "How many instances of ElasticSearch to deploy."
  116. name: ES_CLUSTER_SIZE
  117. required: true
  118. -
  119. description: "Number of nodes required to elect a master (ES minimum_master_nodes). By default, derived from ES_CLUSTER_SIZE / 2 + 1."
  120. name: ES_NODE_QUORUM
  121. -
  122. 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."
  123. name: ES_RECOVER_AFTER_NODES
  124. -
  125. description: "Number of nodes desired to be present before the cluster will recover from a full restart. By default, ES_CLUSTER_SIZE."
  126. name: ES_RECOVER_EXPECTED_NODES
  127. -
  128. description: "Timeout for *expected* nodes to be present when cluster is recovering from a full restart."
  129. name: ES_RECOVER_AFTER_TIME
  130. value: "5m"
  131. -
  132. description: "Amount of RAM to reserve per ops ElasticSearch instance."
  133. name: ES_OPS_INSTANCE_RAM
  134. value: "8G"
  135. -
  136. description: "How many ops instances of ElasticSearch to deploy. By default, ES_CLUSTER_SIZE."
  137. name: ES_OPS_CLUSTER_SIZE
  138. -
  139. description: "Number of ops nodes required to elect a master (ES minimum_master_nodes). By default, derived from ES_CLUSTER_SIZE / 2 + 1."
  140. name: ES_OPS_NODE_QUORUM
  141. -
  142. 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."
  143. name: ES_OPS_RECOVER_AFTER_NODES
  144. -
  145. description: "Number of ops nodes desired to be present before the cluster will recover from a full restart. By default, ES_OPS_CLUSTER_SIZE."
  146. name: ES_OPS_RECOVER_EXPECTED_NODES
  147. -
  148. description: "Timeout for *expected* ops nodes to be present when cluster is recovering from a full restart."
  149. name: ES_OPS_RECOVER_AFTER_TIME
  150. value: "5m"