influxdb.yaml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. apiVersion: "v1"
  2. kind: "List"
  3. items:
  4. -
  5. apiVersion: "v1"
  6. kind: "Service"
  7. metadata:
  8. labels:
  9. provider: "fabric8"
  10. component: "influxdb-monitoring"
  11. name: "influxdb-monitoring"
  12. spec:
  13. ports:
  14. -
  15. port: 8086
  16. targetPort: "http"
  17. selector:
  18. provider: "fabric8"
  19. component: "influxdb-monitoring"
  20. -
  21. apiVersion: "v1"
  22. kind: "ReplicationController"
  23. metadata:
  24. labels:
  25. provider: "fabric8"
  26. component: "influxdb-monitoring"
  27. name: "influxdb-monitoring"
  28. spec:
  29. replicas: 1
  30. selector:
  31. provider: "fabric8"
  32. component: "influxdb-monitoring"
  33. template:
  34. metadata:
  35. labels:
  36. provider: "fabric8"
  37. component: "influxdb-monitoring"
  38. spec:
  39. containers:
  40. -
  41. env:
  42. -
  43. name: "PRE_CREATE_DB"
  44. value: "k8s;grafana"
  45. image: "fabric8/influxdb:0.8.8"
  46. name: "influxdb"
  47. ports:
  48. -
  49. containerPort: 8090
  50. name: "raft"
  51. -
  52. containerPort: 8099
  53. name: "protobuf"
  54. -
  55. containerPort: 8083
  56. name: "admin"
  57. -
  58. containerPort: 8086
  59. name: "http"
  60. volumeMounts:
  61. -
  62. mountPath: "/data"
  63. name: "influxdb-data"
  64. volumes:
  65. -
  66. emptyDir:
  67. name: "influxdb-data"