|
@@ -20,6 +20,7 @@
|
|
{{ openshift.common.client_binary }}
|
|
{{ openshift.common.client_binary }}
|
|
secrets new metrics-deployer
|
|
secrets new metrics-deployer
|
|
nothing=/dev/null
|
|
nothing=/dev/null
|
|
|
|
+ --config={{hawkular_tmp_conf}}
|
|
-n openshift-infra
|
|
-n openshift-infra
|
|
register: deployer_create_secret
|
|
register: deployer_create_secret
|
|
failed_when: "'already exists' not in deployer_create_secret.stderr and deployer_create_secret.rc !=0"
|
|
failed_when: "'already exists' not in deployer_create_secret.stderr and deployer_create_secret.rc !=0"
|
|
@@ -43,8 +44,9 @@
|
|
shell: >
|
|
shell: >
|
|
{{ openshift.common.client_binary }} process -f \
|
|
{{ openshift.common.client_binary }} process -f \
|
|
/usr/share/openshift/examples/infrastructure-templates/{{ hawkular_type }}/metrics-deployer.yaml -v \
|
|
/usr/share/openshift/examples/infrastructure-templates/{{ hawkular_type }}/metrics-deployer.yaml -v \
|
|
- HAWKULAR_METRICS_HOSTNAME=hawkular-metrics.{{ openshift.master.default_subdomain }},USE_PERSISTENT_STORAGE={{ hawkular_persistence }} | \
|
|
|
|
- {{ openshift.common.client_binary }} create -n openshift-infra -f -
|
|
|
|
|
|
+ HAWKULAR_METRICS_HOSTNAME=hawkular-metrics.{{ openshift.master.default_subdomain }} USE_PERSISTENT_STORAGE={{ hawkular_persistence }} \
|
|
|
|
+ METRIC_DURATION={{ openshift.hosted.metrics.duration }} METRIC_RESOLUTION={{ openshift.hosted.metrics.resolution }} |
|
|
|
|
+ {{ openshift.common.client_binary }} create -n openshift-infra --config={{hawkular_tmp_conf}} -f -
|
|
register: oex_heapster_services
|
|
register: oex_heapster_services
|
|
failed_when: "'already exists' not in oex_heapster_services.stderr and oex_heapster_services.rc != 0"
|
|
failed_when: "'already exists' not in oex_heapster_services.stderr and oex_heapster_services.rc != 0"
|
|
changed_when: false
|
|
changed_when: false
|
|
@@ -52,4 +54,4 @@
|
|
- name: Clean temporary config file
|
|
- name: Clean temporary config file
|
|
command: >
|
|
command: >
|
|
rm -rf {{hawkular_tmp_conf}}
|
|
rm -rf {{hawkular_tmp_conf}}
|
|
- changed_when: false
|
|
|
|
|
|
+ changed_when: false
|