logging-deployer.yaml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. apiVersion: "v1"
  2. kind: "List"
  3. items:
  4. -
  5. apiVersion: "v1"
  6. kind: "Template"
  7. metadata:
  8. name: logging-deployer-account-template
  9. annotations:
  10. description: "Template for creating the deployer account and roles needed for the aggregated logging deployer. Create as cluster-admin."
  11. tags: "infrastructure"
  12. objects:
  13. -
  14. apiVersion: v1
  15. kind: ServiceAccount
  16. name: logging-deployer
  17. metadata:
  18. name: logging-deployer
  19. labels:
  20. logging-infra: deployer
  21. provider: openshift
  22. component: deployer
  23. -
  24. apiVersion: v1
  25. kind: ServiceAccount
  26. metadata:
  27. name: aggregated-logging-kibana
  28. -
  29. apiVersion: v1
  30. kind: ServiceAccount
  31. metadata:
  32. name: aggregated-logging-elasticsearch
  33. -
  34. apiVersion: v1
  35. kind: ServiceAccount
  36. metadata:
  37. name: aggregated-logging-fluentd
  38. -
  39. apiVersion: v1
  40. kind: ServiceAccount
  41. metadata:
  42. name: aggregated-logging-curator
  43. - apiVersion: v1
  44. kind: ClusterRole
  45. metadata:
  46. name: oauth-editor
  47. rules:
  48. - resources:
  49. - oauthclients
  50. verbs:
  51. - create
  52. - delete
  53. - apiVersion: v1
  54. kind: ClusterRole
  55. metadata:
  56. name: daemonset-admin
  57. rules:
  58. - resources:
  59. - daemonsets
  60. apiGroups:
  61. - extensions
  62. verbs:
  63. - create
  64. - get
  65. - list
  66. - watch
  67. - delete
  68. - update
  69. -
  70. apiVersion: v1
  71. kind: RoleBinding
  72. metadata:
  73. name: logging-deployer-edit-role
  74. roleRef:
  75. kind: ClusterRole
  76. name: edit
  77. subjects:
  78. - kind: ServiceAccount
  79. name: logging-deployer
  80. -
  81. apiVersion: v1
  82. kind: RoleBinding
  83. metadata:
  84. name: logging-deployer-dsadmin-role
  85. roleRef:
  86. kind: ClusterRole
  87. name: daemonset-admin
  88. subjects:
  89. - kind: ServiceAccount
  90. name: logging-deployer
  91. -
  92. apiVersion: "v1"
  93. kind: "Template"
  94. metadata:
  95. name: logging-deployer-template
  96. annotations:
  97. description: "Template for running the aggregated logging deployer in a pod. Requires empowered 'logging-deployer' service account."
  98. tags: "infrastructure"
  99. labels:
  100. logging-infra: deployer
  101. provider: openshift
  102. objects:
  103. -
  104. apiVersion: v1
  105. kind: Pod
  106. metadata:
  107. generateName: logging-deployer-
  108. spec:
  109. containers:
  110. - image: ${IMAGE_PREFIX}logging-deployer:${IMAGE_VERSION}
  111. imagePullPolicy: Always
  112. name: deployer
  113. volumeMounts:
  114. - name: empty
  115. mountPath: /etc/deploy
  116. env:
  117. - name: PROJECT
  118. valueFrom:
  119. fieldRef:
  120. fieldPath: metadata.namespace
  121. - name: IMAGE_PREFIX
  122. value: ${IMAGE_PREFIX}
  123. - name: IMAGE_VERSION
  124. value: ${IMAGE_VERSION}
  125. - name: IMAGE_PULL_SECRET
  126. value: ${IMAGE_PULL_SECRET}
  127. - name: INSECURE_REGISTRY
  128. value: ${INSECURE_REGISTRY}
  129. - name: ENABLE_OPS_CLUSTER
  130. value: ${ENABLE_OPS_CLUSTER}
  131. - name: KIBANA_HOSTNAME
  132. value: ${KIBANA_HOSTNAME}
  133. - name: KIBANA_OPS_HOSTNAME
  134. value: ${KIBANA_OPS_HOSTNAME}
  135. - name: PUBLIC_MASTER_URL
  136. value: ${PUBLIC_MASTER_URL}
  137. - name: MASTER_URL
  138. value: ${MASTER_URL}
  139. - name: ES_INSTANCE_RAM
  140. value: ${ES_INSTANCE_RAM}
  141. - name: ES_PVC_SIZE
  142. value: ${ES_PVC_SIZE}
  143. - name: ES_PVC_PREFIX
  144. value: ${ES_PVC_PREFIX}
  145. - name: ES_PVC_DYNAMIC
  146. value: ${ES_PVC_DYNAMIC}
  147. - name: ES_CLUSTER_SIZE
  148. value: ${ES_CLUSTER_SIZE}
  149. - name: ES_NODE_QUORUM
  150. value: ${ES_NODE_QUORUM}
  151. - name: ES_RECOVER_AFTER_NODES
  152. value: ${ES_RECOVER_AFTER_NODES}
  153. - name: ES_RECOVER_EXPECTED_NODES
  154. value: ${ES_RECOVER_EXPECTED_NODES}
  155. - name: ES_RECOVER_AFTER_TIME
  156. value: ${ES_RECOVER_AFTER_TIME}
  157. - name: ES_OPS_INSTANCE_RAM
  158. value: ${ES_OPS_INSTANCE_RAM}
  159. - name: ES_OPS_PVC_SIZE
  160. value: ${ES_OPS_PVC_SIZE}
  161. - name: ES_OPS_PVC_PREFIX
  162. value: ${ES_OPS_PVC_PREFIX}
  163. - name: ES_OPS_PVC_DYNAMIC
  164. value: ${ES_OPS_PVC_DYNAMIC}
  165. - name: ES_OPS_CLUSTER_SIZE
  166. value: ${ES_OPS_CLUSTER_SIZE}
  167. - name: ES_OPS_NODE_QUORUM
  168. value: ${ES_OPS_NODE_QUORUM}
  169. - name: ES_OPS_RECOVER_AFTER_NODES
  170. value: ${ES_OPS_RECOVER_AFTER_NODES}
  171. - name: ES_OPS_RECOVER_EXPECTED_NODES
  172. value: ${ES_OPS_RECOVER_EXPECTED_NODES}
  173. - name: ES_OPS_RECOVER_AFTER_TIME
  174. value: ${ES_OPS_RECOVER_AFTER_TIME}
  175. - name: FLUENTD_NODESELECTOR
  176. value: ${FLUENTD_NODESELECTOR}
  177. - name: ES_NODESELECTOR
  178. value: ${ES_NODESELECTOR}
  179. - name: ES_OPS_NODESELECTOR
  180. value: ${ES_OPS_NODESELECTOR}
  181. - name: KIBANA_NODESELECTOR
  182. value: ${KIBANA_NODESELECTOR}
  183. - name: KIBANA_OPS_NODESELECTOR
  184. value: ${KIBANA_OPS_NODESELECTOR}
  185. - name: CURATOR_NODESELECTOR
  186. value: ${CURATOR_NODESELECTOR}
  187. - name: CURATOR_OPS_NODESELECTOR
  188. value: ${CURATOR_OPS_NODESELECTOR}
  189. - name: MODE
  190. value: ${MODE}
  191. dnsPolicy: ClusterFirst
  192. restartPolicy: Never
  193. serviceAccount: logging-deployer
  194. volumes:
  195. - name: empty
  196. emptyDir: {}
  197. parameters:
  198. -
  199. description: "The mode that the deployer runs in."
  200. name: MODE
  201. value: "install"
  202. -
  203. description: 'Specify prefix for logging components; e.g. for "registry.access.redhat.com/openshift3/logging-deployer:3.3.0", set prefix "registry.access.redhat.com/openshift3/"'
  204. name: IMAGE_PREFIX
  205. value: "registry.access.redhat.com/openshift3/"
  206. -
  207. description: 'Specify version for logging components; e.g. for "registry.access.redhat.com/openshift3/logging-deployer:3.3.0", set version "3.3.0"'
  208. name: IMAGE_VERSION
  209. value: "3.3.0"
  210. -
  211. description: "(Deprecated) Specify the name of an existing pull secret to be used for pulling component images from an authenticated registry."
  212. name: IMAGE_PULL_SECRET
  213. -
  214. description: "(Deprecated) Allow the registry for logging component images to be non-secure (not secured with a certificate signed by a known CA)"
  215. name: INSECURE_REGISTRY
  216. value: "false"
  217. -
  218. description: "(Deprecated) If true, set up to use a second ES cluster for ops logs."
  219. name: ENABLE_OPS_CLUSTER
  220. value: "false"
  221. -
  222. description: "(Deprecated) External hostname where clients will reach kibana"
  223. name: KIBANA_HOSTNAME
  224. value: "kibana.example.com"
  225. -
  226. description: "(Deprecated) External hostname at which admins will visit the ops Kibana."
  227. name: KIBANA_OPS_HOSTNAME
  228. value: kibana-ops.example.com
  229. -
  230. description: "(Deprecated) External URL for the master, for OAuth purposes"
  231. name: PUBLIC_MASTER_URL
  232. value: "https://localhost:8443"
  233. -
  234. description: "(Deprecated) Internal URL for the master, for authentication retrieval"
  235. name: MASTER_URL
  236. value: "https://kubernetes.default.svc.cluster.local"
  237. -
  238. description: "(Deprecated) How many instances of ElasticSearch to deploy."
  239. name: ES_CLUSTER_SIZE
  240. value: "1"
  241. -
  242. description: "(Deprecated) Amount of RAM to reserve per ElasticSearch instance."
  243. name: ES_INSTANCE_RAM
  244. value: "8G"
  245. -
  246. description: "(Deprecated) Size of the PersistentVolumeClaim to create per ElasticSearch instance, e.g. 100G. If empty, no PVCs will be created and emptyDir volumes are used instead."
  247. name: ES_PVC_SIZE
  248. -
  249. description: "(Deprecated) Prefix for the names of PersistentVolumeClaims to be created; a number will be appended per instance. If they don't already exist, they will be created with size ES_PVC_SIZE."
  250. name: ES_PVC_PREFIX
  251. value: "logging-es-"
  252. -
  253. description: '(Deprecated) Set to "true" to request dynamic provisioning (if enabled for your cluster) of a PersistentVolume for the ES PVC. '
  254. name: ES_PVC_DYNAMIC
  255. -
  256. description: "(Deprecated) Number of nodes required to elect a master (ES minimum_master_nodes). By default, derived from ES_CLUSTER_SIZE / 2 + 1."
  257. name: ES_NODE_QUORUM
  258. -
  259. description: "(Deprecated) Number of nodes required to be present before the cluster will recover from a full restart. By default, one fewer than ES_CLUSTER_SIZE."
  260. name: ES_RECOVER_AFTER_NODES
  261. -
  262. description: "(Deprecated) Number of nodes desired to be present before the cluster will recover from a full restart. By default, ES_CLUSTER_SIZE."
  263. name: ES_RECOVER_EXPECTED_NODES
  264. -
  265. description: "(Deprecated) Timeout for *expected* nodes to be present when cluster is recovering from a full restart."
  266. name: ES_RECOVER_AFTER_TIME
  267. value: "5m"
  268. -
  269. description: "(Deprecated) How many ops instances of ElasticSearch to deploy. By default, ES_CLUSTER_SIZE."
  270. name: ES_OPS_CLUSTER_SIZE
  271. -
  272. description: "(Deprecated) Amount of RAM to reserve per ops ElasticSearch instance."
  273. name: ES_OPS_INSTANCE_RAM
  274. value: "8G"
  275. -
  276. description: "(Deprecated) Size of the PersistentVolumeClaim to create per ElasticSearch ops instance, e.g. 100G. If empty, no PVCs will be created and emptyDir volumes are used instead."
  277. name: ES_OPS_PVC_SIZE
  278. -
  279. description: "(Deprecated) Prefix for the names of PersistentVolumeClaims to be created; a number will be appended per instance. If they don't already exist, they will be created with size ES_OPS_PVC_SIZE."
  280. name: ES_OPS_PVC_PREFIX
  281. value: "logging-es-ops-"
  282. -
  283. description: '(Deprecated) Set to "true" to request dynamic provisioning (if enabled for your cluster) of a PersistentVolume for the ES ops PVC. '
  284. name: ES_OPS_PVC_DYNAMIC
  285. -
  286. description: "(Deprecated) Number of ops nodes required to elect a master (ES minimum_master_nodes). By default, derived from ES_CLUSTER_SIZE / 2 + 1."
  287. name: ES_OPS_NODE_QUORUM
  288. -
  289. description: "(Deprecated) 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."
  290. name: ES_OPS_RECOVER_AFTER_NODES
  291. -
  292. description: "(Deprecated) Number of ops nodes desired to be present before the cluster will recover from a full restart. By default, ES_OPS_CLUSTER_SIZE."
  293. name: ES_OPS_RECOVER_EXPECTED_NODES
  294. -
  295. description: "(Deprecated) Timeout for *expected* ops nodes to be present when cluster is recovering from a full restart."
  296. name: ES_OPS_RECOVER_AFTER_TIME
  297. value: "5m"
  298. -
  299. description: "(Deprecated) The nodeSelector used for the Fluentd DaemonSet."
  300. name: FLUENTD_NODESELECTOR
  301. value: "logging-infra-fluentd=true"
  302. -
  303. description: "(Deprecated) Node selector Elasticsearch cluster (label=value)."
  304. name: ES_NODESELECTOR
  305. value: ""
  306. -
  307. description: "(Deprecated) Node selector Elasticsearch operations cluster (label=value)."
  308. name: ES_OPS_NODESELECTOR
  309. value: ""
  310. -
  311. description: "(Deprecated) Node selector Kibana cluster (label=value)."
  312. name: KIBANA_NODESELECTOR
  313. value: ""
  314. -
  315. description: "(Deprecated) Node selector Kibana operations cluster (label=value)."
  316. name: KIBANA_OPS_NODESELECTOR
  317. value: ""
  318. -
  319. description: "(Deprecated) Node selector Curator (label=value)."
  320. name: CURATOR_NODESELECTOR
  321. value: ""
  322. -
  323. description: "(Deprecated) Node selector operations Curator (label=value)."
  324. name: CURATOR_OPS_NODESELECTOR
  325. value: ""