jboss-middleware-manager-pv-example.yaml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #
  2. # Copyright 2016-2017 Red Hat, Inc. and/or its affiliates
  3. # and other contributors as indicated by the @author tags.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. apiVersion: v1
  18. kind: Template
  19. parameters:
  20. - name: HAWKULAR_SERVICES_DATA_LIMIT
  21. description: Maximum amount data used by hawkular-services container (mostly logging)
  22. displayName: Hawkular Services Container Data Limit
  23. value: 1Gi
  24. - name: CASSANDRA_DATA_LIMIT
  25. description: Maximum amount data used by Cassandra container
  26. displayName: Cassandra Container Data Limit
  27. value: 2Gi
  28. objects:
  29. - apiVersion: v1
  30. kind: PersistentVolume
  31. metadata:
  32. name: h-services-pv
  33. labels:
  34. type: h-services
  35. spec:
  36. capacity:
  37. storage: ${HAWKULAR_SERVICES_DATA_LIMIT}
  38. accessModes:
  39. - ReadWriteOnce
  40. persistentVolumeReclaimPolicy: Retain
  41. hostPath:
  42. path: /tmp/pv-services
  43. - apiVersion: v1
  44. kind: PersistentVolume
  45. metadata:
  46. name: cassandra-pv
  47. labels:
  48. type: cassandra
  49. spec:
  50. capacity:
  51. storage: ${CASSANDRA_DATA_LIMIT}
  52. accessModes:
  53. - ReadWriteOnce
  54. persistentVolumeReclaimPolicy: Retain
  55. hostPath:
  56. path: /tmp/pv-cassandra