|
@@ -194,7 +194,9 @@
|
|
|
- port: 9200
|
|
|
targetPort: "restapi"
|
|
|
|
|
|
-- name: Creating ES storage template
|
|
|
+# storageclasses are used by default but if static then disable
|
|
|
+# storageclasses with the storageClassName set to "" in pvc.j2
|
|
|
+- name: Creating ES storage template - static
|
|
|
template:
|
|
|
src: pvc.j2
|
|
|
dest: "{{ tempdir }}/templates/logging-es-pvc.yml"
|
|
@@ -203,11 +205,13 @@
|
|
|
size: "{{ openshift_logging_elasticsearch_pvc_size }}"
|
|
|
access_modes: "{{ openshift_logging_elasticsearch_pvc_access_modes | list }}"
|
|
|
pv_selector: "{{ openshift_logging_elasticsearch_pvc_pv_selector }}"
|
|
|
+ storage_class_name: "{{ openshift_logging_elasticsearch_pvc_storage_class_name | default("") }}"
|
|
|
when:
|
|
|
- openshift_logging_elasticsearch_storage_type == "pvc"
|
|
|
- not openshift_logging_elasticsearch_pvc_dynamic
|
|
|
|
|
|
-- name: Creating ES storage template
|
|
|
+# Storageclasses are used by default if configured
|
|
|
+- name: Creating ES storage template - dynamic
|
|
|
template:
|
|
|
src: pvc.j2
|
|
|
dest: "{{ tempdir }}/templates/logging-es-pvc.yml"
|
|
@@ -216,8 +220,6 @@
|
|
|
size: "{{ openshift_logging_elasticsearch_pvc_size }}"
|
|
|
access_modes: "{{ openshift_logging_elasticsearch_pvc_access_modes | list }}"
|
|
|
pv_selector: "{{ openshift_logging_elasticsearch_pvc_pv_selector }}"
|
|
|
- annotations:
|
|
|
- volume.beta.kubernetes.io/storage-class: "dynamic"
|
|
|
when:
|
|
|
- openshift_logging_elasticsearch_storage_type == "pvc"
|
|
|
- openshift_logging_elasticsearch_pvc_dynamic
|