a5e56843de
Openstackwatch is configured to store feed data in a swift object store. This patch adds credentials to access that swift store. Change-Id: I61d9032150ae40fb7d207b5861cf0cf448f6feda Reviewed-on: https://review.openstack.org/24784 Reviewed-by: Elizabeth Krumbach <lyz@princessleia.com> Reviewed-by: Jeremy Stanley <fungi@yuggoth.org> Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# -*- Mode: conf -*-
|
|
|
|
[general]
|
|
# only show certain projects (don't forget the openstack/ as start)
|
|
projects = <%= projects.join(", ") %>
|
|
|
|
# The Json URL where is the gerrit system.
|
|
json_url = <%= json_url %>
|
|
|
|
# Allow different mode to output to swift, by default 'combined' will
|
|
# combined all rss in one and 'multiple' will upload all the projects
|
|
# in each rss file.
|
|
mode = <%= mode %>
|
|
|
|
# username to your swift cluster
|
|
[swift]
|
|
# username/tenant for swift with 2.0 or just username with 1.0 (i.e:
|
|
# RAX).
|
|
username = <%= swift_username %>
|
|
|
|
# password or api key
|
|
password = <%= swift_password %>
|
|
|
|
# container to upload (probably want to be public)
|
|
container = <%= container %>
|
|
|
|
# auth_url of the cluster, for Rackspace this is :
|
|
# https://auth.api.rackspacecloud.com/v1.0
|
|
# or Rackspace UK :
|
|
# https://lon.auth.api.rackspacecloud.com/v1.0
|
|
auth_url = <%= swift_auth_url %>
|
|
|
|
# auth version (1.0 for Rackspace clouds, 2.0 for keystone backend clusters)
|
|
auth_version = <%= auth_version %>
|
|
|
|
# the object name where to store the combined rss
|
|
uploaded_file = <%= feed %>
|
|
|
|
# vim: ft=dosini
|