- Aug 13, 2018
-
-
Cong Ha Minh authored
Disable neutron-lbaas-agent and use lbaasv2-proxy when enable octavia. Use keystone-auth v3 and internal endpoint for lbaasv2 plugin. Change-Id: I69e8436f3722cf99644457323b71b94dc9036bb9 Co-Authored-By:
Hieu LE <hieulq2@viettel.com.vn> Closes-Bug: #1756771 Closes-Bug: #1738115
-
- Aug 10, 2018
-
-
wu.chunyang authored
shara_api need auth_url arguments in keystone_authtoken group. follow the configure document[0], the auth_url should under trustee group. but the keystone use default "keystone_authtoken " group to authenticate,if we wanna use trustee group to authenticate, we need add "auth_section=trustee" under keystone_authtoken group ,when add this , the trustee group also need auth_type which sahara have not register into oslo_config.when add to register,the username may hardcode[1],so i think the best way to reslove this problem is to add auth_url under keystone_authtoken [0]https://docs.openstack.org/sahara/latest/configuration/descriptionconfig.html [1]https://github.com/openstack/sahara/blob/d60a3b152b4ff3ba48cb9199eac1aad8e182f6e1/sahara/utils/openstack/keystone.py#L41 Change-Id: I7e94cf56fa38f01e2b3d93303f8192cb66ba76ab
-
wu.chunyang authored
fix monasca api warning,the new config file name is api.conf Change-Id: Iabfbeab45d4e16602781d5fdf1ff0b2b67168d77 Closes-Bug: #1784656
-
- Aug 09, 2018
-
-
Eduardo Gonzalez authored
Tacker is failing registering VIM monitoring into mistral because the v3 in the auth url. The auth url is being used auth_url + '/v3' in the code, ending in a http://url:35357/v3/v3 https://github.com/openstack/tacker/blob/210d8f93bb5e7e179bff176d98d3079ab7f33ca0/tacker/nfvo/nfvo_plugin.py#L93 Change-Id: If5abbee1377ecdb2913a42bdfa77e7fbbfbe9367
-
Eduardo Gonzalez authored
Missing the module name in the examples. Change-Id: I7a60f92bd163688401ab5dd0f6cc9464ae934356
-
- Aug 08, 2018
-
-
Farid Da Encarnacao authored
If we are not using l3 ha mode, it’s not necessary to delete the namespaces related to l3. It will speed up the start of the neutron l3 agent. Change-Id: I78f6d927a78e8f9e4ed855e4b6d1362bdfc6b985 Closes-Bug: #1785880
-
Xinliang Liu authored
ResellerAdmin role is used to give users object storage administration role in their projects. It is required to pass object storage quotas tests[1] of DefCore (OpenStack Powered) certification test suite. [1] tempest.api.object_storage.test_account_quotas* Related-Bug: #1700729 Change-Id: Id976827aa7da271e54b77476f175f06bd1a00cc8
-
- Aug 07, 2018
-
-
ZhongShengping authored
Option auth_uri from group keystone_authtoken is deprecated[1]. Use option www_authenticate_uri from group keystone_authtoken. [1]https://review.openstack.org/#/c/508522/ Co-Authored-By:
confi-surya <singh.surya64mnnit@gmail.com> Change-Id: Ifd8527d404f1df807ae8196eac2b3849911ddc26 Closes-Bug: #1761907
-
- Aug 06, 2018
-
-
Mark Goddard authored
The variable 'ironic_dnsmasq_interface' is used to configure the interface used by the ironic inspector dnsmasq service for DHCP on the inspection network. It is being used correctly in inspector.conf, but not in the dnsmasq configuration file, which uses api_interface. This change modifies the dnsmasq configuration file to also use ironic_dnsmasq_interface. Change-Id: I7670544f4bc41c93ac1d081486502f9ffb8f2286 Closes-Bug: #1785574
-
- Aug 03, 2018
-
-
Mark Goddard authored
If the index already exists, kibana will respond with a 400 error. This is required to support reconfigure and upgrade of kibana. Change-Id: Ieee6d636fe81692dffb886f917b8398df10a525f
-
Kevin Tibi authored
Change the path for kibana binary and add upgrade tasks for elasticsearch [1]. [1] https://www.elastic.co/guide/en/elasticsearch/reference/5.0/restart-upgrade.html Depends-On: I8ed60eab2c15ae966960bcbeadb7aa25fece83a5 Change-Id: I9f566c0cb808c905736cc4090539672863260ad5 Implements: bp-elasticsearch-upgrade
-
Will Miller authored
Ironic requires the Keystone credentials to communicate with Cinder if booting from volume. Change-Id: Id9a90d986e391e84c8ad918af371a5aef33a3524 Closes-Bug: #1785201
-
Will Szumski authored
This allows you to append additional kernel parameters to the kernel used for inspection. Change-Id: Ibc851145a3ffdaaad526ef999c8f024bd222dd5b
-
caoyuan authored
since we use chrony container to adjust time by default, we no need to enable ntp service, this ps to disable it. Change-Id: I2f1fd9269c9f8cfd0c98e0e903ba69de692473a0
-
caoyuan authored
and ps to make the port configurable Change-Id: I919767469087b9579e3d2f0965df835e7b71c327
-
- Aug 02, 2018
-
-
Will Miller authored
The variable `cinder_iscsi_helper` is used not only in the `cinder` role, but also in the `iscsi` role. It needs to have a default accessible for both roles. Change-Id: I33d7f2c7b5597a541a0d104c76520ac4a1cd5026 Closes-Bug: #1785066
-
Mark Goddard authored
The Bifrost CI job seems quite unstable, often failing while attempting to reach the public epel package repositories. We shouldn't need to install any packages when deploying the container - they should all have been installed in the image already. This change avoids running the scripts/env-setup.sh script, which is run when the container image is built. It also removes sourcing of /opt/stack/ansible/hacking/env-setup, which is now just a stub. Change-Id: I1786e5337a397cb7b427d6b87c21eaee600af170
-
Michal Nasiadka authored
Change-Id: I12f7244aa91ccd7e287320e7edb09e0d04c01017
-
Xinliang Liu authored
Currently test_list_containers tempest tests[1] would be failed. It is becuase accept-ranges header does not exist. See ceph bug[2]. Rgw_swift_enforce_content_length assures Content-Length and Accept-Ranges in dynamically generated account & container listings. [1] tempest.api.object_storage.test_account_services.AccountTest.test_list_containers [2] http://tracker.ceph.com/issues/21554 Related-Bug: #1783456 Change-Id: I9b5fcc361f0bc0e521302d2df1974aabf6f4a7e7
-
wu.chunyang authored
the memcache_servers has Deprecated ,and auth_uri is marked deprecated . and these will cause aodh containers warning refer to [0] [0]https://docs.openstack.org/aodh/latest/configuration/aodh-config-file.html Change-Id: I0c1eed6707fd85ace6b2bdddec600e5adee3a4de
-
- Aug 01, 2018
-
-
Hongbin Lu authored
Kolla is using Docker API version 1.24 but the default is 1.26 in Zun. We need to configure it to 1.24 so that Zun and Kolla can work together. Partial-Bug: #1782055 Change-Id: I072dccc06fe35dccf25068ef0ca8f39cad9fdc60
-
- Jul 31, 2018
-
-
Eduardo Gonzalez authored
Ceilometer image filter was incorrectly used. Thr filter should be in the volume list instead. Change-Id: I3ad8a1d85607004b28f9a25b9a4e9f8b914ae9df Closes-Bug: #1784496
-
Eduardo Gonzalez authored
Change-Id: Ibb7d6981d9d7fed2293af6533e54fb9c768cace6 Closes-Bug: #1784497
-
- Jul 30, 2018
-
-
Xinliang Liu authored
Object versioning test[1] is required for RefStack test suite. Swift has enabled it by default[2]. It is also needed for ceph-rgw. [1] tempest.api.object_storage.test_object_version.ContainerTest.test_versioned_container [2] https://review.openstack.org/#/c/517281/ Related-Bug: #1729583 Change-Id: If89636f77d87bab75e8e7bcf16cc784e83184bc6
-
caoyuan authored
the include_tasks is the new feature in version 2.4[0], and kolla use it[1], the ansible_version_min should be updated to version 2.4 [0]: https://docs.ansible.com/ansible/2.4/include_tasks_module.html [1]: https://review.openstack.org/#/c/584728/ Change-Id: I273ac9e8295bfe3fb97af620c1e48e9fbbf06c6e
-
- Jul 27, 2018
-
-
wu.chunyang authored
last patch have replaced include by include_tasks, but here have a omission Change-Id: Ibfe2918eb5504bb5355489ab093200feb1d221d7
-
- Jul 26, 2018
-
-
Lakshmi Prasanna Goutham Pratapa authored
This commit is to apply resource-constraints to a few more OpenStack services. Commit to apply constraints to the last set of services will be made in the upcoming commit. Depends-on: Icafa54baca24d2de64238222a5677b9d8b90e2aa Change-Id: I39004f54281f97d53dfa4b1dbcf248650ad6f186
-
Doug Szumski authored
Perform the refactoring of the auth field from change #552863 TrivialFix Partially-Implements: blueprint monasca-roles Change-Id: I0a87cc3cb40df5e1c927bcd8ff4bd33e44fe4172
-
Mark Goddard authored
Ironic Neutron Agent was added by I92b9505843f12692aef96764a314e5db49001a9b. Change-Id: Ib178bafc9907537fdd46dd374684b037db7f19df TrivialFix
-
- Jul 25, 2018
-
-
Mark Goddard authored
The include_tasks action was added in ansible 2.4. Change-Id: Ieac4a39a95c6aa55754c9dde5e94fb293c103caa Related-Bug: #1783456
-
Mark Goddard authored
This is configured via the ironic_dnsmasq_default_gateway variable, and is not set by default. Change-Id: I4deea65876d0852ba2b48a8cf9bad94f4df2a18d
-
Lakshmi Prasanna Goutham Pratapa authored
This commit is to apply resource-constraints only to few OpenStack services. Commit to apply constraints to other services will be made in coming commits. Partially-Implements: blueprint resource-constraints Change-Id: Icafa54baca24d2de64238222a5677b9d8b90e2aa
-
Jeffrey Zhang authored
include is marked as deprecated since ansible 2.4[0] [0] https://docs.ansible.com/ansible/2.4/include_module.html#deprecated Co-Authored-By:
confi-surya <singh.surya64mnnit@gmail.com> Change-Id: Ic9d71e1865d1c728890625aeddf424a5734c0a8a
-
Vladislav Belogrudov authored
When using lioadm / targetcli to serve LVM volumes to instances the former saves target configuration under /etc/target. If cinder_volume container is upgraded / replaced then all targets are gone and instances cannot connect to their volumes any longer. This fix introduces target_config volume where corresponding information is persisted. Change-Id: I919bbe00853266037dd5c015810cc13c25e2e033 Closes-Bug: #1783569
-
wu.chunyang authored
module_name is required for kolla_toolbox,but this module does not check this argument. Change-Id: Iae256c0690b408a040b4e0b079525d3dab917e90
-
tone.zhang authored
By default ceph-rgw is not completely comaptible with Swift API, because of the restriction for Swift INFO API.[0] The patch improve ceph-rgw compatibility with Swift API. It is controlled by the option "ceph_rgw_compatibility" in ansible/group_vars/all.yml. After changing the option, run the "reconfigure" command to enable. Closes-Bug: #1783456 [0] https://github.com/ceph/ceph/pull/17967 Change-Id: Ibf3eb52280e197965caef08a44ae226c4f884cb5 Signed-off-by:
tone.zhang <tone.zhang@arm.com>
-
wu.chunyang authored
freezer's deploy.yml do not have when condition,here to add it. Change-Id: Id275a5eb746783694248a6db5b7f3ee7b8b3b8c5
-
- Jul 23, 2018
-
-
Will Miller authored
Partially-Implements: blueprint networking-baremetal Change-Id: I92b9505843f12692aef96764a314e5db49001a9b
-
Lakshmi Prasanna Goutham Pratapa authored
This commit is the final commit to apply resource-constraints to all OpenStack services. Depends-on: I39004f54281f97d53dfa4b1dbcf248650ad6f186 Change-Id: I072d69be9698be54775cb0ae286ea2b6ed78776c Implements: blueprint resource-constraints
-
Mark Goddard authored
Fixes a typo introduced in I93e53bad9727beb786b00bd7fcd6d78785c619c2. Change-Id: I9fd6587913cccd5a29b3fc012b4ddeac8859a0ff Related-Bug: #1782799 TrivialFix
-