2253 Commits

Author SHA1 Message Date
Drew Walters
0f4958d6f9 Docs: update proxy troubleshooting guide
Currently, the proxy troubleshooting guide does not include the IP
address of the Kubernetes API in the defined environment or Ansible
playbook variables. This causes deployments to fail when requests are
routed through proxy servers. This change adds a proxy configuration
section to the beginning of the installation guide and includes the
process of adding the Kubernetes API IP address to the environment and
Ansible playbook variables. It also removes the unecessary sections from
the troubleshooting guide and upgrades the note about resolv.conf being
overwritten to a warning.

Change-Id: I1ff753517b387027f0cc052b18e8822b638cfb4d
2018-08-08 08:06:40 -05:00
Steve Wilkerson
2840259fb8 Armada check: Add test directive to charts
This adds support for executing helm tests via the armada test
directive. It enables theses tests for all services, except for
nova and neutron as executing tests with armada force a chart to
wait. Forcing nova and neutron to wait effectively sequences the
charts, which will result in a failure to deploy past those
services

Depends-On: https://review.openstack.org/#/c/581148

Change-Id: I6ac845c82d744e2f5fd79c3e2ff3c1479dd1ddab
2018-07-11 13:34:58 +00:00
Zuul
3a48b149c5 Merge "Fix incorrect nova config init script" 2018-07-10 13:27:39 +00:00
Zuul
cbf211f0ff Merge "Docs: Update ceph documentation" 2018-07-10 13:27:37 +00:00
Zuul
7c0ddc1e40 Merge "Ceph: Update charts to use endpoints section for all port lookups" 2018-07-10 13:27:36 +00:00
Zuul
8730276a7b Merge "Revert "Add annotation to allow any file size in ingress"" 2018-07-10 13:27:29 +00:00
Yi Tseng
22965babe4 Fix incorrect nova config init script
nova-console-compute-init.sh and nove_consolt-proxy-init.sh generates
incorrect configuration if there exists multiple IP address on default
interface.

To solve this problem, we pickup first IP address if there exists
multiple IP on that interface.

Change-Id: Iaadd2e71d624122e68fdd628771df21cd61c0784
2018-07-10 12:36:53 +08:00
Pete Birley
1908352847 Ceph: Update charts to use endpoints section for all port lookups
This PS updates the ceph charts to use endpoints for all port
lookups, and also prunes some unused defaults.

Change-Id: I14c8eff3d4d6290dd98e90029abc21a55713d4e5
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-10 01:17:17 +00:00
Zuul
b4abb63298 Merge "Ceph: Split out ceph provsioners from client chart" 2018-07-09 21:02:17 +00:00
Pete Birley
98f8deaa74 Revert "Add annotation to allow any file size in ingress"
This reverts commit 671166e064b794c55d1bcbcf29e61424b9d71d4a.

As it has no impact on the ingress controller we use, and was merged in error.

Change-Id: I9e3a23ffa0e9af8bef9ef54062e55f635e4f376d
2018-07-09 16:25:25 +00:00
Pete Birley
127567d1ab Ceph-RGW: Dont cache keystone tokens to work-round expiry bug
This PS updates the RGW config to not cache keystone tokens to
work round expiry bug: http://tracker.ceph.com/issues/21226

Change-Id: Ice80c2510085215f03ce0977c8a4bff9ddb2f07a
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-09 10:53:22 -05:00
Jean-Philippe Evrard
5b3a7c86b7 Remove typo in the documentation
While YAML allow 4 spaces to define a dict, being consistent
with two spaces provides clarity for the deployer.

Change-Id: Iff2aa15267205a04b58bc0324af5eb26ad937f52
2018-07-09 13:49:14 +02:00
Zuul
87fc03793b Merge "Neutron: check that local ip address is populated on agent startup" 2018-07-07 06:31:58 +00:00
Zuul
02091da7ec Merge "Keystone: it enables keystone notificaitons" 2018-07-06 22:10:28 +00:00
Zuul
332a3da005 Merge "RabbitMQ: It adds HA and ttl policy for notificaitons queues" 2018-07-06 22:10:27 +00:00
Pete Birley
a5e5556e46 Ceph: Split out ceph provsioners from client chart
This PS splits out the ceph provisioners from the client chart
allowing OSH to be used with external (and multiple) cephs more
simply.

Change-Id: I0c5d516c7a9a10bc8435e2423eb1dc05460d2c92
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-06 20:54:19 +00:00
Renis
5a9c8d41b7 Docs: Update ceph documentation
- Adding section for Ceph troubleshoot
- Rearrange Testing section to include Ceph

Co-Authored-By: portdirect <pete@port.direct>

Change-Id: Ib04e9b59fea2557cf6cad177dfcc76390c161e06
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-06 16:01:20 -04:00
Ruslan Khanbikov
826e867d0a Keystone: it enables keystone notificaitons
This patch sets the notifier driver to messagingv2 so all
messages sent to RabbitMQ using the 2.0 format.

For info:
Auth notificaitons are supressed by default, to enable it
uncomment the following parameter:
conf:
  DEFAULT:
    notification_opt_out: ""

Change-Id: I652fc34a229612dcb8b96c8722b8c6ac1c8aba3e
Signed-off-by: Ruslan Khanbikov <rk760n@att.com>
2018-07-06 18:31:55 +00:00
Ruslan Khanbikov
e0ed5d2708 RabbitMQ: It adds HA and ttl policy for notificaitons queues
This patchset introduces mirroring "notificaitons.*" queues messages across
rmq cluster nodes and add ttl expiration time for messages, utilizing
rabbitmq helm-toolkit

the configuration example:

rabbitmq:
  policies:
    - name: "test"
      vhost: "nova"
      definition: ".*"
      definition:
        ha-mode: all
  ...

equals:
 rabbitmqctl set_policies -p nova test ".*" "{"ha-mode":"all"}"
Signed-off-by: Ruslan Khanbikov <rk760n@att.com>

Change-Id: I61215de07cfaeb9d896126ef9abc94fcc9e429b9
Depends-On: I85240a50fb64a4d74454768034fe3bdcf25f3019
2018-07-06 18:31:25 +00:00
Pete Birley
fed9fb3ca3 Neutron: check that local ip address is populated on agent startup
This PS updates the agent init container scripts to ensure that the
local IP address is populated on agent startup.

Change-Id: Ib5857d9dc82b1138a1b5f496ebe46dc1e3f221e7
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-06 17:30:35 +00:00
Pete Birley
640cdc1326 Glance: Update management jobs to fail on incorrect config
This PS updates the glance management jobs to fail on incorrect
configuration, or abnormal interaction between components.

Change-Id: I87eb8f28bfaa93467f2690d8a7f92b062f9d257f
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-06 09:38:41 -05:00
caoyuan
32934d8826 Fix the get-pip.py path
Change-Id: Ica14e6bfcdf82b35fbbb557c24a82041284d4631
2018-07-06 00:09:09 +08:00
Zuul
79128a94fc Merge "Replace deploy jq role name" 2018-07-04 03:15:43 +00:00
Pete Birley
d2434c26bd Gate: Update armada manifests to delete all release jobs on upgrade
This PS updates the armada manifests to delete all jobs for a release
via the `release_group` label. It also extends this to cover charts that
do not currently have jobs contained, to allow simple future expansion
of services.

Change-Id: I28bd9e2c2ebc22ca9c4319970c657298281e28d2
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-03 09:22:38 +00:00
Zuul
db06d2bc3a Merge "Update the path of vars.yaml" 2018-07-03 05:38:29 +00:00
Zuul
a9c8622e55 Merge "Complete the Default values decription" 2018-07-03 02:22:12 +00:00
Zuul
5e67279afe Merge "Update Multinode guide" 2018-07-02 22:16:06 +00:00
Zuul
4d0aa8a6d1 Merge "Gate: use swift for glance in armada gate" 2018-07-02 18:56:15 +00:00
Pete Birley
0bb0cf1b31 Gate: use swift for glance in armada gate
This PS updates the armada gate to use swift.

Change-Id: Ib42aea461415aa298ec7cfb648f3d72de9417742
Signed-off-by: Pete Birley <pete@port.direct>
2018-07-02 13:52:39 +01:00
mattmceuen
a2b8de253c Update Multinode guide
This PS makes some minor updates (links, formatting)
to the Multinode guide and adds some helpful warnings
and notes.

Story: 2002526
Task: 22064
Change-Id: I21a50b7126c2bb1fcd412a8ae713856e9fab4050
2018-07-01 15:51:33 -05:00
Matt McEuen
7ce15f00f4 Fix dev deploy guide vars.yaml reference
This updates the dev deploy guide to point to the new location
of the playbooks vars.yaml.

Change-Id: I5827049cd75ecb13044e85a09cc12090a2c8e9a4
2018-07-01 15:48:50 -05:00
caoyuan
8f4eadcf85 Complete the Default values decription
Change-Id: I4733a72b3c9c4473dd721c39671918bb99562044
2018-06-30 05:25:57 +00:00
caoyuan
c465f5b2b8 Add Copyright information for gnocchi
Change-Id: I17c9ecf944474a1cb84a40e8a36ab03001cf3a29
2018-06-29 23:42:54 +00:00
chenlx
052ac34e38 Replace deploy jq role name
We should replace role name from deploy-yq to deploy-jq.

Depends-On: https://review.openstack.org/578703
Change-Id: I5deb4fecbee9f70e6be63189d4afa81e5c71ad4b
2018-06-28 15:15:24 +08:00
Ruslan Khanbikov
c3b2c944f8 Update fernet keys rotation and expiration
Keystone token expiration, rotation frequency and active keys
values should follow the formula:

max_active_keys = (token_expiration / rotation_frequency) + 2

max_active_keys by default is 3
token expiration set to 43200 (12h)
rotation frequency set to 12 hours

Change-Id: Ia04daec9b2905ef2d3f2d4fbb43557dda220dc70
Signed-off-by: Ruslan Khanbikov <rk760n@att.com>
2018-06-27 17:43:28 -07:00
Pete Birley
25e50a34c6 Nova/Libvirt: mount vm state directories with bidirectional propagation
This PS updates the Nova and Libvirt charts to mount the vm state
directories with bidirectional mount propagation for k8s >= 1.10.
This allows mounts created by some volume drivers to be used, and
unaffected by pod restart.

Change-Id: Idaf664efb23a424dd8d9e1376ea7231b8565e3fe
Signed-off-by: Pete Birley <pete@port.direct>
2018-06-27 04:00:25 +00:00
Zuul
861b6dc1bd Merge "Add cpu_mode in nova.conf" 2018-06-27 03:53:26 +00:00
Pete Birley
7d8ee40dcc Gate: Add glance radosgw/swift backed gate
This PS adds a gate using glance with swift backed by radosgw as the
backend.

Change-Id: Id6d732b56877b0acfbe884bfdca322e8ebe9fef6
2018-06-26 23:59:10 +00:00
Zuul
8dc986740c Merge "Allow overriding some critical postgre parameters" 2018-06-26 23:07:31 +00:00
Zuul
8a5750cbf7 Merge "Neutron: Ensure agent processes are reaped" 2018-06-26 23:07:30 +00:00
Zuul
738fd85d65 Merge "Glance: move to use swift backend by default" 2018-06-26 19:24:49 +00:00
Alan Meadows
468d99620f Allow overriding some critical postgre parameters
Ideally, this would completely own the postgresql.conf file that
is autogenerated by the container.  This should not be done without
further deliberation though on what impact that may have. For now,
this allows some critical items to be manipulated at installation
time but does not meet the full need of complete configuration
flexibility.

Change-Id: I94fd3ac42398f8114c0b5c8b4ef0a6a96e530f96
2018-06-26 12:05:40 -07:00
Pete Birley
e0f076b658 Neutron: Ensure agent processes are reaped
This PS moves the neutron agents to run as child processes of either
the pause container or use the hosts init system (for k8s <1.10)
to prevent defunct process sprawl.

Change-Id: I3392bdc957144c1aa83314583d57183d35279336
Co-Authored-By: Hyunsun Moon <hyunsun.moon@gmail.com>
Signed-off-by: Pete Birley <pete@port.direct>
2018-06-26 18:26:00 +00:00
Zuul
e8f561127f Merge "Add logging.conf files to enabled loggers/handlers/formatters" 2018-06-26 18:02:54 +00:00
Pete Birley
50dc6b1118 Glance: move to use swift backend by default
This PS moves to use the swift backend for glance by default, which
in the case of OSH is currently served by keystone auth'd radosgw.

This change moves the chart to be inline with the current gates, and
deployments - which have been using swift by default for some time.

Change-Id: Ia9c954ae2bd833e7f449bfdf7c51f8df5c78ba57
Signed-off-by: Pete Birley <pete@port.direct>
2018-06-26 15:55:31 +00:00
Zuul
04648d5102 Merge "Ingress: Add initial TLS Support for core service public endpoints" 2018-06-26 15:00:03 +00:00
Steve Wilkerson
da7bc575ec Add logging.conf files to enabled loggers/handlers/formatters
This introduces a mechanism for generating the logging.conf
file for the openstack services via the values. This allows us to
define loggers, handlers, and formatters for the services and the
modules they're composed of.

This also allows us to take advantage of the oslo fluent handler
and formatter. The fluent handler and formatter give us the
following benefits: sending logs directly to fluentd instead of
routed to stdout/stderr and then through fluentbit to fluentd,
project specific tags on the logged events (enables us to define
more robust filters in fluentd for aggregation if required),
full traceback support, and additional metadata (modules that
created logged event, etc)

Depends-On: https://review.openstack.org/577796

Change-Id: I63340ce6b03191d93a74d9ac6947f0b49b8a1a39
2018-06-26 09:51:14 -05:00
Zuul
fe4275d151 Merge "Horizon: Update horizon to use internal endpoint by default" 2018-06-26 12:04:02 +00:00
Zuul
3d017a39aa Merge "Glance: Update storage init job to use internal endpoint by default" 2018-06-26 12:04:01 +00:00
Zuul
8b05de0147 Merge "Ironic: Fix gate deployment" 2018-06-26 10:40:42 +00:00