Skip to content
Snippets Groups Projects
  1. Apr 29, 2020
  2. Apr 28, 2020
  3. Apr 27, 2020
  4. Apr 26, 2020
    • Radosław Piliszek's avatar
      Fix haproxy restarting twice per Ansible run · 04effaa9
      Radosław Piliszek authored
      Since haproxy is orchestrated via site.yml in a single play,
      it does not need flushing handlers as handlers run will
      happen at the end of this play.
      
      Change-Id: Ia3743575da707325be93c39b4a2bcae9211cacb2
      Related-Bug: #1864810
      Closes-Bug: #1875228
      04effaa9
    • Radosław Piliszek's avatar
      Remove redundant listen on haproxy handler · 98e86ea6
      Radosław Piliszek authored
      Follow-up on [1] "Avoid multiple haproxy restarts after
      reconfiguration".
      
      There is no need to duplicate handler name in listen.
      The issue was because we had two handlers with the same
      name in the same environment.
      This causes Ansible not to mark handler as already run.
      
      [1] https://review.opendev.org/708385
      
      Change-Id: I5425a8037b6860ef71bce59becff8dfe5b601d4c
      Related-Bug: #1864810
      98e86ea6
  5. Apr 24, 2020
    • Nick Jones's avatar
      [skydive] fix: Use Keystone backend to authenticate API users · 7e5aa637
      Nick Jones authored
      Update Skydive Analyzer's configuration to use Keystone as its backend
      for authenticating users.  Any user with a role in the project defined
      by the variable skydive_admin_tenant_name will be able to access
      Skydive.
      
      Change-Id: I64c811d5eb72c7406fd52b649fa00edaf2d0c07b
      Closes-Bug: 1870903
      7e5aa637
    • James Kirsch's avatar
      Add support for encrypting heat api · ff842922
      James Kirsch authored
      This patch introduces an optional backend encryption for Heat
      service. When used in conjunction with enabling TLS for service API
      endpoints, network communcation will be encrypted end to end, from
      client through HAProxy to the Heat service.
      
      Change-Id: Ic12f7574135dcaed2a462e902c775a55176ff03b
      Partially-Implements: blueprint add-ssl-internal-network
      Depends-On: https://review.opendev.org/722028/
      ff842922
  6. Apr 22, 2020
  7. Apr 21, 2020
    • Christian Berendt's avatar
      Avoid multiple haproxy restarts after reconfiguration · 1efe0fe3
      Christian Berendt authored
      The haproxy role and the site.yml file calls the
      haproxy-config role to provide configuration for individual
      services.
      
      If the configuration within a service changes, the haproxy
      container is restarted.
      
      If the configuration in n services changes, there will be n
      restarts. This is not necessary, a restart at the end is
      sufficient.
      
      By removing the handler from the haproxy-config role and
      using the listen parameter in the handler of the haproxy role,
      the handler is executed only once.
      
      Change-Id: I535fe67579fb748093bb4b30a6bd31b81e021a1b
      Closes-Bug: #1864810
      1efe0fe3
    • Jeffrey Zhang's avatar
      Manage nova scheduler workers count · 8523ab56
      Jeffrey Zhang authored
      Closes-Bug: 1873753
      Change-Id: Ibf75b3fd3090d47b50c71d17f6c12177d16442ab
      8523ab56
  8. Apr 20, 2020
    • Mark Goddard's avatar
      Remove support for Python 2 on the host · 284f4928
      Mark Goddard authored
      Drops support for creating Python 2 virtualenvs in bootstrap-servers,
      and looking for a python2 interpreter in the kolla-ansible script.
      
      Also forces the use of Python 3 as the remote interpreter in CI on
      Debian and Ubuntu hosts, since they typically symlink the unversioned
      interpreter to python2.7.
      
      Change-Id: Id0e977de381e7faafed738674a140ba36184727e
      Partially-Implements: blueprint drop-py2-support
      284f4928
    • ya.wang's avatar
      Fix that cyborg conductor failed to communicate with placement · 4f1e0553
      ya.wang authored
      Add placement auth configuration into cyborg conf.
      
      Closes-bug: #1873717
      Change-Id: I476a878549507c5d46efef4f8639f57d89737e75
      4f1e0553
  9. Apr 17, 2020
  10. Apr 16, 2020
    • Michal Nasiadka's avatar
      OVN: Followup changes · ca380e6d
      Michal Nasiadka authored
      Followup of last reviews from [1].
      
      [1]: https://review.opendev.org/#/c/696841
      
      Change-Id: I7085093b20e8848e09dc521ae9fbf120e909470d
      ca380e6d
    • Michal Nasiadka's avatar
      Ansible lint: lines longer than 160 chars · d403690b
      Michal Nasiadka authored
      Change-Id: I500cc8800c412bc0e95edb15babad5c1189e6ee4
      d403690b
    • Mark Goddard's avatar
      Fix nova cell message queue URL with separate notification queue · e8ad5f37
      Mark Goddard authored
      If using a separate message queue for nova notifications, i.e.
      nova_cell_notify_transport_url is different from
      nova_cell_rpc_transport_url, then Kolla Ansible will unnecessarily
      update the cell. This should not cause any issues since the URL is taken
      from nova.conf.
      
      This change fixes the comparison to use the correct URL.
      
      Change-Id: I5f0e30957bfd70295f2c22c86349ebbb4c1fb155
      Closes-Bug: #1873255
      e8ad5f37
    • zhangmeng's avatar
      Add support for encrypting cinder api. · c8ada707
      zhangmeng authored
      Change-Id: I4673f436d8943e6fce7e579446c27ec8215b7346
      c8ada707
    • Jason Anderson's avatar
      [horizon] Move 'balance' HAProxy keyword · 5c760df3
      Jason Anderson authored
      The "balance" keyword is not valid in a frontend section. From the
      HAProxy documentation[1]:
      
      balance <algorithm> [ <arguments> ]
      balance url_param <param> [check_post [<max_wait>]]
        Define the load balancing algorithm to be used in a backend.
        May be used in sections :   defaults | frontend | listen | backend
                                       yes   |    no    |   yes  |   yes
      
      When running HAProxy using the "split" template style, where a
      frontend/backend pair are used instead of one listen section, HAProxy
      will emit warnings for the Horizon config due to this.
      
      [1]: https://www.haproxy.org/download/1.5/doc/configuration.txt
      
      Closes-Bug: #1872540
      Change-Id: I91cee275d91a51944298618493f4ea0cd80282cc
      5c760df3
    • lixuehai's avatar
      Fix Octavia CA cert paths · ea4505f1
      lixuehai authored
      This fixes Octavia in scenarios requiring providing
      CA cert (self-signed, internally-signed).
      
      Change-Id: I60b7ec85f4fd8bbacf5df0ab7ed9a00658c91871
      Closes-Bug: #1872404
      ea4505f1
  11. Apr 15, 2020
  12. Apr 14, 2020
    • Mark Goddard's avatar
      Fix nova compute addition with limit · 3af28d21
      Mark Goddard authored
      Deploy a small cloud. Add one host to the compute group in the
      inventory, and scale out:
      
      $ kolla-ansible deploy --limit <new compute host>
      
      The command succeeds, but creating an instance fails with the following:
      
          Host 'compute0' is not mapped to any cell
      
      This happens because we only discover computes on the first host in the
      cell's nova conductor group. If that host is not in the specified limit,
      the discovery will not happen.
      
      This change fixes the issue by running compute discovery when any ironic
      or virtualised compute hosts are in the play batch, and delegating it to
      a conductor.
      
      Change-Id: Ie984806240d147add825ffa8446ae6ff55ca4814
      Closes-Bug: #1869371
      3af28d21
    • Jason Anderson's avatar
      [haproxy-config] Fix missing servers in split cfg · 6d00236e
      Jason Anderson authored
      When using the split config style, all backends would be empty, which
      meant that HAProxy was unable to serve any traffic. This turned out to
      be due to a bad default in the split config template.
      
      Closes-Bug: #1872545
      Change-Id: I952e526e735e1d31445963f04d41d66bbdbfdee4
      Unverified
      6d00236e
    • James Kirsch's avatar
      Refactor copy certificates task · 4d155d69
      James Kirsch authored
      Refactor service configuration to use the copy certificates task. This
      reduces code duplication and simplifies implementing encrypting backend
      HAProxy traffic for individual services.
      
      Change-Id: I0474324b60a5f792ef5210ab336639edf7a8cd9e
      4d155d69
  13. Apr 13, 2020
    • Radosław Piliszek's avatar
      Fix Designate not to use etcd coordination backend · 3c234603
      Radosław Piliszek authored
      etcd via tooz does not support group membership required by
      Designate coordination.
      The best k-a can do is not to configure etcd in Designate.
      
      Change-Id: I2f64f928e730355142ac369d8868cf9f65ca357e
      Closes-bug: #1872205
      Related-bug: #1840070
      3c234603
  14. Apr 11, 2020
    • Rafael Weingärtner's avatar
      Allow operators to use "ceilometer-upgrade" parameters · 6fcccdae
      Rafael Weingärtner authored
      Allow operators to use custom parameters with the ceilometer-upgrade
      command. This is quite useful when using the dynamic pollster subsystem;
      that sub-system provides flexibility to create and edit pollsters configs,
      which affects gnocchi resource-type configurations. However, Ceilometer
      uses default and hard-coded resource-type configurations; if one customizes
      some of its default resource-types, he/she can get into trouble during
      upgrades. Therefore, the only way to work around it is to use the
      "--skip-gnocchi-resource-types" flag. This PR introduces a method for
      operators to execute such customization, and many others if needed.
      
      Depends-On: https://review.opendev.org/#/c/718190/
      Change-Id: I92f0edba92c9e3707d89b3ff4033ac886b29cf6d
      6fcccdae
  15. Apr 10, 2020
  16. Apr 09, 2020
    • Dincer Celik's avatar
      Introduce /etc/timezone to Debian/Ubuntu containers · 4b5df0d8
      Dincer Celik authored
      Some services look for /etc/timezone on Debian/Ubuntu, so we should
      introduce it to the containers.
      
      In addition, added prechecks for /etc/localtime and /etc/timezone.
      
      Closes-Bug: #1821592
      Change-Id: I9fef14643d1bcc7eee9547eb87fa1fb436d8a6b3
      4b5df0d8
    • John Garbutt's avatar
      Fix live migration to use migration int. address · 628c27ce
      John Garbutt authored
      In kolla ansible we typically configure services to communicate via IP
      addresses rather than hostnames. One accidental exception to this was
      live migration, which used the hostname of the destination even when
      not required (i.e. TLS not being used for libvirt).
      
      To make such hostnames work, k-a adds entries to /etc/hosts in the
      bootstrap-servers command. Alternatively users may provide DNS.
      
      One problem with using /etc/hosts is that, if a new compute host is
      added to the cloud, or an IP address is changed, that will not be
      reflected in the /etc/hosts file of other hosts. This would cause live
      migration to the new host from an old host to fail, as the name cannot
      be resolved.
      
      The workaround for this was to update the /etc/hosts file (perhaps via
      bootstrap-servers) on all hosts after adding new compute hosts. Then the
      nova_libvirt container had to be restarted to pick up the change.
      
      Similarly, if user has overridden the migration_interface, the used
      hostname could point to a wrong address on which libvirt would not
      listen.
      
      This change adds the live_migration_inbound_addr option to nova.conf. If
      TLS is not in use for libvirt, this will be set to the IP address of the
      host on the migration network. If TLS is enabled for libvirt,
      live_migration_inbound_addr will be set to migration_hostname, since
      certificates will typically reference the hostname rather than the
      host's IP. With libvirt TLS enabled, DNS is recommended to avoid the
      /etc/hosts issue which is likely the case in production deployments.
      
      Change-Id: I0201b46a9fbab21433a9f53685131aeb461543a8
      Closes-Bug: #1729566
      628c27ce
    • James Kirsch's avatar
      Add support for encrypting backend Keystone HAProxy traffic · b475643c
      James Kirsch authored
      This patch introduces an optional backend encryption for Keystone
      service. When used in conjunction with enabling TLS for service API
      endpoints, network communcation will be encrypted end to end, from
      client through HAProxy to the Keystone service.
      
      Change-Id: I6351147ddaff8b2ae629179a9bc3bae2ebac9519
      Partially-Implements: blueprint add-ssl-internal-network
      b475643c
    • Michal Nasiadka's avatar
      OVN Support · 8a0740df
      Michal Nasiadka authored
      Implement OVN Ansible role.
      
      Implements: blueprint ovn-controller-neutron-ansible
      
      Depends-On: https://review.opendev.org/713422
      Change-Id: Icd425dea85d58db49c838839d8f0b864b4a89a78
      8a0740df
  17. Apr 08, 2020
    • Mark Goddard's avatar
      Fix monasca deployment due to monasca_log_dir · 3310a142
      Mark Goddard authored
      Monasca deployment fails on master due to an invalid variable reference
      (monasca_log_dir) in the config.json for monasca API and monasca log
      API.
      
      This change fixes the issue by correcting the variable definition.
      
      Change-Id: I2ec497fa430c2f301dca6a7653ac988e49007469
      Closes-Bug: #1864181
      3310a142
    • Mark Goddard's avatar
      Fix kibana deployment with openstack_cacert unset · 6bae6da3
      Mark Goddard authored
      When deploying Kibana with the default configuration of openstack_cacert
      being unset, it fails due to an invalid configuration. The error message
      is both unfriendly and useful:
      
      "message":"child \"elasticsearch\" fails because [child \"ssl\" fails
      because [child \"certificateAuthorities\" fails because [single value of
      \"certificateAuthorities\" fails because [\"certificateAuthorities\"
      must be a string]]]]"}
      
      This is because we set elasticsearch.ssl.certificateAuthorities even
      when there is no CA cert configured.
      
      This change fixes the issue by only setting
      elasticsearch.ssl.certificateAuthorities when a CA cert is configured.
      
      Change-Id: I5954751451b7c931e8a9d79c713a2798522d8b81
      Closes-Bug: #1864180
      6bae6da3
    • Mark Goddard's avatar
      Remove support for CentOS 7 · f4e20a1f
      Mark Goddard authored
      CentOS 8 support is now fairly complete - time to drop CentOS 7.
      
      Partially-Implements: blueprint centos-rhel-8
      
      Change-Id: I940b1d3eceb98e16fa366c243672f588b1412d70
      f4e20a1f
Loading