This file is indexed.

/usr/share/tripleo-image-elements/qpidd/README.md is in python-tripleo-image-elements 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Installs Qpid as a substitute for RabbitMQ as the rpc_backend for
various OpenStack services.

To use Qpid, when building an image, add the qpid element and
remove the rabbitmq-server element. At the moment, rabbitmq-server
is listed as default in boot-stack/element-deps.

sed -i "s/rabbitmq-server/qpidd/" $TRIPLEO_ROOT/tripleo-image-elements/elements/boot-stack/element-deps

The configuration files of other services like Heat, Neutron, Nova,
Cinder, and Glance are updated by os-apply-config and os-apply-config
will place the correct configurations for either RabbitMQ or Qpid
depending on what is present in the Heat metadata.

The Heat metadata/templates should be updated to use qpid instead
of rabbitmq. In addition to the password which rabbitmq lists by
default, the username should also be specified for qpid.


For the seed image the default metadata on the file system needs
to be updated. Substitute "rabbit" with "qpid".

sed -i "s/rabbit/qpid/" $TRIPLEO_ROOT/tripleo-image-elements/elements/seed-stack-config/config.json

After including the username, the qpid section should look like
  "qpid": {
    "host": "127.0.0.1",
    "username": "guest",
    "password": "guest"
    }


For the undercloud, update the Heat template by substituting "rabbit:"
with "qpid:".

sed -i "s/rabbit:/qpid:/" $TRIPLEO_ROOT/tripleo-heat-templates/undercloud-vm.yaml

After including the username, the qpid section should look like
   qpid:
     host: 127.0.0.1
     username: guest
     password: guest


For the overcloud, update the Heat template by substituting "rabbit:"
with "qpid:".

sed -i "s/rabbit:/qpid:/" $TRIPLEO_ROOT/tripleo-heat-templates/overcloud.yaml

After including the username, the qpid section(s) should look like
   qpid:
     host:
       Fn::GetAtt:
       - notcompute
       - PrivateIp
     username: guest
     password: guest