Skip to content
Snippets Groups Projects
  1. Mar 03, 2021
    • Doug Szumski's avatar
      Remove Monasca Log Transformer · 0743a9bf
      Doug Szumski authored
      Historically Monasca Log Transformer has been for log
      standardisation and processing. For example, logs from different
      sources may use slightly different error levels such as WARN, 5,
      or WARNING. Monasca Log Transformer is a place where these could
      be 'squashed' into a single error level to simplify log searches
      based on labels such as these.
      
      However, in Kolla Ansible, we do this processing in Fluentd so
      that the simpler Fluentd -> Elastic -> Kibana pipeline also
      benefits. This helps to avoid spreading out log parsing
      configuration over many services, with the Fluentd Monasca output
      plugin being yet another potential place for processing (which
      should be avoided). It therefore makes sense to remove this
      service entirely, and squash any existing configuration which
      can't be moved to Fluentd into the Log Perister service. I.e.
      by removing this pipeline, we don't loose any functionality,
      we encourage log processing to take place in Fluentd, or at least
      outside of Monasca, and we make significant gains in efficiency
      by removing a topic from Kafka which contains a copy of all logs
      in transit.
      
      Finally, users forwarding logs from outside the control plane,
      eg. from tenant instances, should be encouraged to process the
      logs at the point of sending using whichever framework they are
      forwarding them with. This makes sense, because all Logstash
      configuration in Monasca is only accessible by control plane
      admins. A user can't typically do any processing inside Monasca,
      with or without this change.
      
      Change-Id: I65c76d0d1cd488725e4233b7e75a11d03866095c
      0743a9bf
    • Zuul's avatar
      1fb56cf5
    • Zuul's avatar
      Merge "[CI] Cinder upgrade testing" · 21b9b509
      Zuul authored
      21b9b509
    • Zuul's avatar
  2. Mar 02, 2021
  3. Feb 24, 2021
  4. Feb 23, 2021
  5. Feb 22, 2021
  6. Feb 21, 2021
  7. Feb 20, 2021
  8. Feb 19, 2021
  9. Feb 18, 2021
  10. Feb 17, 2021
  11. Feb 16, 2021
  12. Feb 15, 2021
    • Zuul's avatar
      Merge "Fix Barbican API log config" · 2b906bc3
      Zuul authored
      2b906bc3
    • Pedro Henrique's avatar
      Add support to OpenID Connect Authentication flow · f3fbe837
      Pedro Henrique authored
      
      This pull request adds support for the OpenID Connect authentication
      flow in Keystone and enables both ID and access token authentication
      flows. The ID token configuration is designed to allow users to
      authenticate via Horizon using an identity federation; whereas the
      Access token is used to allow users to authenticate in the OpenStack CLI
      using a federated user.
      
      Without this PR, if one wants to configure OpenStack to use identity
      federation, he/she needs to do a lot of configurations in the keystone,
      Horizon, and register quite a good number of different parameters using
      the CLI such as mappings, identity providers, federated protocols, and
      so on. Therefore, with this PR, we propose a method for operators to
      introduce/present the IdP's metadata to Kolla-ansible, and based on the
      presented metadata, Kolla-ansible takes care of all of the
      configurations to prepare OpenStack to work in a federated environment.
      
      Implements: blueprint add-openid-support
      Co-Authored-By: default avatarJason Anderson <jasonanderson@uchicago.edu>
      Change-Id: I0203a3470d7f8f2a54d5e126d947f540d93b8210
      f3fbe837
    • Zuul's avatar
      Merge "CI: Add monasca scenario" · f0ff9dfc
      Zuul authored
      f0ff9dfc
    • Zuul's avatar
      6e157f47
    • Zuul's avatar
  13. Feb 12, 2021
    • Mark Goddard's avatar
      Fix installation with pip install --user · 519ca1c0
      Mark Goddard authored
      If kolla-ansible is installed via pip install --user, currently the
      kolla-ansible script is unable to locate the installed playbooks.
      This leads to a failure when running commands.
      
      This change fixes the issue by checking for the user's .local directory
      as a possible installation path.
      
      This fixes some of the scenario tests which were failing after switching
      to a user installation in Ifaf1948ed5d42eebaa62d7bad375bbfc12b134d5.
      Most tests did not fail since the kolla-ansible script in the source
      checkout was used.
      
      Closes-Bug: #1915527
      
      Change-Id: I5b47a146627d06bb3fe4a747c5f20290c726b0f9
      519ca1c0
    • Zuul's avatar
  14. Feb 11, 2021
    • Mark Goddard's avatar
      CI: fix ceph-ansible installation after cryptography 3.4 release · 5fc77079
      Mark Goddard authored
      Installing ceph-ansible in the virtualenv on CentOS 8 fails with:
      
          ModuleNotFoundError: No module named 'setuptools_rust'
      
      This error appeared following the release of cryptography 3.4, which now
      includes Rust code. It can be installed without Rust using a Python
      wheel, but only with more recent pip than version 9.0.3 available as RPM
      on CentOS 8. The cryptography bug report [1] recommends pip>=19.1.1.
      
      This change upgrades pip in the virtualenv before installing
      ceph-ansible.
      
      [1] https://github.com/pyca/cryptography/issues/5753
      
      Change-Id: I47473de6f71c422db2238d653c2d8f379c55e79b
      5fc77079
    • Giacomo Lanciano's avatar
      Fix monasca-grafana check · 486de99d
      Giacomo Lanciano authored
      - Increment retries: waiting 20 seconds (i.e., 10 retries) seem to
        be not enough for monasca-grafana to start on the first node.
        Increasing to 80 seconds (i.e., 40 retries) fixes the issue.
      
      - Prevent the check from running when kolla_action=config. In that
        case, the command would never succeed as the service is not
        deployed yet (similarly to
        https://review.opendev.org/c/openstack/kolla-ansible/+/771237).
      
      Closes-Bug: #1915060
      Related-Bug: #1821285
      Change-Id: I7b42c51a66caed0eccf118615d841dca97a7af9d
      486de99d
  15. Feb 10, 2021
    • Mark Goddard's avatar
      CI: fix kolla-ansible installation after cryptography 3.4 release · 3dd6834a
      Mark Goddard authored
      Installing kolla-ansible system-wide on CentOS 8 fails with:
      
          ModuleNotFoundError: No module named 'setuptools_rust'
      
      This error appeared following the release of cryptography 3.4, which now
      includes Rust code. It can be installed without Rust using a Python
      wheel, but only with more recent pip than version 9.0.3 available as RPM
      on CentOS 8. The cryptography bug report [1] recommends pip>=19.1.1.
      
      This change switches to using pip --user when installing kolla-ansible.
      
      Also fixes an issue with ansible-lint which was failing on
      etc/kolla/globals.yml due to a missing space before comments.
      
      [1] https://github.com/pyca/cryptography/issues/5753
      
      Change-Id: Ifaf1948ed5d42eebaa62d7bad375bbfc12b134d5
      Closes-Bug: #1915141
      3dd6834a
    • Radosław Piliszek's avatar
      Lint and fix renos · 223c6793
      Radosław Piliszek authored
      One of the renos was causing issues due to a duplicated id.
      This change makes tox doc8 env lint renos and fixes
      the offending reno.
      
      Change-Id: Id3ae6e144b4261c97726cdec172ea9bef093de9e
      223c6793
  16. Feb 08, 2021
  17. Feb 07, 2021
  18. Feb 03, 2021
Loading