metrics-deployer.yaml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #!/bin/bash
  2. #
  3. # Copyright 2014-2015 Red Hat, Inc. and/or its affiliates
  4. # and other contributors as indicated by the @author tags.
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18. apiVersion: "v1"
  19. kind: "Template"
  20. metadata:
  21. name: metrics-deployer-template
  22. annotations:
  23. description: "Template for deploying the required Metrics integration. Requires cluster-admin 'metrics-deployer' service account and 'metrics-deployer' secret."
  24. tags: "infrastructure"
  25. labels:
  26. metrics-infra: deployer
  27. provider: openshift
  28. component: deployer
  29. objects:
  30. -
  31. apiVersion: v1
  32. kind: Pod
  33. metadata:
  34. generateName: metrics-deployer-
  35. spec:
  36. containers:
  37. - image: ${IMAGE_PREFIX}metrics-deployer:${IMAGE_VERSION}
  38. name: deployer
  39. volumeMounts:
  40. - name: secret
  41. mountPath: /secret
  42. readOnly: true
  43. - name: empty
  44. mountPath: /etc/deploy
  45. env:
  46. - name: PROJECT
  47. valueFrom:
  48. fieldRef:
  49. fieldPath: metadata.namespace
  50. - name: IMAGE_PREFIX
  51. value: ${IMAGE_PREFIX}
  52. - name: IMAGE_VERSION
  53. value: ${IMAGE_VERSION}
  54. - name: MASTER_URL
  55. value: ${MASTER_URL}
  56. - name: MODE
  57. value: ${MODE}
  58. - name: REDEPLOY
  59. value: ${REDEPLOY}
  60. - name: USE_PERSISTENT_STORAGE
  61. value: ${USE_PERSISTENT_STORAGE}
  62. - name: HAWKULAR_METRICS_HOSTNAME
  63. value: ${HAWKULAR_METRICS_HOSTNAME}
  64. - name: CASSANDRA_NODES
  65. value: ${CASSANDRA_NODES}
  66. - name: CASSANDRA_PV_SIZE
  67. value: ${CASSANDRA_PV_SIZE}
  68. - name: METRIC_DURATION
  69. value: ${METRIC_DURATION}
  70. - name: METRIC_RESOLUTION
  71. value: ${METRIC_RESOLUTION}
  72. dnsPolicy: ClusterFirst
  73. restartPolicy: Never
  74. serviceAccount: metrics-deployer
  75. volumes:
  76. - name: empty
  77. emptyDir: {}
  78. - name: secret
  79. secret:
  80. secretName: metrics-deployer
  81. parameters:
  82. -
  83. description: 'Specify prefix for metrics components; e.g. for "openshift/origin-metrics-deployer:latest", set prefix "openshift/origin-"'
  84. name: IMAGE_PREFIX
  85. value: "registry.access.redhat.com/openshift3/"
  86. -
  87. description: 'Specify version for metrics components; e.g. for "openshift/origin-metrics-deployer:latest", set version "latest"'
  88. name: IMAGE_VERSION
  89. value: "3.2.1"
  90. -
  91. description: "Internal URL for the master, for authentication retrieval"
  92. name: MASTER_URL
  93. value: "https://kubernetes.default.svc:443"
  94. -
  95. description: "External hostname where clients will reach Hawkular Metrics"
  96. name: HAWKULAR_METRICS_HOSTNAME
  97. required: true
  98. -
  99. description: "Can be set to: 'deploy' to perform an initial deployment; 'refresh' to delete and redeploy all components but to keep persisted data and routes; 'redeploy' to delete and redeploy everything (losing all data in the process)"
  100. name: MODE
  101. value: "deploy"
  102. -
  103. description: "(Deprecated) Turns 'deploy' mode into 'redeploy' mode, deleting and redeploying everything (losing all data in the process)"
  104. name: REDEPLOY
  105. value: "false"
  106. -
  107. description: "Set to true for persistent storage, set to false to use non persistent storage"
  108. name: USE_PERSISTENT_STORAGE
  109. value: "true"
  110. -
  111. description: "The number of Cassandra Nodes to deploy for the initial cluster"
  112. name: CASSANDRA_NODES
  113. value: "1"
  114. -
  115. description: "The persistent volume size for each of the Cassandra nodes"
  116. name: CASSANDRA_PV_SIZE
  117. value: "10Gi"
  118. -
  119. description: "How many days metrics should be stored for."
  120. name: METRIC_DURATION
  121. value: "7"
  122. -
  123. description: "How often metrics should be gathered. Defaults value of '10s' for 10 seconds"
  124. name: METRIC_RESOLUTION
  125. value: "10s"