httpd-configmap-generator-template.yaml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. apiVersion: v1
  2. kind: Template
  3. labels:
  4. template: httpd-configmap-generator
  5. metadata:
  6. name: httpd-configmap-generator
  7. annotations:
  8. description: Httpd Configmap Generator
  9. tags: httpd,httpd-configmap-generator
  10. iconClass: icon-rails
  11. objects:
  12. - apiVersion: v1
  13. kind: ServiceAccount
  14. metadata:
  15. name: httpd-configmap-generator
  16. - apiVersion: v1
  17. kind: Service
  18. metadata:
  19. name: "${HTTPD_CONFIGMAP_GENERATOR_SERVICE_NAME}"
  20. annotations:
  21. description: Exposes the httpd configmap generator server
  22. service.alpha.openshift.io/dependencies: '[{"name":"${NAME}","namespace":"","kind":"Service"}]'
  23. spec:
  24. ports:
  25. - name: httpd-configmap-generator
  26. port: 80
  27. targetPort: 80
  28. selector:
  29. name: httpd-configmap-generator
  30. - apiVersion: v1
  31. kind: DeploymentConfig
  32. metadata:
  33. name: "${HTTPD_CONFIGMAP_GENERATOR_SERVICE_NAME}"
  34. annotations:
  35. description: Defines how to deploy httpd
  36. spec:
  37. strategy:
  38. type: Recreate
  39. recreateParams:
  40. timeoutSeconds: 1200
  41. triggers:
  42. - type: ConfigChange
  43. replicas: 1
  44. selector:
  45. name: "${HTTPD_CONFIGMAP_GENERATOR_SERVICE_NAME}"
  46. template:
  47. metadata:
  48. name: "${HTTPD_CONFIGMAP_GENERATOR_SERVICE_NAME}"
  49. labels:
  50. name: "${HTTPD_CONFIGMAP_GENERATOR_SERVICE_NAME}"
  51. spec:
  52. containers:
  53. - name: httpd-configmap-generator
  54. image: "${HTTPD_CONFIGMAP_GENERATOR_IMG_NAME}:${HTTPD_CONFIGMAP_GENERATOR_IMG_TAG}"
  55. ports:
  56. - containerPort: 80
  57. protocol: TCP
  58. - containerPort: 8080
  59. protocol: TCP
  60. livenessProbe:
  61. exec:
  62. command:
  63. - pidof
  64. - httpd
  65. initialDelaySeconds: 15
  66. timeoutSeconds: 3
  67. readinessProbe:
  68. tcpSocket:
  69. port: 80
  70. initialDelaySeconds: 10
  71. timeoutSeconds: 3
  72. resources:
  73. requests:
  74. memory: "${HTTPD_CONFIGMAP_GENERATOR_MEM_REQ}"
  75. cpu: "${HTTPD_CONFIGMAP_GENERATOR_CPU_REQ}"
  76. limits:
  77. memory: "${HTTPD_CONFIGMAP_GENERATOR_MEM_LIMIT}"
  78. lifecycle:
  79. postStart:
  80. exec:
  81. command:
  82. - "/usr/bin/save-container-environment"
  83. serviceAccount: httpd-configmap-generator
  84. serviceAccountName: httpd-configmap-generator
  85. parameters:
  86. - name: HTTPD_CONFIGMAP_GENERATOR_SERVICE_NAME
  87. required: true
  88. displayName: Httpd Configmap Generator Service Name
  89. description: The name of the OpenShift Service exposed for the httpd configmap generator container.
  90. value: httpd-configmap-generator
  91. - name: HTTPD_CONFIGMAP_GENERATOR_IMG_NAME
  92. displayName: Httpd Configmap Generator Image Name
  93. description: This is the httpd configmap generator image name requested to deploy.
  94. value: registry.access.redhat.com/cloudforms46/cfme-httpd-configmap-generator
  95. - name: HTTPD_CONFIGMAP_GENERATOR_IMG_TAG
  96. displayName: Httpd Configmap Generator Image Tag
  97. description: This is the httpd configmap generator image tag/version requested to deploy.
  98. value: latest
  99. - name: HTTPD_CONFIGMAP_GENERATOR_CPU_REQ
  100. displayName: Httpd Configmap Generator Min CPU Requested
  101. required: true
  102. description: Minimum amount of CPU time the httpd configmap generator container will need (expressed in millicores).
  103. value: 500m
  104. - name: HTTPD_CONFIGMAP_GENERATOR_MEM_REQ
  105. displayName: Httpd Configmap Generator Min RAM Requested
  106. required: true
  107. description: Minimum amount of memory the httpd configmap generator will need.
  108. value: 512Mi
  109. - name: HTTPD_CONFIGMAP_GENERATOR_MEM_LIMIT
  110. displayName: Httpd Configmap Generator Max RAM Limit
  111. required: true
  112. description: Maximum amount of memory the httpd configmap generator container can consume.
  113. value: 8192Mi