├── .ansible-lint ├── .codespell-ignore ├── .coveragerc ├── .gitignore ├── .gitreview ├── .stestr.conf ├── CONTRIBUTING.rst ├── HACKING.rst ├── LICENSE ├── README.rst ├── contrib ├── neutron-plugins │ ├── README.rst │ ├── networking-ansible.ini │ ├── networking-mlnx.ini │ ├── template_override-networking-mlnx.j2 │ ├── template_override-vmware-nsx.j2 │ └── vmware-nsx.ini └── template-override │ ├── README.rst │ └── ovs-dpdk.j2 ├── deliverables.yaml ├── doc ├── requirements.txt └── source │ ├── admin │ ├── image-building.rst │ ├── index.rst │ ├── kolla_api.rst │ └── template-override │ │ └── ovs-dpdk.rst │ ├── ceph_versions.csv │ ├── conf.py │ ├── contributor │ ├── adding-a-new-image.rst │ ├── bug-triage.rst │ ├── ci.rst │ ├── code-reviews.rst │ ├── contributing.rst │ ├── genconfig.rst │ ├── index.rst │ ├── kolla-design-philosophy.rst │ ├── meeting.rst │ ├── ptl-guide.rst │ ├── release-management.rst │ ├── release-notes.rst │ ├── running-in-development.rst │ ├── running-tests.rst │ └── versions.rst │ ├── index.rst │ ├── matrix_aarch64.csv │ ├── matrix_x86.csv │ └── support_matrix.rst ├── docker ├── aodh │ ├── aodh-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── aodh-base │ │ ├── Dockerfile.j2 │ │ ├── aodh_sudoers │ │ └── extend_start.sh │ ├── aodh-evaluator │ │ └── Dockerfile.j2 │ ├── aodh-expirer │ │ └── Dockerfile.j2 │ ├── aodh-listener │ │ └── Dockerfile.j2 │ └── aodh-notifier │ │ └── Dockerfile.j2 ├── barbican │ ├── barbican-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── barbican-base │ │ ├── Dockerfile.j2 │ │ ├── barbican_sudoers │ │ └── extend_start.sh │ ├── barbican-keystone-listener │ │ └── Dockerfile.j2 │ └── barbican-worker │ │ └── Dockerfile.j2 ├── base │ ├── Dockerfile.j2 │ ├── apt_preferences │ ├── apt_preferences.debian │ ├── apt_preferences.ubuntu │ ├── ci-centos.repo │ ├── copy_cacerts.sh │ ├── curlrc │ ├── dnf.conf │ ├── dpkg_reducing_disk_footprint │ ├── healthcheck_curl │ ├── healthcheck_filemod │ ├── healthcheck_listen │ ├── healthcheck_port │ ├── healthcheck_socket │ ├── httpd_setup.sh │ ├── install_projects.sh │ ├── kolla_bashrc │ ├── kolla_patch.sh │ ├── set_configs.py │ ├── sources.list │ ├── sources.list.debian │ ├── sources.list.ubuntu │ ├── sources.list.ubuntu.aarch64 │ ├── start.sh │ └── sudoers ├── bifrost │ ├── bifrost-base │ │ ├── Dockerfile.j2 │ │ ├── bifrost_sudoers │ │ └── build_arg.yml │ └── bifrost-deploy │ │ └── Dockerfile.j2 ├── blazar │ ├── blazar-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── blazar-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── blazar-manager │ │ └── Dockerfile.j2 ├── ceilometer │ ├── ceilometer-base │ │ ├── Dockerfile.j2 │ │ ├── ceilometer_sudoers │ │ └── extend_start.sh │ ├── ceilometer-central │ │ └── Dockerfile.j2 │ ├── ceilometer-compute │ │ └── Dockerfile.j2 │ ├── ceilometer-ipmi │ │ └── Dockerfile.j2 │ └── ceilometer-notification │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── cinder │ ├── cinder-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── cinder-backup │ │ └── Dockerfile.j2 │ ├── cinder-base │ │ ├── Dockerfile.j2 │ │ ├── cinder_sudoers │ │ └── extend_start.sh │ ├── cinder-scheduler │ │ └── Dockerfile.j2 │ └── cinder-volume │ │ ├── Dockerfile.j2 │ │ ├── cinder_sudoers │ │ └── extend_start.sh ├── cloudkitty │ ├── cloudkitty-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── cloudkitty-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── cloudkitty-processor │ │ └── Dockerfile.j2 ├── collectd │ ├── Dockerfile.j2 │ └── extend_start.sh ├── cron │ ├── Dockerfile.j2 │ ├── extend_start.sh │ └── logrotate ├── cyborg │ ├── cyborg-agent │ │ └── Dockerfile.j2 │ ├── cyborg-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── cyborg-base │ │ ├── Dockerfile.j2 │ │ ├── cyborg_sudoers │ │ └── extend_start.sh │ └── cyborg-conductor │ │ └── Dockerfile.j2 ├── designate │ ├── designate-api │ │ └── Dockerfile.j2 │ ├── designate-backend-bind9 │ │ └── Dockerfile.j2 │ ├── designate-base │ │ ├── Dockerfile.j2 │ │ ├── designate_sudoers │ │ └── extend_start.sh │ ├── designate-central │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── designate-mdns │ │ └── Dockerfile.j2 │ ├── designate-producer │ │ └── Dockerfile.j2 │ ├── designate-sink │ │ └── Dockerfile.j2 │ └── designate-worker │ │ └── Dockerfile.j2 ├── dnsmasq │ ├── Dockerfile.j2 │ └── extend_start.sh ├── etcd │ ├── Dockerfile.j2 │ ├── etcd_sudoers │ └── extend_start.sh ├── fluentd │ ├── Dockerfile.j2 │ ├── extend_start.sh │ └── fluentd_sudoers ├── glance │ ├── glance-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── glance-base │ │ ├── Dockerfile.j2 │ │ ├── etc │ │ └── glance │ │ │ ├── rootwrap.conf │ │ │ └── rootwrap.d │ │ │ └── glance_cinder_store.filters │ │ ├── extend_start.sh │ │ └── glance_sudoers ├── gnocchi │ ├── gnocchi-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── gnocchi-base │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── gnocchi_sudoers │ ├── gnocchi-metricd │ │ └── Dockerfile.j2 │ └── gnocchi-statsd │ │ └── Dockerfile.j2 ├── grafana │ ├── Dockerfile.j2 │ ├── extend_start.sh │ └── grafana_sudoers ├── hacluster │ ├── hacluster-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── hacluster-corosync │ │ └── Dockerfile.j2 │ ├── hacluster-pacemaker-remote │ │ └── Dockerfile.j2 │ ├── hacluster-pacemaker │ │ └── Dockerfile.j2 │ └── hacluster-pcs │ │ └── Dockerfile.j2 ├── haproxy │ ├── haproxy-ssh │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── update-loadbalancer-cert.sh │ └── haproxy │ │ ├── Dockerfile.j2 │ │ └── ensure_latest_config.sh ├── heat │ ├── heat-api-cfn │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── heat-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── heat-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── heat-engine │ │ └── Dockerfile.j2 ├── horizon │ ├── Dockerfile.j2 │ └── extend_start.sh ├── httpd │ ├── Dockerfile.j2 │ └── extend_start.sh ├── influxdb │ ├── Dockerfile.j2 │ ├── extend_start.sh │ └── influxdb_sudoers ├── ironic │ ├── ironic-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── ironic-base │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── ironic_sudoers │ ├── ironic-conductor │ │ └── Dockerfile.j2 │ ├── ironic-prometheus-exporter │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── ironic-pxe-filter │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── ironic-pxe │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── tftp-map-file-template ├── iscsid │ ├── Dockerfile.j2 │ └── extend_start.sh ├── keepalived │ ├── Dockerfile.j2 │ ├── check_alive.sh │ └── extend_start.sh ├── keystone │ ├── keystone-base │ │ ├── Dockerfile.j2 │ │ └── wsgi │ ├── keystone-fernet │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ ├── fetch_fernet_tokens.py │ │ └── keystone_bootstrap.sh │ ├── keystone-ssh │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── keystone │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── keystone_bootstrap.sh ├── kolla-toolbox │ ├── Dockerfile.j2 │ ├── ansible.cfg │ ├── ansible_sudoers │ ├── apt_preferences_rabbitmq.debian │ ├── apt_preferences_rabbitmq.ubuntu │ ├── extend_start.sh │ ├── kolla_toolbox.sh │ └── requirements.yml ├── kuryr │ ├── kuryr-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── kuryr-libnetwork │ │ └── Dockerfile.j2 ├── letsencrypt │ ├── letsencrypt-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── letsencrypt-lego │ │ ├── Dockerfile.j2 │ │ ├── letsencrypt-certificates.sh │ │ └── sync-and-update-certificate.sh │ └── letsencrypt-webserver │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── macros.j2 ├── magnum │ ├── magnum-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── magnum-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── magnum-conductor │ │ └── Dockerfile.j2 ├── manila │ ├── manila-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── manila-base │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── manila_sudoers │ ├── manila-data │ │ └── Dockerfile.j2 │ ├── manila-scheduler │ │ └── Dockerfile.j2 │ └── manila-share │ │ └── Dockerfile.j2 ├── mariadb-server │ ├── Dockerfile.j2 │ ├── backup.sh │ ├── backup_replica.sh │ ├── extend_start.sh │ ├── healthcheck_mariadb │ ├── mariadb_sudoers │ └── security_reset.expect ├── masakari │ ├── masakari-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── masakari-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── masakari-engine │ │ └── Dockerfile.j2 │ └── masakari-monitors │ │ ├── Dockerfile.j2 │ │ └── masakari_monitors_sudoers ├── memcached │ └── Dockerfile.j2 ├── mistral │ ├── mistral-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── mistral-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── mistral-engine │ │ └── Dockerfile.j2 │ ├── mistral-event-engine │ │ └── Dockerfile.j2 │ └── mistral-executor │ │ └── Dockerfile.j2 ├── multipathd │ └── Dockerfile.j2 ├── networking-baremetal │ └── ironic-neutron-agent │ │ └── Dockerfile.j2 ├── neutron │ ├── neutron-base │ │ ├── Dockerfile.j2 │ │ ├── copy-wrappers │ │ ├── delete-wrappers │ │ ├── dnsmasq │ │ ├── extend_start.sh │ │ ├── haproxy │ │ ├── keepalived │ │ ├── neutron-keepalived-state-change │ │ ├── neutron_sudoers │ │ └── radvd │ ├── neutron-bgp-dragent │ │ └── Dockerfile.j2 │ ├── neutron-dhcp-agent │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── neutron-infoblox-ipam-agent │ │ └── Dockerfile.j2 │ ├── neutron-l3-agent │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── neutron-metadata-agent │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── neutron-metering-agent │ │ └── Dockerfile.j2 │ ├── neutron-mlnx-agent │ │ └── Dockerfile.j2 │ ├── neutron-openvswitch-agent │ │ └── Dockerfile.j2 │ ├── neutron-ovn-agent │ │ └── Dockerfile.j2 │ ├── neutron-server │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── neutron-sriov-agent │ │ └── Dockerfile.j2 ├── nova │ ├── nova-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── nova-base │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── nova_sudoers │ ├── nova-compute-ironic │ │ └── Dockerfile.j2 │ ├── nova-compute │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── nova-conductor │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── nova-libvirt │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── nova-novncproxy │ │ └── Dockerfile.j2 │ ├── nova-scheduler │ │ └── Dockerfile.j2 │ ├── nova-serialproxy │ │ └── Dockerfile.j2 │ ├── nova-spicehtml5proxy │ │ └── Dockerfile.j2 │ └── nova-ssh │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── octavia │ ├── octavia-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── octavia-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── octavia-driver-agent │ │ └── Dockerfile.j2 │ ├── octavia-health-manager │ │ └── Dockerfile.j2 │ ├── octavia-housekeeping │ │ └── Dockerfile.j2 │ └── octavia-worker │ │ └── Dockerfile.j2 ├── opensearch │ ├── opensearch-dashboards │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── opensearch │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── openstack-base │ └── Dockerfile.j2 ├── openvswitch │ ├── openvswitch-base │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── ovs_wrapper.sh │ ├── openvswitch-db-server │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── releasenotes │ │ │ └── notes │ │ │ └── drop-ovs-ensure-configured-7973d36969e157fa.yaml │ └── openvswitch-vswitchd │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── ovn │ ├── ovn-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── ovn-controller │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── ovn-nb-db-server │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── start_nb_db_server.sh │ ├── ovn-northd │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── ovn-sb-db-relay │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── ovn-sb-db-server │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── start_sb_db_server.sh ├── ovsdpdk │ ├── ovsdpdk-db │ │ ├── Dockerfile.j2 │ │ ├── extend_start.sh │ │ └── start_ovsdb_server.sh │ ├── ovsdpdk-vswitchd │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── ovsdpdk │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── placement │ ├── placement-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── placement-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── prometheus │ ├── prometheus-alertmanager │ │ └── Dockerfile.j2 │ ├── prometheus-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── prometheus-blackbox-exporter │ │ └── Dockerfile.j2 │ ├── prometheus-cadvisor │ │ └── Dockerfile.j2 │ ├── prometheus-elasticsearch-exporter │ │ └── Dockerfile.j2 │ ├── prometheus-libvirt-exporter │ │ └── Dockerfile.j2 │ ├── prometheus-memcached-exporter │ │ └── Dockerfile.j2 │ ├── prometheus-mtail │ │ └── Dockerfile.j2 │ ├── prometheus-mysqld-exporter │ │ └── Dockerfile.j2 │ ├── prometheus-node-exporter │ │ └── Dockerfile.j2 │ ├── prometheus-openstack-exporter │ │ └── Dockerfile.j2 │ └── prometheus-server │ │ └── Dockerfile.j2 ├── proxysql │ ├── Dockerfile.j2 │ ├── kolla_extend_start │ └── kolla_proxysql_config_sync ├── rabbitmq │ ├── Dockerfile.j2 │ ├── apt_preferences_rabbitmq.debian │ ├── apt_preferences_rabbitmq.ubuntu │ ├── extend_start.sh │ └── healthcheck_rabbitmq ├── redis │ ├── redis-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── redis-sentinel │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── redis │ │ └── Dockerfile.j2 ├── skyline │ ├── skyline-apiserver │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── skyline-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── skyline-console │ │ └── Dockerfile.j2 ├── tacker │ ├── tacker-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── tacker-conductor │ │ └── Dockerfile.j2 │ └── tacker-server │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh ├── telegraf │ ├── Dockerfile.j2 │ ├── extend_start.sh │ └── telegraf_sudoers ├── tgtd │ └── Dockerfile.j2 ├── trove │ ├── trove-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── trove-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── trove-conductor │ │ └── Dockerfile.j2 │ ├── trove-guestagent │ │ └── Dockerfile.j2 │ └── trove-taskmanager │ │ └── Dockerfile.j2 ├── valkey │ ├── valkey-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── valkey-sentinel │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── valkey-server │ │ └── Dockerfile.j2 ├── watcher │ ├── watcher-api │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ ├── watcher-applier │ │ └── Dockerfile.j2 │ ├── watcher-base │ │ ├── Dockerfile.j2 │ │ └── extend_start.sh │ └── watcher-engine │ │ └── Dockerfile.j2 └── zun │ ├── zun-api │ ├── Dockerfile.j2 │ └── extend_start.sh │ ├── zun-base │ ├── Dockerfile.j2 │ ├── app.wsgi │ ├── extend_start.sh │ └── zun_sudoers │ ├── zun-cni-daemon │ ├── Dockerfile.j2 │ └── zun_sudoers │ ├── zun-compute │ ├── Dockerfile.j2 │ ├── extend_start.sh │ └── zun_sudoers │ └── zun-wsproxy │ └── Dockerfile.j2 ├── etc ├── kolla │ └── .keep └── oslo-config-generator │ └── kolla-build.conf ├── kolla ├── __init__.py ├── cmd │ ├── __init__.py │ └── build.py ├── common │ ├── __init__.py │ ├── config.py │ ├── sources.py │ ├── task.py │ ├── users.py │ └── utils.py ├── engine_adapter │ ├── __init__.py │ └── engine.py ├── exception.py ├── hacking │ ├── __init__.py │ └── checks.py ├── image │ ├── __init__.py │ ├── build.py │ ├── kolla_worker.py │ ├── tasks.py │ ├── unbuildable.py │ └── utils.py ├── opts.py ├── template │ ├── __init__.py │ ├── filters.py │ ├── methods.py │ └── repos.yaml ├── tests │ ├── __init__.py │ ├── base.py │ ├── common │ │ ├── __init__.py │ │ └── test_config.py │ ├── docker │ │ ├── base │ │ │ └── Dockerfile.j2 │ │ ├── etcd │ │ │ └── Dockerfile.j2 │ │ └── neutron-server │ │ │ └── Dockerfile.j2 │ ├── etc │ │ └── default.conf │ ├── test_build.py │ ├── test_hacking.py │ └── test_methods.py └── version.py ├── releasenotes ├── notes │ ├── Add-distro_python_version-variable-3688288558f4e586.yaml │ ├── Add-mod_ssl-to-images-2d2972c3cf794f65.yaml │ ├── Add-work-dir-command-line-option-dd83aa934d5c9e3e.yaml │ ├── MAINTAINER-to-LABEL-344044f33ccfa161.yaml │ ├── aarch64-ipxe-51888a5972528d77.yaml │ ├── add-aodh-a5de8a339f25c1a2.yaml │ ├── add-apache-storm-927c5318d91b5db3.yaml │ ├── add-api-layer-to-letsencrypt-images-9db42c763b7d13ad.yaml │ ├── add-barbican-8f0636668001de73.yaml │ ├── add-blazar-dashboard-e201d1aeeccc0eaa.yaml │ ├── add-block-labels-d0927a1617ab13ec.yaml │ ├── add-ceilometer-a4759f21564de7eb.yaml │ ├── add-ceilometer-agent-ipmi-container-aa498b90c3d2f326.yaml │ ├── add-ceph-disk-init-protection-5b38ce8f1502ff69.yaml │ ├── add-ceph-nfs-b64cfba4775589a0.yaml │ ├── add-certmonger-0bf3a37089c5c267.yaml │ ├── add-cinder-vg-check-c70d9f79d8cfd09b.yaml │ ├── add-cloudkitty-10eb09a96de60144.yaml │ ├── add-collectd-6e3387dfff75040a.yaml │ ├── add-congress-877644b4b0e2ed0a.yaml │ ├── add-congress-dashboard-e302d9aeecdc0eaa.yaml │ ├── add-cyborg-images-cab2b3a24a071c38.yaml │ ├── add-debian_arch-variable-9559ac31809afaca.yaml │ ├── add-designate-c789e47f8ced394d.yaml │ ├── add-designate-producer-1420e7c4744e9b09.yaml │ ├── add-docker-engine-7402d3fe7349f1f3.yaml │ ├── add-dragonflow-da8ff734139c9de5.yaml │ ├── add-dumb-init-manage-root-process-e25a529b322d4fac.yaml │ ├── add-ec2-api-e7d3e60173e8a3d8.yaml │ ├── add-elasticsearch-curator-88089d04f7ccd549.yaml │ ├── add-etcd3gw-to-ubuntu-binary-1aaf4b5e1ee670ee.yaml │ ├── add-fernet-support-54ccb88b901d8d8b.yaml │ ├── add-fluentd-prometheus-plugin-b5c626db667c5675.yaml │ ├── add-freezer-74c9b538348cd62a.yaml │ ├── add-freezer-sceduler-b64cfba4666889a0.yaml │ ├── add-gnocchi-94296c3ed6e979a8.yaml │ ├── add-grafana-in-heka-6397498442c00670.yaml │ ├── add-hacluster-role-d10bc3918395ccdf.yaml │ ├── add-header-blocks-9ac76254e5f5ab20.yaml │ ├── add-heat-all-efdefb3189ec8403.yaml │ ├── add-heat-api-cloudwatch-95259c920ba7d19e.yaml │ ├── add-ironic-prometheus-exporter-c793478ee5938bee.yaml │ ├── add-kafka-26c9e54c934b1119.yaml │ ├── add-karbor-e6cfd97f965a4a9f.yaml │ ├── add-kolla-git-commit-label-aab06fb8c8df1873.yaml │ ├── add-kubernetes-images-76f5a60e98d09eb7.yaml │ ├── add-letsencrypt-eab-support-0ec1a60f1602662e.yaml │ ├── add-logstash-27da5de156efb943.yaml │ ├── add-logstash6-everywhere-7f9027ff17c6022d.yaml │ ├── add-magnum-cluster-api-0b82789def334eb8.yaml │ ├── add-manila-api-httpd-packages-and-conf-1bea1364037cd64e.yaml │ ├── add-mariadb-healthcheck-script-916e5ad7a216e05e.yaml │ ├── add-masakari-dashboard-eae5f216888e5fe0.yaml │ ├── add-mistral-event-engine-053ebdfbd50e2e65.yaml │ ├── add-monasca-3c60b3e44d3c4267.yaml │ ├── add-monasca-datasource-to-grafana-06dfe0ce329a7b7f.yaml │ ├── add-monasca-grafana-868f1dd95725a030.yaml │ ├── add-monasca-grafana-app-ea24f8ca43fa9c7d.yaml │ ├── add-monasca-thresh-f3df34dee9eee562.yaml │ ├── add-mtail-b806e87da3ae950d.yaml │ ├── add-multipath-9ee29be1fcea6d94.yaml │ ├── add-mysql-ceilometer-backend-9ffdc4c0495fb801.yaml │ ├── add-network-interface-checks-0e789f3f93cbdb09.yaml │ ├── add-networking-ansible-b27128f544f300e6.yaml │ ├── add-networking-baremtal-ed44e0fc04371eb8.yaml │ ├── add-networking-mlnx-to-neutron-base-2c39f761dbf8fa7d.yaml │ ├── add-networking-sfc-62ae433ed7aa4e33.yaml │ ├── add-neutron-bgp-dragent-c831d5ec9a130937.yaml │ ├── add-neutron-dvr-f1b3541e22c0fbc3.yaml │ ├── add-neutron-ipam-driver-infoblox-0cee3c06f359c5e4.yaml │ ├── add-neutron-lbaas-dbb92dada9d34ceb.yaml │ ├── add-neutron-mlnx-agent-b77a4ad9ba3beaae.yaml │ ├── add-neutron-server-opendaylight-bf8407e0b91059c4.yaml │ ├── add-neutron-server-ovn-5728bbd35b08083e.yaml │ ├── add-neutron-vpnaas-88e0780326100e36.yaml │ ├── add-novajoin-9e8ae602b29335b7.yaml │ ├── add-octavia-dashboard-e2b1d1aeebcc0eba.yaml │ ├── add-opendaylight-fee2807442ce3c6d.yaml │ ├── add-openssh-clients-to-ironic-conductor-7275bd65dfe238a6.yaml │ ├── add-openvswitch-ovn-2855384c9720161e.yaml │ ├── add-panko-dockerfile-ff69a745aca3ec15.yaml │ ├── add-prometheus-libvirt-exporter-8d505dc8b74f8625.yaml │ ├── add-prometheus-v2-6f62ed3702d465a0.yaml │ ├── add-ptp-service-image-3fb4eadeeeda3aa0.yaml │ ├── add-py35-f0ddb519029f5ee3.yaml │ ├── add-python3-systemd-for-ironic-source-9a6883496e101da9.yaml │ ├── add-qdrouterd-4676f6cad921a3f8.yaml │ ├── add-qinling-618886c3375eea4a.yaml │ ├── add-quiet-mode-4f386acd4bc043a5.yaml │ ├── add-radvd-dockerfile-64668525dae7ead8.yaml │ ├── add-rally-c6d1468accfb1da6.yaml │ ├── add-reno-f5e9ff4d9ccfa785.yaml │ ├── add-sahara-f2be7bf79935792e.yaml │ ├── add-sensu-a763a155649e068d.yaml │ ├── add-skydive-52c3fb964fe6cc1b.yaml │ ├── add-skyline-200d1bca7907b00c.yaml │ ├── add-solum-aa448921b2b58989.yaml │ ├── add-tacker-dockerfile-3388429491d80239.yaml │ ├── add-tarballs-base-parameter-c1ddfa6de5dfd622.yaml │ ├── add-tripleo-ui-image-6a17f9a31894d908.yaml │ ├── add-tripleoclient-image-0341fb72fe27ba14.yaml │ ├── add-use-dumb-init-config-option-26b47f6d97d7585c.yaml │ ├── add-venus-dashboard-1d4a5093ad233c6e.yaml │ ├── add-venus-e2a9824f5ef5cf30.yaml │ ├── add-vmtp-7d6aef3125a38dbe.yaml │ ├── add-watcher-a97995ace827cf71.yaml │ ├── add-zookeeper-2454cdfbfa7047b4.yaml │ ├── add-zun-cni-daemon-image-842bf6d7ba804dda.yaml │ ├── add-zun-dockerfile-fb604877dc9c15fe.yaml │ ├── add_dpdk_telemetry_and_logparser-bcf9b13bcefc99c9.yaml │ ├── add_kolla-toolbox_templating_block-3d284d886816e95a.yml │ ├── additional-docker-dir-7121c33da7eec160.yaml │ ├── allow-custom-ceilometer-upgrade-params-7c08446f59251cf0.yaml │ ├── allow_setting_group_in_config_files-cef8580912854741.yaml │ ├── allowed-to-fail-e2ff5bf61c857b55.yaml │ ├── almanach-images-f0a9a424ac3fe7cd.yaml │ ├── ansible-core-2-14-toolbox-750765147e4238dc.yaml │ ├── ansible-core-2.18-582103463aba6e8a.yaml │ ├── ansible-core-2_16-toolbox-8cec8f56e022731b.yaml │ ├── ansible-core-toolbox-e34b31422474684b.yaml │ ├── ansible-tempest-44edbca4436f3c19.yaml │ ├── apache-image-serve-89942346ff89f767.yaml │ ├── apt-get-update-fatal-ed2bcc5c1d93c082.yaml │ ├── apt-keys-bb7c8678fc6d908b.yaml │ ├── base-package-type-bf53d8d63611b5ac.yaml │ ├── base-unified-07fe64b8cbbdab9a.yaml │ ├── bifrost-ansible-11-d14b635f9f766675.yaml │ ├── bifrost-ansible-9-10-3a33e95f42713209.yaml │ ├── bifrost-f080de99005ad38e.yaml │ ├── blazar-images-c54435b3bd5b0425.yaml │ ├── bookworm-mariadb-repo-e0fe1000d30e6c29.yaml │ ├── bp-letsencrypt-https-b3245976c513f99b.yaml │ ├── bp-support-network-ha-1a771d735a268219.yaml │ ├── bring-configure_user-macro-to-custom-templates-61c143326a35c7ed.yaml │ ├── bug-1808805-e63af01591f03506.yaml │ ├── bug-1814515-99197e13a6280861.yaml │ ├── bug-1814552-a037354969dcf7e5.yaml │ ├── bug-1859047-d41762357da8ae0b.yaml │ ├── bug-1866017-9e31ddbfca9fd0f4.yaml │ ├── bug-1866827-5351ec43486d7f33.yaml │ ├── bug-1867365-115d717288e7c7d0.yaml │ ├── bug-1868574.yaml │ ├── bug-1869319-aa032c1330b540dc.yaml │ ├── bug-1873744-559df986c3840bd7.yaml │ ├── bug-1874298-35b7ccffe327f7e4.yaml │ ├── bug-1884259-23bdaa6c1c038a81.yaml │ ├── bug-1884484-d26488c9c1f3977f.yaml │ ├── bug-1884919-6be7e60872c5eb86.yaml │ ├── bug-1897948-a0eb6d890eea8061.yaml │ ├── bug-1905279-41d664114ef26a16.yaml │ ├── bug-1907213-e0cee8498d19a170.yaml │ ├── bug-1913952-a23431cef137f9c7.yaml │ ├── bug-1928408-4a22a85570eee8d6.yaml │ ├── bug-1930544-a8926990f3a578a9.yaml │ ├── bug-1930867-debian-c01f2cd22d8c10f0.yaml │ ├── bug-1930867.yaml │ ├── bug-1931544-5a091735efb6d6dd.yaml │ ├── bug-1933759-c03e50c243850a49.yaml │ ├── bug-1933770-c08c6804aa5d9e61.yaml │ ├── bug-1934753-98ec4951a0f7373b.yaml │ ├── bug-1934788-b1fd51f443479fb6.yaml │ ├── bug-1935015-385d6f20e32311eb.yml │ ├── bug-1936947-8beac926823cdf8f.yaml │ ├── bug-1940862-8fd12d669ab15299.yaml │ ├── bug-1942038-f1d96ae352f73bd1.yaml │ ├── bug-1942846-1216faacacba94be.yaml │ ├── bug-1946801-5f3af3c44e567fcf.yaml │ ├── bug-1955889-92d98ef6527a75ef.yaml │ ├── bug-1959203-1bb695e052248d78.yaml │ ├── bug-1964140-57b433329bab067e.yaml │ ├── bug-1985784-59df54a10a004551.yaml │ ├── bug-1999778.yaml │ ├── bug-2000915-962531e87944c6f3.yaml │ ├── bug-2020761-c31f28c922ebcf84.yaml │ ├── bug-2047941-895a319fd706d2b4.yaml │ ├── bug-2060855-77516da722d04761.yaml │ ├── bug-2062572-c55c71e1045a863f.yaml │ ├── bug-2076249-96b7f39fbdcf2293.yaml │ ├── bug-2080818-9eacce36a8c18f8f.yaml │ ├── bug-2080861-a46761ea9e7bbf91.yaml │ ├── bug-2091161-a99c5c243c2514ac.yaml │ ├── bug-2098904-4c5670049a7e1a66.yaml │ ├── bug-2111620-e40e1dec6fed309f.yaml │ ├── bug-2112140-41a1924c260e531c.yaml │ ├── bug-2114173-70d0b815a42ae239.yaml │ ├── bug-2120639-74c180bd812ddcf7.yaml │ ├── build-skip-parents-102a82736935f027.yaml │ ├── bump-alertmanager-to-0.23-42e3e3894158d7d0.yaml │ ├── bump-alertmanager-to-0.24-e73778e9d954cf85.yaml │ ├── bump-prometheus-services-ba7d5bbd7ed5235f.yaml │ ├── bump-proxysql-version-5669b13bcc3d88fe.yaml │ ├── bump-proxysql-version-9e646a32db57a451.yaml │ ├── bump-proxysql-version-aa1fb531f2b8f08a.yaml │ ├── cadf-notifications-6c102c16090688d5.yaml │ ├── cap-fluentd-elasticsearch-18c0ca8e90c1234c.yaml │ ├── centos-8-950d979507939643.yaml │ ├── centos-8-stream-b5b45ccee94f7cf5.yaml │ ├── centos-ceph-pacific-40c55be6721cb1ac.yaml │ ├── centos-mariadb-upstream-971216b820ee1f1a.yaml │ ├── centos8-aarch64-not-part-of-release-330893c1f7d5f394.yaml │ ├── ceph-jewel-33caab815946cb4c.yaml │ ├── change-bifrost-upper-constraints-source-e93cb72e88823d56.yaml │ ├── clean_package_cache-fa08d1808a2f2b49.yaml │ ├── cloudkitty-debuntu-binary-09b182fc672b7d77.yaml │ ├── cloudkitty-docker-fb6b3d7e006a0697.yaml │ ├── collectd-pcie-errors-fffb5871ce17f589.yaml │ ├── collectd-pmu-6aeae4759b8a1563.yaml │ ├── config_files_new_options-0267e1ab804335ba.yaml │ ├── configurable-horizon-sessions-1dd22eae714a7001.yaml │ ├── configure-apache-locale-d0150e5881f00e65.yaml │ ├── congress-broken-cbf8ca59d90a85cb.yaml │ ├── copr-move-5d0464c50dc85ccf.yaml │ ├── curl-retries-e1c5d6b5b25d7380.yaml │ ├── custom-policies-5a9bb2b59d19b484.yaml │ ├── customise-toolbox-pip-e574c422afae0d93.yaml │ ├── debian-bullseye-4fedf3b3638783de.yaml │ ├── debian-buster-7bd8be7ec4ce0d13.yaml │ ├── debian-ceph-nautilus-83fe26e66874045f.yaml │ ├── debian-dalmatian-65fed830f10946e2.yaml │ ├── debian-epoxy-f68eb3e911f5fea3.yaml │ ├── debian-mariadb-upstream-75e05cbdaa013abe.yaml │ ├── debian-rabbitmq-bookworm-34b2e5d9d43241da.yaml │ ├── debian-stretch-38cadd54fc895f20.yaml │ ├── debian-switch-to-newer-libvirt-qemu-aa8460d4ee13a023.yaml │ ├── debuntu-ironic-neutron-agent-6534d616b37643a8.yaml │ ├── dedeprecate-masakari-362eb4b01d558e9d.yaml │ ├── default-rocky-4b0d906a455539d8.yaml │ ├── default-type-source-f0c5cf1d97e2f345.yaml │ ├── deprecate-almanach-0ca0c9bb8522119a.yaml │ ├── deprecate-bifrost-dd93b6d8eb04cac6.yaml │ ├── deprecate-ceilometer-api-71e5c7b01a3aad6c.yaml │ ├── deprecate-chrony-5cd7c7627a5b9f0e.yaml │ ├── deprecate-dind-9ed17229d2c3137b.yaml │ ├── deprecate-dragonflow-0404a4a1aa5a6644.yaml │ ├── deprecate-fedora-97f8f963a410eb44.yaml │ ├── deprecate-hacluster-pcs-d7231beba8ceadd8.yaml │ ├── deprecate-images-victoria-75748b9ff3a1e21f.yaml │ ├── deprecate-install-type-argument-709bb37ded2b6aee.yaml │ ├── deprecate-kubernetes-dbabf9f86c15a0ee.yaml │ ├── deprecate-masakari-c11d7db9339b98f5.yaml │ ├── deprecate-monasca-75479150789122dc.yaml │ ├── deprecate-mongodb-88636154e07cd31c.yaml │ ├── deprecate-neutron-fwaas-cb5eb042824aad28.yaml │ ├── deprecate-neutron-server-ovn-8aee98fc5923e886.yaml │ ├── deprecate-neutron-sfc-agent-94445b4e140236a9.yaml │ ├── deprecate-nova-network-76e5c7b61a3add5b.yaml │ ├── deprecate-opendaylight-58b3e9dbdc359688.yaml │ ├── deprecate-ppc64le-2b7b642e79bddd66.yaml │ ├── deprecate-prometheus-v1-1bc1af0a10af4546.yaml │ ├── deprecate-qdrouterd-b0dc549833e6d7a6.yaml │ ├── deprecate-rhel-ee57f1f03aaac42d.yaml │ ├── deprecate-sahara-8d37f8fcde0c2e79.yaml │ ├── deprecate-sensu-5bc4562c902d7fbf.yaml │ ├── deprecate-swift-fe9f5586f698ba03.yaml │ ├── deprecate-telegraf-db2b0b9f30591552.yaml │ ├── deprecate-tempest-and-rally-0647efa7209cf03a.yaml │ ├── deprecate-tgtd-scsi-target-utils-3ee002b832382f14.yaml │ ├── deprecate-vitrage-c324e8a0ec9cc90f.yaml │ ├── deprecated-include-header-and-footer-71f16045920b0100.yaml │ ├── disable-systemd-nss-on-rhel-based-distros-5d586fcdb9a82da7.yaml │ ├── distro-package-manager-49634f537be63036.yaml │ ├── distro-python-ovs-df705d1e59f16cde.yaml │ ├── do-not-load-modules-9b651e40d3479c39.yaml │ ├── docker-3-0-0-e5f43f9b78ad644d.yaml │ ├── docker-build-nopull-base-a860d046b9059cfc.yaml │ ├── dockerfile-customizations-26981ebefe3b710b.yaml │ ├── dpkg-reducing-disk-footprint-2a6b0056d57bd1de.yaml │ ├── drop-delorean-c0bd3229162faef0.yaml │ ├── drop-elasticsearch-91ce45c56152937b.yaml │ ├── drop-freezer-06c0a19795156fe9.yaml │ ├── drop-ironic-inspector-093cc36e06787168.yaml │ ├── drop-last-mongo-refs-c12edb066544e190.yaml │ ├── drop-monasca-grafana-df2c45d6826752f6.yaml │ ├── drop-murano-bcd243c986eaa225.yaml │ ├── drop-neutron-linuxbridge-agent-5c4596f148c143ed.yaml │ ├── drop-ppc64le-516442a16cc9f27c.yaml │ ├── drop-prometheus-msteams-1ead141af684ada1.yaml │ ├── drop-py27-a16f4712ac89e3a9.yaml │ ├── drop-pyhton-3-6-and-3-7-6cc88979aad423e8.yaml │ ├── drop-qdrouterd-b09f796067b431d9.yaml │ ├── drop-rhel-support-03ccce1a69bd88a7.yaml │ ├── drop-senlin-aadc2bd1eb50d046.yaml │ ├── drop-skydive-5b0dba2b7b12ee95.yaml │ ├── drop-solum-79236f585eb5e9bf.yaml │ ├── drop-venus-435234b3bff7f209.yaml │ ├── drop-vitrage-d871449de1e06458.yaml │ ├── drop-vmtp-3a889e0fa7a7f8ee.yaml │ ├── drop-xtrabackup-e58a97b617ff708c.yaml │ ├── el-aarch64-ipxe-snponly-e7fc23bdc7edfe3d.yaml │ ├── elasticsearch-upgrade-5.X-df217e3742b8b94a.yaml │ ├── enable-nova-microversion-b445f22548b41c2a.yaml │ ├── enable-repos-when-needed-3beac8e1e24ea8eb.yaml │ ├── erlang-aarch64-repo-change-7fbc8696990b5677.yaml │ ├── etcd-3.4-11528a31a53451f6.yaml │ ├── etcd-3.5-30f3c030fd5296a9.yaml │ ├── etcd-binary-install-fc88930f4bf6ce2c.yaml │ ├── etcd-docker-ansible-51baaa1322a0c5a8.yaml │ ├── etcd-dockerfile-69b8bfc1df4bb2ab.yaml │ ├── feature_neutron_install_tap-as-a-service-bdf99544a319ce7b.yaml │ ├── fix-cinder-endpoints-urls-22746b1524accbbf.yaml │ ├── fix-config-check-c973c462761a4fa9.yaml │ ├── fix-elasticsearch-curator-7876896ebbd41ad3.yaml │ ├── fix-fwaas-l3-log-aed85e0782dece8d.yaml │ ├── fix-git-build-23c8fe6c4b0d92c4.yaml │ ├── fix-glance-api-add-missing-lsscsi-package-e6ae949eb8bdbe7b.yaml │ ├── fix-grafana-opensearch-datasource-96dc8061d9721af3.yaml │ ├── fix-keystone-bootstrap-unprintable-e01b088ef821fd18.yaml │ ├── fix-kolla-toolbox-venv-customisation-dc66f7bc621908a8.yaml │ ├── fix-letsencrypt-ip-command-not-found-3c455acaf743409e.yaml │ ├── fix-loading-of-storm-in-centos8-containers-86b38c9166ceb0dd.yaml │ ├── fix-lock-swift-path-9b743367e4014f92.yaml │ ├── fix-luna-hsm-deployment-permissions-issue-dfc2d8c92d2eaf57.yaml │ ├── fix-masakari-dashboard-policy-bb8c6c2364666401.yaml │ ├── fix-monasca-cyborg-ubuntu-source-832a978a3ac5cd3e.yaml │ ├── fix-monasca-fluentd-output-plugin-c27798ba186a8ef7.yaml │ ├── fix-skips-d5cb9546110300ee.yaml │ ├── fix-ubuntu-ironic-python-agent-pxe-booting-issue-95adaf9249207d5b.yaml │ ├── fix_nova_tpm_user-98f56190196a00d2.yaml │ ├── fix_rsync_rpm_swift_base_missing-9d106d94b52d0bad.yaml │ ├── fixes-container-restart-conditions-57d36b13b0aa964b.yaml │ ├── flamingo-prelude-b72f2599ed9d25d5.yaml │ ├── fluentd-update-8db10e760b2dc4d5.yaml │ ├── freezer-drop-trickle-9b3eaaa7d1e4ea5a.yaml │ ├── generic-customisation-b2d431caa2fc5c10.yaml │ ├── get_pip-macro-906a78462b216049.yaml │ ├── git-security-fix-fix-ea56c0071585237d.yaml │ ├── gnocchi-4.4.1-1332afc3c6fca766.yaml │ ├── gnocchi-4.5.0-c06c6f57e910e3e2.yaml │ ├── gnocchi-4_6_2-b0fa6389ea13a0d2.yaml │ ├── gnocchi-4_6_4-5d2b27e744f7d309.yaml │ ├── gnocchi-4_7_0-fdb7f76d367ee435.yaml │ ├── grafana-remove-angular-plugins-4c9ea2087c5c2bf2.yaml │ ├── handle-deprecated-rabbitmq-package-archive-47548e7a41baa68b.yaml │ ├── haproxy-22-aeac8a3fa330f972.yaml │ ├── healthcheck-curl-disable-curlrc-0f85aad47379e2a5.yaml │ ├── heka-deprecation-d53e757470b3f7b4.yaml │ ├── implement-glance-zero-downtime-upgrade-2825a2c76315d23d.yaml │ ├── implement-keystone-zero-downtime-upgrade-2a082ad24b26751d.yaml │ ├── implement-mongo-replicate-set-cluster-0d3f140f7116c3ba.yaml │ ├── import-murano-core-library-86f00abaa21cfb94.yaml │ ├── improve_offline_support-e7b2384fb7390184.yaml │ ├── install_sensu_from_centos_opstools-99d64edb91526fc7.yaml │ ├── integrate-gnocchi-cloudkitty-4b2fcfe8ce9d520e.yaml │ ├── integrate-gnocchi-with-ceph-a6d5f81f4d8b0391.yaml │ ├── ironic-esp-image-886b5fb5b01e7b56.yaml │ ├── ironic-mtools-2938ccfe951f5dc5.yaml │ ├── ironic-packages-009b388b10fab6f0.yaml │ ├── ironic-pxe-filter-b3b29090b0661ca2.yaml │ ├── ironic_syslinux-70eac225d227dc2e.yaml │ ├── kibana-4-6-7765f556efba2724.yaml │ ├── kolla-ceph-bluestore-a30ce85948d28427.yaml │ ├── kolla-container-logformat-259885637cbeb0e6.yaml │ ├── kolla-host-584270e3aee6dfd6.yaml │ ├── kolla_build_skip_existing-92aebdd858a0bfa5.yaml │ ├── kubernetes-for-arm64-b149983c7e11ab60.yaml │ ├── kuryr-libnetwork-1e6ab1916a8a0d10.yaml │ ├── letsencrypt-lego-v4.15.0-de87cfdfaa13ad1c.yaml │ ├── libvirt-sasl-07a8a1a25d2450c6.yaml │ ├── logstash-7.9-30fd90e921037a8a.yaml │ ├── magnum-keystone-auth-default-policy-e16f7bb558aa4b14.yaml │ ├── make_init_system_configurable-0ee16808b6e90954.yaml │ ├── mariadb-10.6-c79b0ad5791256ad.yaml │ ├── mariadb-11.4-b66b5baf9f5e6cd0.yaml │ ├── mariadb-dumb-init-b23949398fd44021.yaml │ ├── mariadb-image-deprecate-d201745827a5df46.yaml │ ├── masakari-a047b0387a474186.yaml │ ├── masakari-debian-binary-0c50d50c2c3f836d.yaml │ ├── masakari-ubuntu-binary-e3bb7a82c73e48e7.yaml │ ├── merge-grafana-plugins-b9a837b9fccff691.yaml │ ├── mistral-fix-wrong-service-type-72ff772fc7cf0b82.yaml │ ├── mistral-respect-uc-77aea99b5c6506ba.yaml │ ├── monitoring-ad566513454614db.yaml │ ├── more-flexible-image-skipping-8e1320ed78976026.yaml │ ├── move-curl-sources-d8fac9c8c57445cf.yaml │ ├── move-manila-share-to-network-node-57c61e757c5b96b2.yaml │ ├── multiple-physical-networks-f2de7444f7e2d145.yaml │ ├── netcontrold-24c9d6602f84e819.yaml │ ├── network-mode-host-2aca256e2a1fbf68.yaml │ ├── network_mode-build-configuration-5e7c15b84dae9199.yaml │ ├── neutron-api-paste-2268bcb3e0156e62.yaml │ ├── neutron-metadata-agent-wrapper-scripts-d6163080d169ea14.yaml │ ├── neutron-ovn-agent-kolla-image-38ab7ef7203e8963.yaml │ ├── neutron-sriov-agent-4dae576ca279ef87.yaml │ ├── new-kolla-options-e8e32357786e8454.yaml │ ├── new-naming-scheme-45a5669053c9328d.yaml │ ├── new-option-summary-3acc4e62a0c7ac40.yaml │ ├── new_networking_ovn_metadata_agent_kolla_image-6f87ef59cf62cb8f.yaml │ ├── non-x86-support-bce168d78db50202.yaml │ ├── nova-compute-add-ndctl-811f923d81bbd6ac.yaml │ ├── nova-drop-pypowervm-256048c2a9cd594d.yaml │ ├── nova-libvirt-add-tpm-emulation-ed5e823eaaf6aa8f.yaml │ ├── nova-nvme-cli-bf940ad0005cac80.yaml │ ├── nova-plugins-f3ceab61b19d008a.yaml │ ├── nova-sync-local-cell-8e3258f4b410d25c.yaml │ ├── nova_compute_daxio-b8655d31df15139a.yaml │ ├── octavia-driver-agent-83ee17b82c577e95.yaml │ ├── octavia_persistence-9cae39010b28bcee.yaml │ ├── opendev-tarballs-base-3019ae9c57187542.yaml │ ├── opensearch-2.5.0-8c501a17b98732fb.yaml │ ├── opensearch-f3a7b8bfc86a16f6.yaml │ ├── opensearch-upgrade-9e263a65f015a376.yaml │ ├── openstack-exporter-1.6.0-cb2c1a978cf4be64.yaml │ ├── overriding-global-upper-constraint-ca48a759c8f8d7b9.yaml │ ├── ovn-debian-x86-d584f88b9e94b226.yaml │ ├── pass-rmq-preferences-into-kolla-toolbox-32d7209c4cf1f3c9.yaml │ ├── patch-docker-images-69764f0b1df5c9ed.yaml │ ├── performance-monitoring-experimental-f9ceaacd4d5cb71a.yaml │ ├── permissions-exclude-e1138abb573956a7.yaml │ ├── pin-distro-version-4d835846a1ab5283.yaml │ ├── ppc64le_delorean_deps-cde2e1a5dc03699e.yaml │ ├── prefer_headless_jre-005b5a6f17673e33.yaml │ ├── prometheus-alertmanager-0.27.0-6ac10d29c6911d80.yaml │ ├── prometheus-alertmanager-3dbe1b8ee3b312ee.yaml │ ├── prometheus-cadvisor-0.49.1-63d9bc4cd1be8a82.yaml │ ├── prometheus-cadvisor-05906b0894651a29.yaml │ ├── prometheus-containers-1599a6417cc6a264.yaml │ ├── prometheus-elasticsearch-exporter-1.7.0-d53ba37689820cc9.yaml │ ├── prometheus-libvirt-exporter-inovex-acddd497258fe562.yaml │ ├── prometheus-memcached-exporter-0.14.2-1e017c7d392feff5.yaml │ ├── prometheus-memcached-exporter-3ca7f701a5069509.yaml │ ├── prometheus-msteams-27e7f23e29f208b4.yaml │ ├── prometheus-mtail-3.0.0-rc54-eda9c10283d9fc61.yaml │ ├── prometheus-mysqld-exporter-0.15.1-d716e8d3dc1d3ba1.yaml │ ├── prometheus-ovn-ovs-exporter-53f439c286f9451d.yaml │ ├── prometheus-v2-server-2.50.1-119bdb84a9c25266.yaml │ ├── proxysql-001027572dcec118.yaml │ ├── proxysql-2.5.x.yaml-6111edc2c762d5b7.yaml │ ├── quiet-mode-with-logs-0abafc07923945ac.yaml │ ├── rabbit-3.6.2-accdb2d3ecd493cc.yaml │ ├── rabbitmq-3-11-3b9ae3fc33ed4042.yaml │ ├── rabbitmq-3-13-56852b220fd50bc0.yaml │ ├── rabbitmq-3.12-erlang-26-e5917a1f460b45f8.yaml │ ├── rabbitmq-310-8c9c6eeb5d5a2a75.yaml │ ├── rabbitmq-39-6791f54358018428.yaml │ ├── rabbitmq-4-0-ee1a5f2ef212f6a6.yaml │ ├── rabbitmq-41-d881d0b6bbf46446.yaml │ ├── rabbitmq-erlang-cloudsmith-c837bf4a450dd802.yaml │ ├── rabbitmq-erlang-migrate-from-packagecloud-59d7e9e0a10e1da0.yaml │ ├── rabbitmq-packagecloud-c009ff6d0d2bd02d.yaml │ ├── rabbitmq-version-upgrade-ac67bd6ae99c8169.yaml │ ├── rally-manage-fix-8c98a0beb6dae50e.yaml │ ├── rally-openstack-source-62f3ac8f156fc758.yaml │ ├── redis-container-810eec9915d426d8.yaml │ ├── redis-sentinel-container-defa09d0ac420f64.yaml │ ├── reenable-ironic-inspector-in-bifrost.yml-5e01af1e96528c62.yaml │ ├── remove-ceilometer-collector-image-c5d1c4b6463b2ecd.yaml │ ├── remove-ceph-afff3cd8775e3a41.yaml │ ├── remove-chrony-image-20a96b0ce63e2959.yaml │ ├── remove-congress-images-0f6a327ae67e2137.yaml │ ├── remove-crane-ad12c12b633d4d73.yaml │ ├── remove-deprecated-images-ussuri-28547f7179202a9d.yaml │ ├── remove-dibbler-537b80d88f9984f5.yaml │ ├── remove-fedora-44af79f3e061e8d6.yaml │ ├── remove-fwaas-deployment-8381b454528bdae9.yaml │ ├── remove-glance-registry-4a5c3d54440f7c28.yaml │ ├── remove-grafana-influxdb-plugin-a494f3dc217d3124.yaml │ ├── remove-heat-cloudwatch-api-c71e9deafffdb3e7.yaml │ ├── remove-include-header-footer-parameters-68a6374635a8c9b0.yaml │ ├── remove-install-type-argument-c2de6ca0468797ed.yaml │ ├── remove-karbor-images-eec10ec28235fa69.yaml │ ├── remove-kolla-base-distro-d0376ae3aafffcc3.yaml │ ├── remove-kolla-keystone-modules-21f9034dd3a2aedb.yaml │ ├── remove-mariadb-clustercheck-427a6cfb3f39c508.yaml │ ├── remove-mariadb-image-fbcb1401899a1c04.yaml │ ├── remove-monasca-log-api-199dc88030284e71.yaml │ ├── remove-mongodb-image-d5d2c4c6463b2ecd.yaml │ ├── remove-netcontrold-49754ae8febae5bc.yaml │ ├── remove-neutron-server-opendaylight-6cacd3936c0dc91e.yaml │ ├── remove-neutron-server-ovn-b3c1315912ca0f94.yaml │ ├── remove-neutron-sfc-agent-181ec5dbc52ac1da.yaml │ ├── remove-neutron-vpnaas-agent-216810affb495ad0.yaml │ ├── remove-nova-consoleauth-caf1c027b6403dc1.yaml │ ├── remove-nova-network-container-69f8c0b61b3aed5a.yaml │ ├── remove-nova-placement-75124fd8290a2634.yaml │ ├── remove-opendaylight-ac316f8ada083cc9.yaml │ ├── remove-oraclelinux-support-109ce54b1952ec3a.yaml │ ├── remove-panko-5338b559.yaml │ ├── remove-prometheus-haproxy-exporter-22d5af88af7e4a9d.yaml │ ├── remove-prometheus-ovn-exporter-c5f5005b4d1a4b12.yaml │ ├── remove-prometheus-v1-3bc458bed2228a9e.yaml │ ├── remove-qinling-images-8412ec1ca6adb531.yaml │ ├── remove-rally-tempest-249782f1a1123b71.yaml │ ├── remove-sahara-9231cf59e7a812e2.yaml │ ├── remove-searchlight-images-8ad630086543a0fe.yaml │ ├── remove-sensu-a20b01d025385aa1.yaml │ ├── remove-tripleo-ui-855da0b4f4c73385.yaml │ ├── remove-vitrage-collector-ed76366b9bb6e8e8.yaml │ ├── remove-wallaby-images-20f7049e4da91898.yaml │ ├── remove-zaqar-image-de36960a88f132c8.yaml │ ├── repos-yaml-rpm-support-01ff7f5fc3b9ecf2.yaml │ ├── retire-neutron-lbaas-4441ce36928fc375.yaml │ ├── rhel-python3-support-1078f829dc42c4d6.yaml │ ├── rocky-10-4111fa0160be14ab.yaml │ ├── rsyslog-13d5798163953322.yaml │ ├── run-trove-api-under-apache-928103ee6b879de2.yaml │ ├── sahara-split-plugins-66e31717b7c24472.yaml │ ├── security-fix-prometheus-v2.26.1-03e1410ad8ed4410.yaml │ ├── senlin-container-e1ae6aa932097e51.yaml │ ├── sensu-client-image-45cb9c4573cd22fe.yaml │ ├── set-group-for-user-aa9b3eae69d8f6a0.yaml │ ├── set_config-directory-execute-permission-8ab919b7b17025d2.yaml │ ├── skip_rpm_doc_install-887dc22312c787a2.yaml │ ├── skydive-remove-58bbea2626c59aea.yaml │ ├── source-enable-flag-9ce10be097739214.yaml │ ├── split-placement-from-nova-27b7ea2359c2d3ae.yaml │ ├── static-uid-gid-b90800f2947e656d.yaml │ ├── stein-prelude-92e47ccd60c76325.yaml │ ├── storm-log4j-vulnerability-mitigation-6746a8a0bb329485.yaml │ ├── summary-json-file-96441e67076fc480.yaml │ ├── support-ceilometer-in-cinder-4386a3e5d134d84f.yaml │ ├── support-disk-size-as-weight-in-ceph-9d6353f1d3f03199.yaml │ ├── support-docker-image-squash-8396c0de63085f5d.yaml │ ├── support-image-cross-compile-3b1dc348d742e96d.yaml │ ├── support-ipxe-chainload-273d55741a83a2a7.yaml │ ├── support-ldap-e678ce5b0a7eaedb.yaml │ ├── support-posting-to-monasca-api-from-fluentd-1b653db78a8644e7.yaml │ ├── swift-object-expirer-fix-b837de80cea4fb8e.yaml │ ├── swift-sudo-issue-84d37919c980a373.yaml │ ├── tacker-conductor-246d23f8c4a97de0.yaml │ ├── tacker-networking-sfc-138b9fedd09b8728.yaml │ ├── tacker-rpm-binary-137dc2771bdfc5d3.yaml │ ├── td-agent-4-b2c7fc574bff0a42.yaml │ ├── templete-override-files-c7489543d92d1811.yaml │ ├── toolbox-ansible-2-13-ecea6484aaff1182.yaml │ ├── train-prelude-2420ae1363bd92bc.yaml │ ├── tripleoclient_removal-7b131be589aa580f.yaml │ ├── ubuntu-24-04-585855b7d4753ce3.yaml │ ├── ubuntu-focal-3e1cc65dade622fc.yaml │ ├── ubuntu-mariadb-10.5-38631eae76f6d091.yaml │ ├── ubuntu-sources.list-change-65bb0f936b0ec95b.yaml │ ├── ubuntu-upstream-mariadb-34ce8106811a1f75.yaml │ ├── ubuntu-uses-mirrors-now-0858d579944eea48.yaml │ ├── unicode-locale-018fe01eaccc556d.yaml │ ├── unmount-ceph-osds-43b7b59685bff5b4.yaml │ ├── update-cadvisor-v0.38.7-a0ff88006b5ff3f7.yaml │ ├── update-letsencrypt-version-36a0cd7d2997c6c7.yaml │ ├── update-ovn-exporter-ab80a3e88e617bdd.yaml │ ├── update-packages-071d1863639fe3e3.yaml │ ├── update-prometheus-services-dd195876e162251c.yaml │ ├── update-prometheus-services-e53dfdb490ac700e.yaml │ ├── update-zaqar-images-95a5909b48893698.yaml │ ├── update_rpm_security_fixes-f99a3fa509cb5b3b.yaml │ ├── upgade-to-ubuntu-xenial-93e68d2330e9bd84.yaml │ ├── upgrade-ceph-luminous-415581032d25699e.yaml │ ├── upgrade-elasticsearch-and-kibana-to-6.X-ee448b2e8ae51922.yaml │ ├── upgrade-fluentd-monasca-output-plugin-739caf0af953d533.yaml │ ├── upgrade-influxdb-for-monasca-202f3cf22ff8597e.yaml │ ├── upgrade-kafka-c52e0ad07e11b69d.yaml │ ├── upgrade-pip-44352805d60bbf7f.yaml │ ├── upgrade-prometheus-to-v3-d305280498e0fcaf.yaml │ ├── upgrade-to-elk7-1816e69663735a98.yaml │ ├── upgrade-ubuntu-base-image-to-bionic-eb0d421014ed48ac.yaml │ ├── upgrage-to-mariadb-10.3.10-for-redhat-family-93df8bf63da25659.yaml │ ├── upper-constraints-macros-21315dc1c1933e78.yaml │ ├── use-barbican-with-httpd-d6d7599c07315e32.yaml │ ├── use-upstream-dumb-init-032708cd3ad5792f.yaml │ ├── user-provided-repos.yaml-d6e8583e9d9d01ef.yaml │ ├── ussuri-prelude-7e3f25109c71f731.yaml │ ├── ussuri-stable-sources-0b003ba0c2ede6ee.yaml │ ├── uwsgi-openstack-base-ac583652d29ea0e4.yaml │ ├── vagrant-dev-env-moved-8328674713020dda.yaml │ ├── vitrage-containers-3bfb360357aa628b.yaml │ ├── wallaby-neutron-plugins-excluded-b72220a2ea8c1a40.yaml │ ├── yoga-prelude-4773bac540443b41.yaml │ ├── yum_conf-36fef802e8c003f1.yaml │ └── zed-prelude-f18af6c18bf8bed7.yaml ├── source │ ├── 2023.1.rst │ ├── 2023.2.rst │ ├── 2024.1.rst │ ├── 2024.2.rst │ ├── 2025.1.rst │ ├── 2025.2.rst │ ├── _static │ │ └── .placeholder │ ├── _templates │ │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── liberty.rst │ ├── mitaka.rst │ ├── newton.rst │ ├── ocata.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ ├── victoria.rst │ ├── wallaby.rst │ ├── xena.rst │ ├── yoga.rst │ └── zed.rst └── templates │ ├── feature.yml │ └── fix.yml ├── requirements.txt ├── roles ├── configure-ephemeral │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── kolla-build-config │ ├── defaults │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── kolla-build.conf.j2 ├── kolla-build-deps │ └── tasks │ │ └── main.yml └── kolla-build │ ├── defaults │ └── main.yml │ └── tasks │ └── main.yml ├── setup.cfg ├── setup.py ├── specs ├── README.rst ├── ansible-multi.rst ├── containerize-openstack.rst ├── ha.svg ├── high-availability.rst ├── kolla-ceph-bluestore.rst ├── kubernetes-deployment.rst ├── logging-with-heka.rst ├── logging-with-heka.svg ├── mariadb-backup-recovery.rst └── template.rst ├── test-requirements.txt ├── test-requirements.yml ├── tests ├── __init__.py ├── files │ └── process_build_logs.py ├── playbooks │ ├── copr-erlang-update.yml │ ├── post.yml │ ├── pre.yml │ ├── publish.yml │ └── run.yml ├── templates │ ├── docker │ │ └── releaser │ │ │ ├── Dockerfile.j2 │ │ │ └── extend_start.sh │ └── template_overrides.j2 ├── test_set_config.py └── vars │ └── zuul.yml ├── tools ├── build.py ├── cleanup-images ├── diag ├── loc ├── pre-commit-hook ├── run-bashate.sh ├── start-registry ├── validate-all-dockerfiles.sh ├── validate-all-file.py ├── validate-all-yaml.sh ├── validate-docker-execute.sh ├── validate-indentation.sh ├── validate-install-command.sh ├── validate-maintainer.sh ├── validate-yaml.py └── version-check.py ├── tox.ini └── zuul.d ├── base.yaml ├── centos.yaml ├── debian.yaml ├── nodesets.yaml ├── periodics └── copr.yaml ├── project.yaml ├── rocky.yaml ├── scenarios ├── aio.yaml ├── bifrost.yaml ├── cells.yaml ├── cephadm.yaml ├── ironic.yaml ├── mariadb.yaml ├── masakari.yaml ├── octavia.yaml └── ovn.yaml ├── secrets.yaml ├── tox.yaml └── ubuntu.yaml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.codespell-ignore: -------------------------------------------------------------------------------- 1 | solum 2 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = kolla/tests/* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- 1 | [gerrit] 2 | host=review.opendev.org 3 | port=29418 4 | project=openstack/kolla.git 5 | -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | test_path=${OS_TEST_PATH:-.} 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HACKING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/HACKING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/README.rst -------------------------------------------------------------------------------- /contrib/neutron-plugins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/contrib/neutron-plugins/README.rst -------------------------------------------------------------------------------- /contrib/neutron-plugins/networking-ansible.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/contrib/neutron-plugins/networking-ansible.ini -------------------------------------------------------------------------------- /contrib/neutron-plugins/networking-mlnx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/contrib/neutron-plugins/networking-mlnx.ini -------------------------------------------------------------------------------- /contrib/neutron-plugins/template_override-vmware-nsx.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/contrib/neutron-plugins/template_override-vmware-nsx.j2 -------------------------------------------------------------------------------- /contrib/neutron-plugins/vmware-nsx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/contrib/neutron-plugins/vmware-nsx.ini -------------------------------------------------------------------------------- /contrib/template-override/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/contrib/template-override/README.rst -------------------------------------------------------------------------------- /contrib/template-override/ovs-dpdk.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/contrib/template-override/ovs-dpdk.j2 -------------------------------------------------------------------------------- /deliverables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/deliverables.yaml -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/admin/image-building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/admin/image-building.rst -------------------------------------------------------------------------------- /doc/source/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/admin/index.rst -------------------------------------------------------------------------------- /doc/source/admin/kolla_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/admin/kolla_api.rst -------------------------------------------------------------------------------- /doc/source/admin/template-override/ovs-dpdk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/admin/template-override/ovs-dpdk.rst -------------------------------------------------------------------------------- /doc/source/ceph_versions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/ceph_versions.csv -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contributor/adding-a-new-image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/adding-a-new-image.rst -------------------------------------------------------------------------------- /doc/source/contributor/bug-triage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/bug-triage.rst -------------------------------------------------------------------------------- /doc/source/contributor/ci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/ci.rst -------------------------------------------------------------------------------- /doc/source/contributor/code-reviews.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/code-reviews.rst -------------------------------------------------------------------------------- /doc/source/contributor/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/contributing.rst -------------------------------------------------------------------------------- /doc/source/contributor/genconfig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/genconfig.rst -------------------------------------------------------------------------------- /doc/source/contributor/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/kolla-design-philosophy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/kolla-design-philosophy.rst -------------------------------------------------------------------------------- /doc/source/contributor/meeting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/meeting.rst -------------------------------------------------------------------------------- /doc/source/contributor/ptl-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/ptl-guide.rst -------------------------------------------------------------------------------- /doc/source/contributor/release-management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/release-management.rst -------------------------------------------------------------------------------- /doc/source/contributor/release-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/release-notes.rst -------------------------------------------------------------------------------- /doc/source/contributor/running-in-development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/running-in-development.rst -------------------------------------------------------------------------------- /doc/source/contributor/running-tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/running-tests.rst -------------------------------------------------------------------------------- /doc/source/contributor/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/contributor/versions.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/matrix_aarch64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/matrix_aarch64.csv -------------------------------------------------------------------------------- /doc/source/matrix_x86.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/matrix_x86.csv -------------------------------------------------------------------------------- /doc/source/support_matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/doc/source/support_matrix.rst -------------------------------------------------------------------------------- /docker/aodh/aodh-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/aodh/aodh-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-api/extend_start.sh -------------------------------------------------------------------------------- /docker/aodh/aodh-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/aodh/aodh-base/aodh_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-base/aodh_sudoers -------------------------------------------------------------------------------- /docker/aodh/aodh-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-base/extend_start.sh -------------------------------------------------------------------------------- /docker/aodh/aodh-evaluator/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-evaluator/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/aodh/aodh-expirer/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-expirer/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/aodh/aodh-listener/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-listener/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/aodh/aodh-notifier/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/aodh/aodh-notifier/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/barbican/barbican-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/barbican/barbican-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/barbican/barbican-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/barbican/barbican-api/extend_start.sh -------------------------------------------------------------------------------- /docker/barbican/barbican-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/barbican/barbican-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/barbican/barbican-base/barbican_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/barbican/barbican-base/barbican_sudoers -------------------------------------------------------------------------------- /docker/barbican/barbican-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/barbican/barbican-base/extend_start.sh -------------------------------------------------------------------------------- /docker/barbican/barbican-keystone-listener/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/barbican/barbican-keystone-listener/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/barbican/barbican-worker/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/barbican/barbican-worker/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/base/apt_preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/apt_preferences -------------------------------------------------------------------------------- /docker/base/apt_preferences.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/apt_preferences.debian -------------------------------------------------------------------------------- /docker/base/apt_preferences.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/apt_preferences.ubuntu -------------------------------------------------------------------------------- /docker/base/ci-centos.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/ci-centos.repo -------------------------------------------------------------------------------- /docker/base/copy_cacerts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/copy_cacerts.sh -------------------------------------------------------------------------------- /docker/base/curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/curlrc -------------------------------------------------------------------------------- /docker/base/dnf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/dnf.conf -------------------------------------------------------------------------------- /docker/base/dpkg_reducing_disk_footprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/dpkg_reducing_disk_footprint -------------------------------------------------------------------------------- /docker/base/healthcheck_curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/healthcheck_curl -------------------------------------------------------------------------------- /docker/base/healthcheck_filemod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/healthcheck_filemod -------------------------------------------------------------------------------- /docker/base/healthcheck_listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/healthcheck_listen -------------------------------------------------------------------------------- /docker/base/healthcheck_port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/healthcheck_port -------------------------------------------------------------------------------- /docker/base/healthcheck_socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/healthcheck_socket -------------------------------------------------------------------------------- /docker/base/httpd_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/httpd_setup.sh -------------------------------------------------------------------------------- /docker/base/install_projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/install_projects.sh -------------------------------------------------------------------------------- /docker/base/kolla_bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/kolla_bashrc -------------------------------------------------------------------------------- /docker/base/kolla_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/kolla_patch.sh -------------------------------------------------------------------------------- /docker/base/set_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/set_configs.py -------------------------------------------------------------------------------- /docker/base/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/sources.list -------------------------------------------------------------------------------- /docker/base/sources.list.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/sources.list.debian -------------------------------------------------------------------------------- /docker/base/sources.list.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/sources.list.ubuntu -------------------------------------------------------------------------------- /docker/base/sources.list.ubuntu.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/sources.list.ubuntu.aarch64 -------------------------------------------------------------------------------- /docker/base/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/start.sh -------------------------------------------------------------------------------- /docker/base/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/base/sudoers -------------------------------------------------------------------------------- /docker/bifrost/bifrost-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/bifrost/bifrost-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/bifrost/bifrost-base/bifrost_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/bifrost/bifrost-base/bifrost_sudoers -------------------------------------------------------------------------------- /docker/bifrost/bifrost-base/build_arg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/bifrost/bifrost-base/build_arg.yml -------------------------------------------------------------------------------- /docker/bifrost/bifrost-deploy/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/bifrost/bifrost-deploy/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/blazar/blazar-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/blazar/blazar-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/blazar/blazar-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/blazar/blazar-api/extend_start.sh -------------------------------------------------------------------------------- /docker/blazar/blazar-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/blazar/blazar-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/blazar/blazar-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/blazar/blazar-base/extend_start.sh -------------------------------------------------------------------------------- /docker/blazar/blazar-manager/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/blazar/blazar-manager/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-base/ceilometer_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-base/ceilometer_sudoers -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-base/extend_start.sh -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-central/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-central/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-compute/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-compute/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-ipmi/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-ipmi/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-notification/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-notification/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ceilometer/ceilometer-notification/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ceilometer/ceilometer-notification/extend_start.sh -------------------------------------------------------------------------------- /docker/cinder/cinder-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cinder/cinder-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-api/extend_start.sh -------------------------------------------------------------------------------- /docker/cinder/cinder-backup/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-backup/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cinder/cinder-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cinder/cinder-base/cinder_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-base/cinder_sudoers -------------------------------------------------------------------------------- /docker/cinder/cinder-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-base/extend_start.sh -------------------------------------------------------------------------------- /docker/cinder/cinder-scheduler/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-scheduler/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cinder/cinder-volume/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-volume/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cinder/cinder-volume/cinder_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-volume/cinder_sudoers -------------------------------------------------------------------------------- /docker/cinder/cinder-volume/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cinder/cinder-volume/extend_start.sh -------------------------------------------------------------------------------- /docker/cloudkitty/cloudkitty-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cloudkitty/cloudkitty-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cloudkitty/cloudkitty-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cloudkitty/cloudkitty-api/extend_start.sh -------------------------------------------------------------------------------- /docker/cloudkitty/cloudkitty-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cloudkitty/cloudkitty-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cloudkitty/cloudkitty-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cloudkitty/cloudkitty-base/extend_start.sh -------------------------------------------------------------------------------- /docker/cloudkitty/cloudkitty-processor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cloudkitty/cloudkitty-processor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/collectd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/collectd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/collectd/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/collectd/extend_start.sh -------------------------------------------------------------------------------- /docker/cron/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cron/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cron/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cron/extend_start.sh -------------------------------------------------------------------------------- /docker/cron/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cron/logrotate -------------------------------------------------------------------------------- /docker/cyborg/cyborg-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cyborg/cyborg-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cyborg/cyborg-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cyborg/cyborg-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cyborg/cyborg-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cyborg/cyborg-api/extend_start.sh -------------------------------------------------------------------------------- /docker/cyborg/cyborg-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cyborg/cyborg-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/cyborg/cyborg-base/cyborg_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cyborg/cyborg-base/cyborg_sudoers -------------------------------------------------------------------------------- /docker/cyborg/cyborg-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cyborg/cyborg-base/extend_start.sh -------------------------------------------------------------------------------- /docker/cyborg/cyborg-conductor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/cyborg/cyborg-conductor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-backend-bind9/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-backend-bind9/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-base/designate_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-base/designate_sudoers -------------------------------------------------------------------------------- /docker/designate/designate-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-base/extend_start.sh -------------------------------------------------------------------------------- /docker/designate/designate-central/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-central/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-central/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-central/extend_start.sh -------------------------------------------------------------------------------- /docker/designate/designate-mdns/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-mdns/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-producer/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-producer/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-sink/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-sink/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/designate/designate-worker/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/designate/designate-worker/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/dnsmasq/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/dnsmasq/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/dnsmasq/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/dnsmasq/extend_start.sh -------------------------------------------------------------------------------- /docker/etcd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/etcd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/etcd/etcd_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/etcd/etcd_sudoers -------------------------------------------------------------------------------- /docker/etcd/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/etcd/extend_start.sh -------------------------------------------------------------------------------- /docker/fluentd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/fluentd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/fluentd/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/fluentd/extend_start.sh -------------------------------------------------------------------------------- /docker/fluentd/fluentd_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/fluentd/fluentd_sudoers -------------------------------------------------------------------------------- /docker/glance/glance-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/glance/glance-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/glance/glance-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/glance/glance-api/extend_start.sh -------------------------------------------------------------------------------- /docker/glance/glance-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/glance/glance-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/glance/glance-base/etc/glance/rootwrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/glance/glance-base/etc/glance/rootwrap.conf -------------------------------------------------------------------------------- /docker/glance/glance-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/glance/glance-base/extend_start.sh -------------------------------------------------------------------------------- /docker/glance/glance-base/glance_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/glance/glance-base/glance_sudoers -------------------------------------------------------------------------------- /docker/gnocchi/gnocchi-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/gnocchi/gnocchi-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/gnocchi/gnocchi-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/gnocchi/gnocchi-api/extend_start.sh -------------------------------------------------------------------------------- /docker/gnocchi/gnocchi-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/gnocchi/gnocchi-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/gnocchi/gnocchi-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/gnocchi/gnocchi-base/extend_start.sh -------------------------------------------------------------------------------- /docker/gnocchi/gnocchi-base/gnocchi_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/gnocchi/gnocchi-base/gnocchi_sudoers -------------------------------------------------------------------------------- /docker/gnocchi/gnocchi-metricd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/gnocchi/gnocchi-metricd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/gnocchi/gnocchi-statsd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/gnocchi/gnocchi-statsd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/grafana/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/grafana/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/grafana/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/grafana/extend_start.sh -------------------------------------------------------------------------------- /docker/grafana/grafana_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/grafana/grafana_sudoers -------------------------------------------------------------------------------- /docker/hacluster/hacluster-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/hacluster/hacluster-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/hacluster/hacluster-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/hacluster/hacluster-base/extend_start.sh -------------------------------------------------------------------------------- /docker/hacluster/hacluster-corosync/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/hacluster/hacluster-corosync/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/hacluster/hacluster-pacemaker-remote/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/hacluster/hacluster-pacemaker-remote/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/hacluster/hacluster-pacemaker/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/hacluster/hacluster-pacemaker/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/hacluster/hacluster-pcs/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/hacluster/hacluster-pcs/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/haproxy/haproxy-ssh/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/haproxy/haproxy-ssh/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/haproxy/haproxy-ssh/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/haproxy/haproxy-ssh/extend_start.sh -------------------------------------------------------------------------------- /docker/haproxy/haproxy-ssh/update-loadbalancer-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/haproxy/haproxy-ssh/update-loadbalancer-cert.sh -------------------------------------------------------------------------------- /docker/haproxy/haproxy/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/haproxy/haproxy/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/haproxy/haproxy/ensure_latest_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/haproxy/haproxy/ensure_latest_config.sh -------------------------------------------------------------------------------- /docker/heat/heat-api-cfn/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/heat/heat-api-cfn/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/heat/heat-api-cfn/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/heat/heat-api-cfn/extend_start.sh -------------------------------------------------------------------------------- /docker/heat/heat-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/heat/heat-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/heat/heat-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/heat/heat-api/extend_start.sh -------------------------------------------------------------------------------- /docker/heat/heat-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/heat/heat-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/heat/heat-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/heat/heat-base/extend_start.sh -------------------------------------------------------------------------------- /docker/heat/heat-engine/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/heat/heat-engine/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/horizon/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/horizon/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/horizon/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/horizon/extend_start.sh -------------------------------------------------------------------------------- /docker/httpd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/httpd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/httpd/extend_start.sh: -------------------------------------------------------------------------------- 1 | . /usr/local/bin/kolla_httpd_setup 2 | -------------------------------------------------------------------------------- /docker/influxdb/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/influxdb/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/influxdb/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/influxdb/extend_start.sh -------------------------------------------------------------------------------- /docker/influxdb/influxdb_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/influxdb/influxdb_sudoers -------------------------------------------------------------------------------- /docker/ironic/ironic-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ironic/ironic-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-api/extend_start.sh -------------------------------------------------------------------------------- /docker/ironic/ironic-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ironic/ironic-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-base/extend_start.sh -------------------------------------------------------------------------------- /docker/ironic/ironic-base/ironic_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-base/ironic_sudoers -------------------------------------------------------------------------------- /docker/ironic/ironic-conductor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-conductor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ironic/ironic-prometheus-exporter/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-prometheus-exporter/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ironic/ironic-prometheus-exporter/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-prometheus-exporter/extend_start.sh -------------------------------------------------------------------------------- /docker/ironic/ironic-pxe-filter/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-pxe-filter/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ironic/ironic-pxe-filter/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-pxe-filter/extend_start.sh -------------------------------------------------------------------------------- /docker/ironic/ironic-pxe/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-pxe/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ironic/ironic-pxe/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-pxe/extend_start.sh -------------------------------------------------------------------------------- /docker/ironic/ironic-pxe/tftp-map-file-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ironic/ironic-pxe/tftp-map-file-template -------------------------------------------------------------------------------- /docker/iscsid/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/iscsid/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/iscsid/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/iscsid/extend_start.sh -------------------------------------------------------------------------------- /docker/keepalived/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keepalived/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/keepalived/check_alive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keepalived/check_alive.sh -------------------------------------------------------------------------------- /docker/keepalived/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keepalived/extend_start.sh -------------------------------------------------------------------------------- /docker/keystone/keystone-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/keystone/keystone-base/wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-base/wsgi -------------------------------------------------------------------------------- /docker/keystone/keystone-fernet/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-fernet/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/keystone/keystone-fernet/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-fernet/extend_start.sh -------------------------------------------------------------------------------- /docker/keystone/keystone-fernet/fetch_fernet_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-fernet/fetch_fernet_tokens.py -------------------------------------------------------------------------------- /docker/keystone/keystone-fernet/keystone_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-fernet/keystone_bootstrap.sh -------------------------------------------------------------------------------- /docker/keystone/keystone-ssh/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-ssh/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/keystone/keystone-ssh/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone-ssh/extend_start.sh -------------------------------------------------------------------------------- /docker/keystone/keystone/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/keystone/keystone/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone/extend_start.sh -------------------------------------------------------------------------------- /docker/keystone/keystone/keystone_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/keystone/keystone/keystone_bootstrap.sh -------------------------------------------------------------------------------- /docker/kolla-toolbox/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kolla-toolbox/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/kolla-toolbox/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kolla-toolbox/ansible.cfg -------------------------------------------------------------------------------- /docker/kolla-toolbox/ansible_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kolla-toolbox/ansible_sudoers -------------------------------------------------------------------------------- /docker/kolla-toolbox/apt_preferences_rabbitmq.debian: -------------------------------------------------------------------------------- 1 | ../rabbitmq/apt_preferences_rabbitmq.debian -------------------------------------------------------------------------------- /docker/kolla-toolbox/apt_preferences_rabbitmq.ubuntu: -------------------------------------------------------------------------------- 1 | ../rabbitmq/apt_preferences_rabbitmq.ubuntu -------------------------------------------------------------------------------- /docker/kolla-toolbox/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kolla-toolbox/extend_start.sh -------------------------------------------------------------------------------- /docker/kolla-toolbox/kolla_toolbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kolla-toolbox/kolla_toolbox.sh -------------------------------------------------------------------------------- /docker/kolla-toolbox/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kolla-toolbox/requirements.yml -------------------------------------------------------------------------------- /docker/kuryr/kuryr-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kuryr/kuryr-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/kuryr/kuryr-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kuryr/kuryr-base/extend_start.sh -------------------------------------------------------------------------------- /docker/kuryr/kuryr-libnetwork/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/kuryr/kuryr-libnetwork/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/letsencrypt/letsencrypt-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/letsencrypt/letsencrypt-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/letsencrypt/letsencrypt-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/letsencrypt/letsencrypt-base/extend_start.sh -------------------------------------------------------------------------------- /docker/letsencrypt/letsencrypt-lego/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/letsencrypt/letsencrypt-lego/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/letsencrypt/letsencrypt-webserver/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/letsencrypt/letsencrypt-webserver/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/letsencrypt/letsencrypt-webserver/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/letsencrypt/letsencrypt-webserver/extend_start.sh -------------------------------------------------------------------------------- /docker/macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/macros.j2 -------------------------------------------------------------------------------- /docker/magnum/magnum-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/magnum/magnum-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/magnum/magnum-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/magnum/magnum-api/extend_start.sh -------------------------------------------------------------------------------- /docker/magnum/magnum-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/magnum/magnum-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/magnum/magnum-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/magnum/magnum-base/extend_start.sh -------------------------------------------------------------------------------- /docker/magnum/magnum-conductor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/magnum/magnum-conductor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/manila/manila-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/manila/manila-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-api/extend_start.sh -------------------------------------------------------------------------------- /docker/manila/manila-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/manila/manila-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-base/extend_start.sh -------------------------------------------------------------------------------- /docker/manila/manila-base/manila_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-base/manila_sudoers -------------------------------------------------------------------------------- /docker/manila/manila-data/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-data/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/manila/manila-scheduler/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-scheduler/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/manila/manila-share/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/manila/manila-share/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/mariadb-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mariadb-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/mariadb-server/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mariadb-server/backup.sh -------------------------------------------------------------------------------- /docker/mariadb-server/backup_replica.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mariadb-server/backup_replica.sh -------------------------------------------------------------------------------- /docker/mariadb-server/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mariadb-server/extend_start.sh -------------------------------------------------------------------------------- /docker/mariadb-server/healthcheck_mariadb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mariadb-server/healthcheck_mariadb -------------------------------------------------------------------------------- /docker/mariadb-server/mariadb_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mariadb-server/mariadb_sudoers -------------------------------------------------------------------------------- /docker/mariadb-server/security_reset.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mariadb-server/security_reset.expect -------------------------------------------------------------------------------- /docker/masakari/masakari-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/masakari/masakari-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/masakari/masakari-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/masakari/masakari-api/extend_start.sh -------------------------------------------------------------------------------- /docker/masakari/masakari-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/masakari/masakari-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/masakari/masakari-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/masakari/masakari-base/extend_start.sh -------------------------------------------------------------------------------- /docker/masakari/masakari-engine/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/masakari/masakari-engine/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/masakari/masakari-monitors/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/masakari/masakari-monitors/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/memcached/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/memcached/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/mistral/mistral-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mistral/mistral-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/mistral/mistral-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mistral/mistral-api/extend_start.sh -------------------------------------------------------------------------------- /docker/mistral/mistral-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mistral/mistral-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/mistral/mistral-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mistral/mistral-base/extend_start.sh -------------------------------------------------------------------------------- /docker/mistral/mistral-engine/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mistral/mistral-engine/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/mistral/mistral-event-engine/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mistral/mistral-event-engine/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/mistral/mistral-executor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/mistral/mistral-executor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/multipathd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/multipathd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-base/copy-wrappers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/copy-wrappers -------------------------------------------------------------------------------- /docker/neutron/neutron-base/delete-wrappers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/delete-wrappers -------------------------------------------------------------------------------- /docker/neutron/neutron-base/dnsmasq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/dnsmasq -------------------------------------------------------------------------------- /docker/neutron/neutron-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/extend_start.sh -------------------------------------------------------------------------------- /docker/neutron/neutron-base/haproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/haproxy -------------------------------------------------------------------------------- /docker/neutron/neutron-base/keepalived: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/keepalived -------------------------------------------------------------------------------- /docker/neutron/neutron-base/neutron_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/neutron_sudoers -------------------------------------------------------------------------------- /docker/neutron/neutron-base/radvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-base/radvd -------------------------------------------------------------------------------- /docker/neutron/neutron-bgp-dragent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-bgp-dragent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-dhcp-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-dhcp-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-dhcp-agent/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-dhcp-agent/extend_start.sh -------------------------------------------------------------------------------- /docker/neutron/neutron-infoblox-ipam-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-infoblox-ipam-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-l3-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-l3-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-l3-agent/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-l3-agent/extend_start.sh -------------------------------------------------------------------------------- /docker/neutron/neutron-metadata-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-metadata-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-metadata-agent/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-metadata-agent/extend_start.sh -------------------------------------------------------------------------------- /docker/neutron/neutron-metering-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-metering-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-mlnx-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-mlnx-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-openvswitch-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-openvswitch-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-ovn-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-ovn-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/neutron/neutron-server/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-server/extend_start.sh -------------------------------------------------------------------------------- /docker/neutron/neutron-sriov-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/neutron/neutron-sriov-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-api/extend_start.sh -------------------------------------------------------------------------------- /docker/nova/nova-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-base/extend_start.sh -------------------------------------------------------------------------------- /docker/nova/nova-base/nova_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-base/nova_sudoers -------------------------------------------------------------------------------- /docker/nova/nova-compute-ironic/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-compute-ironic/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-compute/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-compute/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-compute/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-compute/extend_start.sh -------------------------------------------------------------------------------- /docker/nova/nova-conductor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-conductor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-conductor/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-conductor/extend_start.sh -------------------------------------------------------------------------------- /docker/nova/nova-libvirt/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-libvirt/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-libvirt/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-libvirt/extend_start.sh -------------------------------------------------------------------------------- /docker/nova/nova-novncproxy/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-novncproxy/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-scheduler/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-scheduler/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-serialproxy/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-serialproxy/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-spicehtml5proxy/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-spicehtml5proxy/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-ssh/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-ssh/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/nova/nova-ssh/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/nova/nova-ssh/extend_start.sh -------------------------------------------------------------------------------- /docker/octavia/octavia-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/octavia/octavia-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-api/extend_start.sh -------------------------------------------------------------------------------- /docker/octavia/octavia-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/octavia/octavia-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-base/extend_start.sh -------------------------------------------------------------------------------- /docker/octavia/octavia-driver-agent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-driver-agent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/octavia/octavia-health-manager/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-health-manager/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/octavia/octavia-housekeeping/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-housekeeping/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/octavia/octavia-worker/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/octavia/octavia-worker/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/opensearch/opensearch-dashboards/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/opensearch/opensearch-dashboards/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/opensearch/opensearch-dashboards/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/opensearch/opensearch-dashboards/extend_start.sh -------------------------------------------------------------------------------- /docker/opensearch/opensearch/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/opensearch/opensearch/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/opensearch/opensearch/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/opensearch/opensearch/extend_start.sh -------------------------------------------------------------------------------- /docker/openstack-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openstack-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/openvswitch/openvswitch-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openvswitch/openvswitch-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/openvswitch/openvswitch-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openvswitch/openvswitch-base/extend_start.sh -------------------------------------------------------------------------------- /docker/openvswitch/openvswitch-base/ovs_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openvswitch/openvswitch-base/ovs_wrapper.sh -------------------------------------------------------------------------------- /docker/openvswitch/openvswitch-db-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openvswitch/openvswitch-db-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/openvswitch/openvswitch-db-server/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openvswitch/openvswitch-db-server/extend_start.sh -------------------------------------------------------------------------------- /docker/openvswitch/openvswitch-vswitchd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openvswitch/openvswitch-vswitchd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/openvswitch/openvswitch-vswitchd/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/openvswitch/openvswitch-vswitchd/extend_start.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovn/ovn-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-base/extend_start.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-controller/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-controller/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovn/ovn-controller/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-controller/extend_start.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-nb-db-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-nb-db-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovn/ovn-nb-db-server/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-nb-db-server/extend_start.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-nb-db-server/start_nb_db_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-nb-db-server/start_nb_db_server.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-northd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-northd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovn/ovn-northd/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-northd/extend_start.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-sb-db-relay/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-sb-db-relay/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovn/ovn-sb-db-relay/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-sb-db-relay/extend_start.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-sb-db-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-sb-db-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovn/ovn-sb-db-server/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-sb-db-server/extend_start.sh -------------------------------------------------------------------------------- /docker/ovn/ovn-sb-db-server/start_sb_db_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovn/ovn-sb-db-server/start_sb_db_server.sh -------------------------------------------------------------------------------- /docker/ovsdpdk/ovsdpdk-db/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovsdpdk/ovsdpdk-db/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovsdpdk/ovsdpdk-db/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovsdpdk/ovsdpdk-db/extend_start.sh -------------------------------------------------------------------------------- /docker/ovsdpdk/ovsdpdk-db/start_ovsdb_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovsdpdk/ovsdpdk-db/start_ovsdb_server.sh -------------------------------------------------------------------------------- /docker/ovsdpdk/ovsdpdk-vswitchd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovsdpdk/ovsdpdk-vswitchd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovsdpdk/ovsdpdk-vswitchd/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovsdpdk/ovsdpdk-vswitchd/extend_start.sh -------------------------------------------------------------------------------- /docker/ovsdpdk/ovsdpdk/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovsdpdk/ovsdpdk/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/ovsdpdk/ovsdpdk/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/ovsdpdk/ovsdpdk/extend_start.sh -------------------------------------------------------------------------------- /docker/placement/placement-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/placement/placement-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/placement/placement-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/placement/placement-api/extend_start.sh -------------------------------------------------------------------------------- /docker/placement/placement-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/placement/placement-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/placement/placement-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/placement/placement-base/extend_start.sh -------------------------------------------------------------------------------- /docker/prometheus/prometheus-alertmanager/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-alertmanager/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/prometheus/prometheus-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/prometheus/prometheus-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-base/extend_start.sh -------------------------------------------------------------------------------- /docker/prometheus/prometheus-cadvisor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-cadvisor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/prometheus/prometheus-mtail/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-mtail/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/prometheus/prometheus-mysqld-exporter/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-mysqld-exporter/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/prometheus/prometheus-node-exporter/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-node-exporter/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/prometheus/prometheus-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/prometheus/prometheus-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/proxysql/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/proxysql/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/proxysql/kolla_extend_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/proxysql/kolla_extend_start -------------------------------------------------------------------------------- /docker/proxysql/kolla_proxysql_config_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/proxysql/kolla_proxysql_config_sync -------------------------------------------------------------------------------- /docker/rabbitmq/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/rabbitmq/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/rabbitmq/apt_preferences_rabbitmq.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/rabbitmq/apt_preferences_rabbitmq.debian -------------------------------------------------------------------------------- /docker/rabbitmq/apt_preferences_rabbitmq.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/rabbitmq/apt_preferences_rabbitmq.ubuntu -------------------------------------------------------------------------------- /docker/rabbitmq/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/rabbitmq/extend_start.sh -------------------------------------------------------------------------------- /docker/rabbitmq/healthcheck_rabbitmq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/rabbitmq/healthcheck_rabbitmq -------------------------------------------------------------------------------- /docker/redis/redis-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/redis/redis-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/redis/redis-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/redis/redis-base/extend_start.sh -------------------------------------------------------------------------------- /docker/redis/redis-sentinel/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/redis/redis-sentinel/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/redis/redis-sentinel/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/redis/redis-sentinel/extend_start.sh -------------------------------------------------------------------------------- /docker/redis/redis/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/redis/redis/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/skyline/skyline-apiserver/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/skyline/skyline-apiserver/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/skyline/skyline-apiserver/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/skyline/skyline-apiserver/extend_start.sh -------------------------------------------------------------------------------- /docker/skyline/skyline-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/skyline/skyline-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/skyline/skyline-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/skyline/skyline-base/extend_start.sh -------------------------------------------------------------------------------- /docker/skyline/skyline-console/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/skyline/skyline-console/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/tacker/tacker-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/tacker/tacker-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/tacker/tacker-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/tacker/tacker-base/extend_start.sh -------------------------------------------------------------------------------- /docker/tacker/tacker-conductor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/tacker/tacker-conductor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/tacker/tacker-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/tacker/tacker-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/tacker/tacker-server/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/tacker/tacker-server/extend_start.sh -------------------------------------------------------------------------------- /docker/telegraf/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/telegraf/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/telegraf/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/telegraf/extend_start.sh -------------------------------------------------------------------------------- /docker/telegraf/telegraf_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/telegraf/telegraf_sudoers -------------------------------------------------------------------------------- /docker/tgtd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/tgtd/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/trove/trove-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/trove/trove-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/trove/trove-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/trove/trove-api/extend_start.sh -------------------------------------------------------------------------------- /docker/trove/trove-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/trove/trove-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/trove/trove-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/trove/trove-base/extend_start.sh -------------------------------------------------------------------------------- /docker/trove/trove-conductor/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/trove/trove-conductor/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/trove/trove-guestagent/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/trove/trove-guestagent/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/trove/trove-taskmanager/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/trove/trove-taskmanager/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/valkey/valkey-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/valkey/valkey-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/valkey/valkey-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/valkey/valkey-base/extend_start.sh -------------------------------------------------------------------------------- /docker/valkey/valkey-sentinel/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/valkey/valkey-sentinel/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/valkey/valkey-sentinel/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/valkey/valkey-sentinel/extend_start.sh -------------------------------------------------------------------------------- /docker/valkey/valkey-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/valkey/valkey-server/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/watcher/watcher-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/watcher/watcher-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/watcher/watcher-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/watcher/watcher-api/extend_start.sh -------------------------------------------------------------------------------- /docker/watcher/watcher-applier/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/watcher/watcher-applier/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/watcher/watcher-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/watcher/watcher-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/watcher/watcher-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/watcher/watcher-base/extend_start.sh -------------------------------------------------------------------------------- /docker/watcher/watcher-engine/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/watcher/watcher-engine/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/zun/zun-api/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-api/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/zun/zun-api/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-api/extend_start.sh -------------------------------------------------------------------------------- /docker/zun/zun-base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-base/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/zun/zun-base/app.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-base/app.wsgi -------------------------------------------------------------------------------- /docker/zun/zun-base/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-base/extend_start.sh -------------------------------------------------------------------------------- /docker/zun/zun-base/zun_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-base/zun_sudoers -------------------------------------------------------------------------------- /docker/zun/zun-cni-daemon/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-cni-daemon/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/zun/zun-cni-daemon/zun_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-cni-daemon/zun_sudoers -------------------------------------------------------------------------------- /docker/zun/zun-compute/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-compute/Dockerfile.j2 -------------------------------------------------------------------------------- /docker/zun/zun-compute/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-compute/extend_start.sh -------------------------------------------------------------------------------- /docker/zun/zun-compute/zun_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-compute/zun_sudoers -------------------------------------------------------------------------------- /docker/zun/zun-wsproxy/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/docker/zun/zun-wsproxy/Dockerfile.j2 -------------------------------------------------------------------------------- /etc/kolla/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/oslo-config-generator/kolla-build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/etc/oslo-config-generator/kolla-build.conf -------------------------------------------------------------------------------- /kolla/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/__init__.py -------------------------------------------------------------------------------- /kolla/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/cmd/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/cmd/build.py -------------------------------------------------------------------------------- /kolla/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/common/config.py -------------------------------------------------------------------------------- /kolla/common/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/common/sources.py -------------------------------------------------------------------------------- /kolla/common/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/common/task.py -------------------------------------------------------------------------------- /kolla/common/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/common/users.py -------------------------------------------------------------------------------- /kolla/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/common/utils.py -------------------------------------------------------------------------------- /kolla/engine_adapter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/engine_adapter/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/engine_adapter/engine.py -------------------------------------------------------------------------------- /kolla/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/exception.py -------------------------------------------------------------------------------- /kolla/hacking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/hacking/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/hacking/checks.py -------------------------------------------------------------------------------- /kolla/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/image/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/image/build.py -------------------------------------------------------------------------------- /kolla/image/kolla_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/image/kolla_worker.py -------------------------------------------------------------------------------- /kolla/image/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/image/tasks.py -------------------------------------------------------------------------------- /kolla/image/unbuildable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/image/unbuildable.py -------------------------------------------------------------------------------- /kolla/image/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/image/utils.py -------------------------------------------------------------------------------- /kolla/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/opts.py -------------------------------------------------------------------------------- /kolla/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/template/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/template/filters.py -------------------------------------------------------------------------------- /kolla/template/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/template/methods.py -------------------------------------------------------------------------------- /kolla/template/repos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/template/repos.yaml -------------------------------------------------------------------------------- /kolla/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/base.py -------------------------------------------------------------------------------- /kolla/tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kolla/tests/common/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/common/test_config.py -------------------------------------------------------------------------------- /kolla/tests/docker/base/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/docker/base/Dockerfile.j2 -------------------------------------------------------------------------------- /kolla/tests/docker/etcd/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/docker/etcd/Dockerfile.j2 -------------------------------------------------------------------------------- /kolla/tests/docker/neutron-server/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/docker/neutron-server/Dockerfile.j2 -------------------------------------------------------------------------------- /kolla/tests/etc/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/etc/default.conf -------------------------------------------------------------------------------- /kolla/tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/test_build.py -------------------------------------------------------------------------------- /kolla/tests/test_hacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/test_hacking.py -------------------------------------------------------------------------------- /kolla/tests/test_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/tests/test_methods.py -------------------------------------------------------------------------------- /kolla/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/kolla/version.py -------------------------------------------------------------------------------- /releasenotes/notes/aarch64-ipxe-51888a5972528d77.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/aarch64-ipxe-51888a5972528d77.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-aodh-a5de8a339f25c1a2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement Aodh ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-apache-storm-927c5318d91b5db3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add support for building an Apache Storm image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-barbican-8f0636668001de73.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-barbican-8f0636668001de73.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-blazar-dashboard-e201d1aeeccc0eaa.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add blazar-dashboard to horizon image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-block-labels-d0927a1617ab13ec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-block-labels-d0927a1617ab13ec.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-ceilometer-a4759f21564de7eb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add ceilometer ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-ceilometer-agent-ipmi-container-aa498b90c3d2f326.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add ceilometer agent ipmi service image 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-ceph-nfs-b64cfba4775589a0.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add ceph-nfs dockerfile 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-certmonger-0bf3a37089c5c267.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add certmonger image. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-cloudkitty-10eb09a96de60144.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add cloudkitty, the Rating as a Service component. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-collectd-6e3387dfff75040a.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add collectd ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-congress-877644b4b0e2ed0a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-congress-877644b4b0e2ed0a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-congress-dashboard-e302d9aeecdc0eaa.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add congress-dashboard to horizon image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-cyborg-images-cab2b3a24a071c38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-cyborg-images-cab2b3a24a071c38.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-designate-c789e47f8ced394d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-designate-c789e47f8ced394d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-designate-producer-1420e7c4744e9b09.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add designate-producer image 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-docker-engine-7402d3fe7349f1f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-docker-engine-7402d3fe7349f1f3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-dragonflow-da8ff734139c9de5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-dragonflow-da8ff734139c9de5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-ec2-api-e7d3e60173e8a3d8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - add image for EC2-API service 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-freezer-74c9b538348cd62a.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add freezer Dockerfile 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-freezer-sceduler-b64cfba4666889a0.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add freezer-scheduler dockerfile 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-gnocchi-94296c3ed6e979a8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement Gnocchi ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-grafana-in-heka-6397498442c00670.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - add grafana log in heka 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-header-blocks-9ac76254e5f5ab20.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add jinja2 header blocks to each Dockerfile. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-heat-all-efdefb3189ec8403.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-heat-all-efdefb3189ec8403.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-heat-api-cloudwatch-95259c920ba7d19e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add heat-api-cloudwatch image 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-kafka-26c9e54c934b1119.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add kafka image, used in Monasca 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-karbor-e6cfd97f965a4a9f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-karbor-e6cfd97f965a4a9f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-logstash-27da5de156efb943.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add support for building a Logstash 5.x image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-mistral-event-engine-053ebdfbd50e2e65.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add mistral-event-engine image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-monasca-3c60b3e44d3c4267.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add monasca images 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-mtail-b806e87da3ae950d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-mtail-b806e87da3ae950d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-multipath-9ee29be1fcea6d94.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-multipath-9ee29be1fcea6d94.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-network-interface-checks-0e789f3f93cbdb09.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add some extra prechecks to ensure a sane NIC config. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-neutron-dvr-f1b3541e22c0fbc3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-neutron-dvr-f1b3541e22c0fbc3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-neutron-lbaas-dbb92dada9d34ceb.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add support for LBaaSv2 with HAproxy container. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-neutron-server-opendaylight-bf8407e0b91059c4.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Adds OpenDaylight specific Neutron Server container. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-neutron-server-ovn-5728bbd35b08083e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Adds OVN specific Neutron Server container. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-neutron-vpnaas-88e0780326100e36.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add neutron-vpnaas role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-novajoin-9e8ae602b29335b7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add novajoin image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-octavia-dashboard-e2b1d1aeebcc0eba.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add octavia-dashboard to horizon image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-opendaylight-fee2807442ce3c6d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-opendaylight-fee2807442ce3c6d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-prometheus-v2-6f62ed3702d465a0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-prometheus-v2-6f62ed3702d465a0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-ptp-service-image-3fb4eadeeeda3aa0.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add ptp service image 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-py35-f0ddb519029f5ee3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-py35-f0ddb519029f5ee3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-qdrouterd-4676f6cad921a3f8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-qdrouterd-4676f6cad921a3f8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-qinling-618886c3375eea4a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-qinling-618886c3375eea4a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-quiet-mode-4f386acd4bc043a5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-quiet-mode-4f386acd4bc043a5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-radvd-dockerfile-64668525dae7ead8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add radvd docker container 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-rally-c6d1468accfb1da6.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement rally ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-reno-f5e9ff4d9ccfa785.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Start using reno. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-sahara-f2be7bf79935792e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement Sahara ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-sensu-a763a155649e068d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-sensu-a763a155649e068d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-skydive-52c3fb964fe6cc1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-skydive-52c3fb964fe6cc1b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-skyline-200d1bca7907b00c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-skyline-200d1bca7907b00c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-solum-aa448921b2b58989.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add solum Dockerfile 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-tripleo-ui-image-6a17f9a31894d908.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add tripleo-ui image 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-venus-dashboard-1d4a5093ad233c6e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add venus-dashboard to horizon image. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/add-venus-e2a9824f5ef5cf30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-venus-e2a9824f5ef5cf30.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-vmtp-7d6aef3125a38dbe.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add vmtp support to docker container. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-watcher-a97995ace827cf71.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/add-watcher-a97995ace827cf71.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-zookeeper-2454cdfbfa7047b4.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add zookeeper image, used in monasca 4 | -------------------------------------------------------------------------------- /releasenotes/notes/add-zun-dockerfile-fb604877dc9c15fe.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add zun docker container 4 | -------------------------------------------------------------------------------- /releasenotes/notes/allowed-to-fail-e2ff5bf61c857b55.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/allowed-to-fail-e2ff5bf61c857b55.yaml -------------------------------------------------------------------------------- /releasenotes/notes/almanach-images-f0a9a424ac3fe7cd.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Almanach Docker images are available in Kolla 4 | -------------------------------------------------------------------------------- /releasenotes/notes/ansible-core-2-14-toolbox-750765147e4238dc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Kolla toolbox is now using ansible-core 2.14. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/ansible-core-2.18-582103463aba6e8a.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Kolla toolbox is now using ``ansible-core 2.18`` 5 | -------------------------------------------------------------------------------- /releasenotes/notes/ansible-core-2_16-toolbox-8cec8f56e022731b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Kolla toolbox is now using ``ansible-core 2.16``. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/ansible-core-toolbox-e34b31422474684b.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Kolla toolbox is now using ansible-core 2.11. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/ansible-tempest-44edbca4436f3c19.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement Ansible Tempest role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/apt-keys-bb7c8678fc6d908b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/apt-keys-bb7c8678fc6d908b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/base-package-type-bf53d8d63611b5ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/base-package-type-bf53d8d63611b5ac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/base-unified-07fe64b8cbbdab9a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/base-unified-07fe64b8cbbdab9a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bifrost-ansible-11-d14b635f9f766675.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Bifrost is now using Ansible 11.x. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/bifrost-f080de99005ad38e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bifrost-f080de99005ad38e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/blazar-images-c54435b3bd5b0425.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Blazar Docker images are available in Kolla 4 | -------------------------------------------------------------------------------- /releasenotes/notes/bug-1808805-e63af01591f03506.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1808805-e63af01591f03506.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1814515-99197e13a6280861.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1814515-99197e13a6280861.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1814552-a037354969dcf7e5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1814552-a037354969dcf7e5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1859047-d41762357da8ae0b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1859047-d41762357da8ae0b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1866017-9e31ddbfca9fd0f4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1866017-9e31ddbfca9fd0f4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1866827-5351ec43486d7f33.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1866827-5351ec43486d7f33.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1867365-115d717288e7c7d0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1867365-115d717288e7c7d0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1868574.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1868574.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1869319-aa032c1330b540dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1869319-aa032c1330b540dc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1873744-559df986c3840bd7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1873744-559df986c3840bd7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1874298-35b7ccffe327f7e4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1874298-35b7ccffe327f7e4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1884259-23bdaa6c1c038a81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1884259-23bdaa6c1c038a81.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1884484-d26488c9c1f3977f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1884484-d26488c9c1f3977f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1884919-6be7e60872c5eb86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1884919-6be7e60872c5eb86.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1897948-a0eb6d890eea8061.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1897948-a0eb6d890eea8061.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1905279-41d664114ef26a16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1905279-41d664114ef26a16.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1907213-e0cee8498d19a170.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1907213-e0cee8498d19a170.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1913952-a23431cef137f9c7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1913952-a23431cef137f9c7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1928408-4a22a85570eee8d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1928408-4a22a85570eee8d6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1930544-a8926990f3a578a9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1930544-a8926990f3a578a9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1930867.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1930867.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1931544-5a091735efb6d6dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1931544-5a091735efb6d6dd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1933759-c03e50c243850a49.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1933759-c03e50c243850a49.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1933770-c08c6804aa5d9e61.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1933770-c08c6804aa5d9e61.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1934753-98ec4951a0f7373b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1934753-98ec4951a0f7373b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1934788-b1fd51f443479fb6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1934788-b1fd51f443479fb6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1935015-385d6f20e32311eb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1935015-385d6f20e32311eb.yml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1936947-8beac926823cdf8f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1936947-8beac926823cdf8f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1940862-8fd12d669ab15299.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1940862-8fd12d669ab15299.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1942038-f1d96ae352f73bd1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1942038-f1d96ae352f73bd1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1942846-1216faacacba94be.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1942846-1216faacacba94be.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1946801-5f3af3c44e567fcf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1946801-5f3af3c44e567fcf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1955889-92d98ef6527a75ef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1955889-92d98ef6527a75ef.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1959203-1bb695e052248d78.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1959203-1bb695e052248d78.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1964140-57b433329bab067e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1964140-57b433329bab067e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1985784-59df54a10a004551.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1985784-59df54a10a004551.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1999778.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-1999778.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2000915-962531e87944c6f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2000915-962531e87944c6f3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2020761-c31f28c922ebcf84.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2020761-c31f28c922ebcf84.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2047941-895a319fd706d2b4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2047941-895a319fd706d2b4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2060855-77516da722d04761.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2060855-77516da722d04761.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2062572-c55c71e1045a863f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2062572-c55c71e1045a863f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2076249-96b7f39fbdcf2293.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2076249-96b7f39fbdcf2293.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2080818-9eacce36a8c18f8f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2080818-9eacce36a8c18f8f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2080861-a46761ea9e7bbf91.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2080861-a46761ea9e7bbf91.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2091161-a99c5c243c2514ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2091161-a99c5c243c2514ac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2098904-4c5670049a7e1a66.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2098904-4c5670049a7e1a66.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2111620-e40e1dec6fed309f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2111620-e40e1dec6fed309f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2112140-41a1924c260e531c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2112140-41a1924c260e531c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2114173-70d0b815a42ae239.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2114173-70d0b815a42ae239.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2120639-74c180bd812ddcf7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/bug-2120639-74c180bd812ddcf7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bump-alertmanager-to-0.23-42e3e3894158d7d0.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Updates Prometheus Alertmanager version to 0.23.0. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/bump-alertmanager-to-0.24-e73778e9d954cf85.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Updates Alertmanager version to 0.24.0. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/centos-8-950d979507939643.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/centos-8-950d979507939643.yaml -------------------------------------------------------------------------------- /releasenotes/notes/centos-8-stream-b5b45ccee94f7cf5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/centos-8-stream-b5b45ccee94f7cf5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ceph-jewel-33caab815946cb4c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ceph-jewel-33caab815946cb4c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cloudkitty-docker-fb6b3d7e006a0697.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/cloudkitty-docker-fb6b3d7e006a0697.yaml -------------------------------------------------------------------------------- /releasenotes/notes/collectd-pmu-6aeae4759b8a1563.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/collectd-pmu-6aeae4759b8a1563.yaml -------------------------------------------------------------------------------- /releasenotes/notes/congress-broken-cbf8ca59d90a85cb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/congress-broken-cbf8ca59d90a85cb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/copr-move-5d0464c50dc85ccf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/copr-move-5d0464c50dc85ccf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/curl-retries-e1c5d6b5b25d7380.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/curl-retries-e1c5d6b5b25d7380.yaml -------------------------------------------------------------------------------- /releasenotes/notes/custom-policies-5a9bb2b59d19b484.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/custom-policies-5a9bb2b59d19b484.yaml -------------------------------------------------------------------------------- /releasenotes/notes/debian-bullseye-4fedf3b3638783de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/debian-bullseye-4fedf3b3638783de.yaml -------------------------------------------------------------------------------- /releasenotes/notes/debian-buster-7bd8be7ec4ce0d13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/debian-buster-7bd8be7ec4ce0d13.yaml -------------------------------------------------------------------------------- /releasenotes/notes/debian-dalmatian-65fed830f10946e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/debian-dalmatian-65fed830f10946e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/debian-epoxy-f68eb3e911f5fea3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/debian-epoxy-f68eb3e911f5fea3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/debian-stretch-38cadd54fc895f20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/debian-stretch-38cadd54fc895f20.yaml -------------------------------------------------------------------------------- /releasenotes/notes/default-rocky-4b0d906a455539d8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/default-rocky-4b0d906a455539d8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-bifrost-dd93b6d8eb04cac6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-bifrost-dd93b6d8eb04cac6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-chrony-5cd7c7627a5b9f0e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-chrony-5cd7c7627a5b9f0e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-dind-9ed17229d2c3137b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-dind-9ed17229d2c3137b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-fedora-97f8f963a410eb44.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-fedora-97f8f963a410eb44.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-monasca-75479150789122dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-monasca-75479150789122dc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-mongodb-88636154e07cd31c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-mongodb-88636154e07cd31c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-ppc64le-2b7b642e79bddd66.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-ppc64le-2b7b642e79bddd66.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-rhel-ee57f1f03aaac42d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-rhel-ee57f1f03aaac42d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-sahara-8d37f8fcde0c2e79.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-sahara-8d37f8fcde0c2e79.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-sensu-5bc4562c902d7fbf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-sensu-5bc4562c902d7fbf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-swift-fe9f5586f698ba03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-swift-fe9f5586f698ba03.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-vitrage-c324e8a0ec9cc90f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/deprecate-vitrage-c324e8a0ec9cc90f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/distro-python-ovs-df705d1e59f16cde.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/distro-python-ovs-df705d1e59f16cde.yaml -------------------------------------------------------------------------------- /releasenotes/notes/docker-3-0-0-e5f43f9b78ad644d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/docker-3-0-0-e5f43f9b78ad644d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-delorean-c0bd3229162faef0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-delorean-c0bd3229162faef0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-freezer-06c0a19795156fe9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-freezer-06c0a19795156fe9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-last-mongo-refs-c12edb066544e190.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | other: 3 | - | 4 | Removes ``pymongo`` installation from images. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/drop-murano-bcd243c986eaa225.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-murano-bcd243c986eaa225.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-ppc64le-516442a16cc9f27c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-ppc64le-516442a16cc9f27c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-py27-a16f4712ac89e3a9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-py27-a16f4712ac89e3a9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-qdrouterd-b09f796067b431d9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-qdrouterd-b09f796067b431d9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-rhel-support-03ccce1a69bd88a7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-rhel-support-03ccce1a69bd88a7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-senlin-aadc2bd1eb50d046.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-senlin-aadc2bd1eb50d046.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-skydive-5b0dba2b7b12ee95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-skydive-5b0dba2b7b12ee95.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-solum-79236f585eb5e9bf.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | ``Solum`` container images have been dropped. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/drop-venus-435234b3bff7f209.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-venus-435234b3bff7f209.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-vitrage-d871449de1e06458.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-vitrage-d871449de1e06458.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-vmtp-3a889e0fa7a7f8ee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-vmtp-3a889e0fa7a7f8ee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-xtrabackup-e58a97b617ff708c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/drop-xtrabackup-e58a97b617ff708c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enable-nova-microversion-b445f22548b41c2a.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Enable the nova microversion api 4 | -------------------------------------------------------------------------------- /releasenotes/notes/etcd-3.4-11528a31a53451f6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/etcd-3.4-11528a31a53451f6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/etcd-3.5-30f3c030fd5296a9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/etcd-3.5-30f3c030fd5296a9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/etcd-docker-ansible-51baaa1322a0c5a8.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add etcd ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/etcd-dockerfile-69b8bfc1df4bb2ab.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add etcd docker container 4 | -------------------------------------------------------------------------------- /releasenotes/notes/fix-cinder-endpoints-urls-22746b1524accbbf.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - The wrong urls of Cinder Service endpoints was fixed. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/fix-config-check-c973c462761a4fa9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/fix-config-check-c973c462761a4fa9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-fwaas-l3-log-aed85e0782dece8d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/fix-fwaas-l3-log-aed85e0782dece8d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-git-build-23c8fe6c4b0d92c4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/fix-git-build-23c8fe6c4b0d92c4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-skips-d5cb9546110300ee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/fix-skips-d5cb9546110300ee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix_nova_tpm_user-98f56190196a00d2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/fix_nova_tpm_user-98f56190196a00d2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/flamingo-prelude-b72f2599ed9d25d5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/flamingo-prelude-b72f2599ed9d25d5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fluentd-update-8db10e760b2dc4d5.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Updates ``Fluentd`` to the 6.x LTS series. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/get_pip-macro-906a78462b216049.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/get_pip-macro-906a78462b216049.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-4.4.1-1332afc3c6fca766.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/gnocchi-4.4.1-1332afc3c6fca766.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-4.5.0-c06c6f57e910e3e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/gnocchi-4.5.0-c06c6f57e910e3e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-4_6_2-b0fa6389ea13a0d2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/gnocchi-4_6_2-b0fa6389ea13a0d2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-4_6_4-5d2b27e744f7d309.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/gnocchi-4_6_4-5d2b27e744f7d309.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-4_7_0-fdb7f76d367ee435.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/gnocchi-4_7_0-fdb7f76d367ee435.yaml -------------------------------------------------------------------------------- /releasenotes/notes/haproxy-22-aeac8a3fa330f972.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/haproxy-22-aeac8a3fa330f972.yaml -------------------------------------------------------------------------------- /releasenotes/notes/heka-deprecation-d53e757470b3f7b4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/heka-deprecation-d53e757470b3f7b4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/implement-mongo-replicate-set-cluster-0d3f140f7116c3ba.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement MongoDB replicate set cluster 4 | -------------------------------------------------------------------------------- /releasenotes/notes/ironic-esp-image-886b5fb5b01e7b56.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ironic-esp-image-886b5fb5b01e7b56.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ironic-mtools-2938ccfe951f5dc5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ironic-mtools-2938ccfe951f5dc5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ironic-packages-009b388b10fab6f0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ironic-packages-009b388b10fab6f0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ironic-pxe-filter-b3b29090b0661ca2.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Adds ``ironic-pxe-filter`` container image. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/ironic_syslinux-70eac225d227dc2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ironic_syslinux-70eac225d227dc2e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/kibana-4-6-7765f556efba2724.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - Kibana version changed from 4.4 to 4.6. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/kolla-host-584270e3aee6dfd6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/kolla-host-584270e3aee6dfd6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/kuryr-libnetwork-1e6ab1916a8a0d10.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add kuryr ansible role 4 | -------------------------------------------------------------------------------- /releasenotes/notes/libvirt-sasl-07a8a1a25d2450c6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/libvirt-sasl-07a8a1a25d2450c6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/logstash-7.9-30fd90e921037a8a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/logstash-7.9-30fd90e921037a8a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mariadb-10.6-c79b0ad5791256ad.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | other: 3 | - | 4 | Images now have MariaDB 10.6. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/mariadb-11.4-b66b5baf9f5e6cd0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/mariadb-11.4-b66b5baf9f5e6cd0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/masakari-a047b0387a474186.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/masakari-a047b0387a474186.yaml -------------------------------------------------------------------------------- /releasenotes/notes/monitoring-ad566513454614db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/monitoring-ad566513454614db.yaml -------------------------------------------------------------------------------- /releasenotes/notes/netcontrold-24c9d6602f84e819.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Adds a ``netcontrold`` image for Open vSwitch. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/neutron-sriov-agent-4dae576ca279ef87.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Add neutron-sriov-agent image. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/non-x86-support-bce168d78db50202.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/non-x86-support-bce168d78db50202.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-nvme-cli-bf940ad0005cac80.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/nova-nvme-cli-bf940ad0005cac80.yaml -------------------------------------------------------------------------------- /releasenotes/notes/nova-plugins-f3ceab61b19d008a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/nova-plugins-f3ceab61b19d008a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/opensearch-f3a7b8bfc86a16f6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/opensearch-f3a7b8bfc86a16f6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ovn-debian-x86-d584f88b9e94b226.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ovn-debian-x86-d584f88b9e94b226.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prometheus-ovn-ovs-exporter-53f439c286f9451d.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Adds ``prometheus-ovn-exporter`` image. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/proxysql-001027572dcec118.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/proxysql-001027572dcec118.yaml -------------------------------------------------------------------------------- /releasenotes/notes/proxysql-2.5.x.yaml-6111edc2c762d5b7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - ProxySQL version was increased to 2.5.x 4 | -------------------------------------------------------------------------------- /releasenotes/notes/rabbit-3.6.2-accdb2d3ecd493cc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - RabbitMQ version was increased to 3.6.2 4 | -------------------------------------------------------------------------------- /releasenotes/notes/rabbitmq-3-11-3b9ae3fc33ed4042.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | RabbitMQ version has been updated to 3.11. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/rabbitmq-3-13-56852b220fd50bc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/rabbitmq-3-13-56852b220fd50bc0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbitmq-310-8c9c6eeb5d5a2a75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/rabbitmq-310-8c9c6eeb5d5a2a75.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbitmq-39-6791f54358018428.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/rabbitmq-39-6791f54358018428.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbitmq-4-0-ee1a5f2ef212f6a6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/rabbitmq-4-0-ee1a5f2ef212f6a6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rabbitmq-41-d881d0b6bbf46446.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/rabbitmq-41-d881d0b6bbf46446.yaml -------------------------------------------------------------------------------- /releasenotes/notes/redis-container-810eec9915d426d8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/redis-container-810eec9915d426d8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-ceph-afff3cd8775e3a41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/remove-ceph-afff3cd8775e3a41.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-chrony-image-20a96b0ce63e2959.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | ``chrony`` image has been removed. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/remove-crane-ad12c12b633d4d73.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/remove-crane-ad12c12b633d4d73.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-dibbler-537b80d88f9984f5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/remove-dibbler-537b80d88f9984f5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-fedora-44af79f3e061e8d6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/remove-fedora-44af79f3e061e8d6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-panko-5338b559.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/remove-panko-5338b559.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-prometheus-v1-3bc458bed2228a9e.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Prometheus v1 image has been removed. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/remove-sahara-9231cf59e7a812e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/remove-sahara-9231cf59e7a812e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-sensu-a20b01d025385aa1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/remove-sensu-a20b01d025385aa1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rocky-10-4111fa0160be14ab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/rocky-10-4111fa0160be14ab.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rsyslog-13d5798163953322.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | Add Rsyslog image. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/senlin-container-e1ae6aa932097e51.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Implement Senlin Container 4 | -------------------------------------------------------------------------------- /releasenotes/notes/set-group-for-user-aa9b3eae69d8f6a0.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Allow to set group for user. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/skydive-remove-58bbea2626c59aea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/skydive-remove-58bbea2626c59aea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/static-uid-gid-b90800f2947e656d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/static-uid-gid-b90800f2947e656d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/stein-prelude-92e47ccd60c76325.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/stein-prelude-92e47ccd60c76325.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-ldap-e678ce5b0a7eaedb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/support-ldap-e678ce5b0a7eaedb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/td-agent-4-b2c7fc574bff0a42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/td-agent-4-b2c7fc574bff0a42.yaml -------------------------------------------------------------------------------- /releasenotes/notes/train-prelude-2420ae1363bd92bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/train-prelude-2420ae1363bd92bc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ubuntu-24-04-585855b7d4753ce3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ubuntu-24-04-585855b7d4753ce3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ubuntu-focal-3e1cc65dade622fc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ubuntu-focal-3e1cc65dade622fc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ubuntu-mariadb-10.5-38631eae76f6d091.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - | 4 | Ubuntu now uses MariaDB 10.5 to sync with Debian. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/unicode-locale-018fe01eaccc556d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/unicode-locale-018fe01eaccc556d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/update-cadvisor-v0.38.7-a0ff88006b5ff3f7.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - | 4 | cAdvisor has been updated to 0.38.7 version. 5 | -------------------------------------------------------------------------------- /releasenotes/notes/update-packages-071d1863639fe3e3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/update-packages-071d1863639fe3e3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/upgade-to-ubuntu-xenial-93e68d2330e9bd84.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Upgrade Ubuntu base image to Xenial 4 | -------------------------------------------------------------------------------- /releasenotes/notes/upgrade-kafka-c52e0ad07e11b69d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/upgrade-kafka-c52e0ad07e11b69d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/upgrade-pip-44352805d60bbf7f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/upgrade-pip-44352805d60bbf7f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/upgrade-to-elk7-1816e69663735a98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/upgrade-to-elk7-1816e69663735a98.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ussuri-prelude-7e3f25109c71f731.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/ussuri-prelude-7e3f25109c71f731.yaml -------------------------------------------------------------------------------- /releasenotes/notes/yoga-prelude-4773bac540443b41.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/yoga-prelude-4773bac540443b41.yaml -------------------------------------------------------------------------------- /releasenotes/notes/yum_conf-36fef802e8c003f1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/yum_conf-36fef802e8c003f1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/zed-prelude-f18af6c18bf8bed7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/notes/zed-prelude-f18af6c18bf8bed7.yaml -------------------------------------------------------------------------------- /releasenotes/source/2023.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/2023.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2023.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/2023.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/2024.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/2024.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/2025.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/2025.2.rst -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/_templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/liberty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/liberty.rst -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/victoria.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/victoria.rst -------------------------------------------------------------------------------- /releasenotes/source/wallaby.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/wallaby.rst -------------------------------------------------------------------------------- /releasenotes/source/xena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/xena.rst -------------------------------------------------------------------------------- /releasenotes/source/yoga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/yoga.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /releasenotes/templates/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/templates/feature.yml -------------------------------------------------------------------------------- /releasenotes/templates/fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/releasenotes/templates/fix.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/requirements.txt -------------------------------------------------------------------------------- /roles/configure-ephemeral/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | configure_ephemeral_mountpoint: "/var/lib/docker" 3 | -------------------------------------------------------------------------------- /roles/configure-ephemeral/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/configure-ephemeral/meta/main.yml -------------------------------------------------------------------------------- /roles/configure-ephemeral/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/configure-ephemeral/tasks/main.yml -------------------------------------------------------------------------------- /roles/kolla-build-config/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/kolla-build-config/defaults/main.yml -------------------------------------------------------------------------------- /roles/kolla-build-config/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/kolla-build-config/tasks/main.yml -------------------------------------------------------------------------------- /roles/kolla-build-config/templates/kolla-build.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/kolla-build-config/templates/kolla-build.conf.j2 -------------------------------------------------------------------------------- /roles/kolla-build-deps/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/kolla-build-deps/tasks/main.yml -------------------------------------------------------------------------------- /roles/kolla-build/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/kolla-build/defaults/main.yml -------------------------------------------------------------------------------- /roles/kolla-build/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/roles/kolla-build/tasks/main.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/setup.py -------------------------------------------------------------------------------- /specs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/README.rst -------------------------------------------------------------------------------- /specs/ansible-multi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/ansible-multi.rst -------------------------------------------------------------------------------- /specs/containerize-openstack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/containerize-openstack.rst -------------------------------------------------------------------------------- /specs/ha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/ha.svg -------------------------------------------------------------------------------- /specs/high-availability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/high-availability.rst -------------------------------------------------------------------------------- /specs/kolla-ceph-bluestore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/kolla-ceph-bluestore.rst -------------------------------------------------------------------------------- /specs/kubernetes-deployment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/kubernetes-deployment.rst -------------------------------------------------------------------------------- /specs/logging-with-heka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/logging-with-heka.rst -------------------------------------------------------------------------------- /specs/logging-with-heka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/logging-with-heka.svg -------------------------------------------------------------------------------- /specs/mariadb-backup-recovery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/mariadb-backup-recovery.rst -------------------------------------------------------------------------------- /specs/template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/specs/template.rst -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /test-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/test-requirements.yml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/process_build_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/files/process_build_logs.py -------------------------------------------------------------------------------- /tests/playbooks/copr-erlang-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/playbooks/copr-erlang-update.yml -------------------------------------------------------------------------------- /tests/playbooks/post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/playbooks/post.yml -------------------------------------------------------------------------------- /tests/playbooks/pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/playbooks/pre.yml -------------------------------------------------------------------------------- /tests/playbooks/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/playbooks/publish.yml -------------------------------------------------------------------------------- /tests/playbooks/run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/playbooks/run.yml -------------------------------------------------------------------------------- /tests/templates/docker/releaser/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/templates/docker/releaser/Dockerfile.j2 -------------------------------------------------------------------------------- /tests/templates/docker/releaser/extend_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/templates/docker/releaser/extend_start.sh -------------------------------------------------------------------------------- /tests/templates/template_overrides.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/templates/template_overrides.j2 -------------------------------------------------------------------------------- /tests/test_set_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/test_set_config.py -------------------------------------------------------------------------------- /tests/vars/zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tests/vars/zuul.yml -------------------------------------------------------------------------------- /tools/build.py: -------------------------------------------------------------------------------- 1 | ../kolla/cmd/build.py -------------------------------------------------------------------------------- /tools/cleanup-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/cleanup-images -------------------------------------------------------------------------------- /tools/diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/diag -------------------------------------------------------------------------------- /tools/loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/loc -------------------------------------------------------------------------------- /tools/pre-commit-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/pre-commit-hook -------------------------------------------------------------------------------- /tools/run-bashate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/run-bashate.sh -------------------------------------------------------------------------------- /tools/start-registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/start-registry -------------------------------------------------------------------------------- /tools/validate-all-dockerfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-all-dockerfiles.sh -------------------------------------------------------------------------------- /tools/validate-all-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-all-file.py -------------------------------------------------------------------------------- /tools/validate-all-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-all-yaml.sh -------------------------------------------------------------------------------- /tools/validate-docker-execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-docker-execute.sh -------------------------------------------------------------------------------- /tools/validate-indentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-indentation.sh -------------------------------------------------------------------------------- /tools/validate-install-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-install-command.sh -------------------------------------------------------------------------------- /tools/validate-maintainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-maintainer.sh -------------------------------------------------------------------------------- /tools/validate-yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/validate-yaml.py -------------------------------------------------------------------------------- /tools/version-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tools/version-check.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/tox.ini -------------------------------------------------------------------------------- /zuul.d/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/base.yaml -------------------------------------------------------------------------------- /zuul.d/centos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/centos.yaml -------------------------------------------------------------------------------- /zuul.d/debian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/debian.yaml -------------------------------------------------------------------------------- /zuul.d/nodesets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/nodesets.yaml -------------------------------------------------------------------------------- /zuul.d/periodics/copr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/periodics/copr.yaml -------------------------------------------------------------------------------- /zuul.d/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/project.yaml -------------------------------------------------------------------------------- /zuul.d/rocky.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/rocky.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/aio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/aio.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/bifrost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/bifrost.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/cells.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/cells.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/cephadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/cephadm.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/ironic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/ironic.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/mariadb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/mariadb.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/masakari.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/masakari.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/octavia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/octavia.yaml -------------------------------------------------------------------------------- /zuul.d/scenarios/ovn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/scenarios/ovn.yaml -------------------------------------------------------------------------------- /zuul.d/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/secrets.yaml -------------------------------------------------------------------------------- /zuul.d/tox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/tox.yaml -------------------------------------------------------------------------------- /zuul.d/ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/kolla/HEAD/zuul.d/ubuntu.yaml --------------------------------------------------------------------------------