Add COMPRESS_OFFLINE = True in horizon conf

Change-Id: Ic3ac28bedaae66219a27d0944852bae2f133e6ef
This commit is contained in:
okozachenko 2020-05-25 23:07:59 +03:00
parent e5cf5dc4e9
commit edc3bbe402
3 changed files with 5 additions and 3 deletions

View File

@ -43,3 +43,5 @@ data:
{% else %}
OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = {{ spec.multidomain }}
{% endif %}
COMPRESS_OFFLINE = True

View File

@ -38,7 +38,7 @@
register: _metrics
loop: "{{ _memcached_ips.stdout_lines }}"
until: _metrics is success
retries: 10
retries: 60
delay: 5
failed_when: "'memcached_up 1' not in _metrics.content"
@ -46,7 +46,7 @@
command: kubectl get pods -l app.kubernetes.io/name=mcrouter,app.kubernetes.io/instance=memcached-devstack -o=jsonpath='{range .items[*]}{.status.podIP}{"\n"}{end}'
register: _mcrouter_ips
until: _mcrouter_ips is success
retries: 10
retries: 60
delay: 5
failed_when: |
{{ _mcrouter_ips.stdout_lines | length == 0 }} or

View File

@ -25,7 +25,7 @@
command: kubectl get pods -l app.kubernetes.io/name=rabbitmq,app.kubernetes.io/instance=sample -o=jsonpath='{range .items[*]}{.status.podIP}{"\n"}{end}'
register: _rabbitmq_ips
until: _rabbitmq_ips is success
retries: 10
retries: 60
delay: 5
failed_when: "{{ _rabbitmq_ips.stdout_lines | length == 0 }}"