Skip to content

Commit

Permalink
Prepare new release
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarolopez committed Feb 5, 2021
1 parent 80870b6 commit 2ed02cc
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 3 deletions.
84 changes: 82 additions & 2 deletions etc/caso/caso.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
#

# List of messengers that will dispatch records. valid values are
# ssm,logstash,noop. You can specify more than one messenger. (list value)
# ssmv4,ssm,noop,logstash,ssmv2. You can specify more than one messenger. (list
# value)
#messengers = noop

# Spool directory. (string value)
Expand Down Expand Up @@ -62,10 +63,29 @@
# Which extractor to use for getting the data. If you do not specify anything,
# nova will be used. (string value)
# Possible values:
# ceilometer - <No description provided>
# nova - <No description provided>
#extractor = nova

#
# From oslo.config
#

# Path to a config file to use. Multiple config files can be specified, with
# values in later files taking precedence. Defaults to %(default)s. This option
# must be set from the command-line. (unknown value)
#config_file = ['~/.project/project.conf', '~/project.conf', '/etc/project/project.conf', '/etc/project.conf']

# Path to a config directory to pull `*.conf` files from. This file set is
# sorted, so as to provide a predictable parse order if individual options are
# over-ridden. The set is parsed after the file(s) specified via previous
# --config-file, arguments hence over-ridden options in the directory take
# precedence. This option must be set from the command-line. (list value)
#config_dir = ~/.project/project.conf.d/,~/project.conf.d/,/etc/project/project.conf.d/,/etc/project.conf.d/

# Lists configuration groups that provide more details for accessing
# configuration settings from locations other than local files. (list value)
#config_source =

#
# From oslo.log
#
Expand Down Expand Up @@ -320,6 +340,66 @@
#port = 5000


[sample_remote_file_source]
# Example of using a remote_file source
#
# remote_file: A backend driver for remote files served through http[s].
#
# Required options:
# - uri: URI containing the file location.
#
# Non-required options:
# - ca_path: The path to a CA_BUNDLE file or directory with
# certificates of trusted CAs.
#
# - client_cert: Client side certificate, as a single file path
# containing either the certificate only or the
# private key and the certificate.
#
# - client_key: Client side private key, in case client_cert is
# specified but does not includes the private key.

#
# From oslo.config
#

# The name of the driver that can load this configuration source. (string
# value)
#
# This option has a sample default set, which means that
# its actual default value may vary from the one documented
# below.
#driver = remote_file

# Required option with the URI of the extra configuration file's location. (uri
# value)
#
# This option has a sample default set, which means that
# its actual default value may vary from the one documented
# below.
#uri = https://example.com/my-configuration.ini

# The path to a CA_BUNDLE file or directory with certificates of trusted CAs.
# (string value)
#
# This option has a sample default set, which means that
# its actual default value may vary from the one documented
# below.
#ca_path = /etc/ca-certificates

# Client side certificate, as a single file path containing either the
# certificate only or the private key and the certificate. (string value)
#
# This option has a sample default set, which means that
# its actual default value may vary from the one documented
# below.
#client_cert = /etc/ca-certificates/service-client-keystore

# Client side private key, in case client_cert is specified but does not
# includes the private key. (string value)
#client_key = <None>


[ssm]

#
Expand Down
7 changes: 7 additions & 0 deletions releasenotes/notes/refactor-extractor-e826c64087e17065.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
prelude: >
This version includes a refactoring of the base extractors, dropping support
for the ceilometer extractor that was unmaintained for a long period of time.
upgrade:
- |
Ceilometer extractor is no longer supported.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ envdir = {toxworkdir}/shared
commands = python3 setup.py check -r -s -m

[testenv:genconfig]
commands = oslo-config-generator --config-file=etc/caso-config-generator.conf
commands = oslo-config-generator --config-file=etc/caso/caso-config-generator.conf

[testenv:docs]
commands =
Expand Down

0 comments on commit 2ed02cc

Please sign in to comment.