[pre-commit] Add initial pre-commit config
This change adds configuration for the pre-commit tool, follow-up changes will address the remaining issues in a phased approach to make the reviews simpler. This is based on the pre-commit config used in nova with some additional hooks. Follow-up changes will address the FIXME comments related to sphinx-lint and codespell, as well as update tox to enforce these checks in ci. Change-Id: I87681a19f7fa88366c2b0d310c8b3153aa6a137b
This commit is contained in:
parent
0f96f99404
commit
9d8b990fd1
60
.pre-commit-config.yaml
Normal file
60
.pre-commit-config.yaml
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
---
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v5.0.0
|
||||||
|
hooks:
|
||||||
|
# whitespace
|
||||||
|
- id: trailing-whitespace
|
||||||
|
- id: mixed-line-ending
|
||||||
|
args: ['--fix', 'lf']
|
||||||
|
exclude: '.*\.(svg)$'
|
||||||
|
- id: check-byte-order-marker
|
||||||
|
# file format and permissions
|
||||||
|
- id: check-ast
|
||||||
|
- id: debug-statements
|
||||||
|
- id: check-json
|
||||||
|
files: .*\.json$
|
||||||
|
- id: check-yaml
|
||||||
|
files: .*\.(yaml|yml)$
|
||||||
|
# FIXME(sean-k-mooney): we currently have some files
|
||||||
|
# with incorrect permission, resolve this in a follow up
|
||||||
|
# - id: check-executables-have-shebangs
|
||||||
|
# - id: check-shebang-scripts-are-executable
|
||||||
|
# git
|
||||||
|
- id: check-added-large-files
|
||||||
|
- id: check-case-conflict
|
||||||
|
- id: detect-private-key
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
||||||
|
rev: v1.5.5
|
||||||
|
hooks:
|
||||||
|
- id: remove-tabs
|
||||||
|
exclude: '.*\.(svg)$'
|
||||||
|
- repo: https://opendev.org/openstack/hacking
|
||||||
|
rev: 7.0.0
|
||||||
|
hooks:
|
||||||
|
- id: hacking
|
||||||
|
additional_dependencies: []
|
||||||
|
exclude: '^(doc|releasenotes|tools)/.*$'
|
||||||
|
- repo: https://github.com/hhatto/autopep8
|
||||||
|
rev: v2.3.1
|
||||||
|
hooks:
|
||||||
|
- id: autopep8
|
||||||
|
files: '^.*\.py$'
|
||||||
|
# FIXME(sean-k-mooney): we have many typos and some false
|
||||||
|
# positives that need to be added to the dictionary
|
||||||
|
# correct this in a followup change
|
||||||
|
# - repo: https://github.com/codespell-project/codespell
|
||||||
|
# rev: v2.3.0
|
||||||
|
# hooks:
|
||||||
|
# - id: codespell
|
||||||
|
# args: ['--ignore-words=doc/dictionary.txt']
|
||||||
|
# FIXME(sean-k-mooney): we have many sphinx issues fix them
|
||||||
|
# in a separate commit to make it easier to review
|
||||||
|
# - repo: https://github.com/sphinx-contrib/sphinx-lint
|
||||||
|
# rev: v1.0.0
|
||||||
|
# hooks:
|
||||||
|
# - id: sphinx-lint
|
||||||
|
# args: [--enable=default-role]
|
||||||
|
# files: ^doc/|releasenotes|api-guide
|
||||||
|
# types: [rst]
|
@ -30,7 +30,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"auto_trigger": false,
|
"auto_trigger": false,
|
||||||
"force": false,
|
"force": false,
|
||||||
"uuid": "65a5da84-5819-4aea-8278-a28d2b489028",
|
"uuid": "65a5da84-5819-4aea-8278-a28d2b489028",
|
||||||
"goal_name": "workload_balancing",
|
"goal_name": "workload_balancing",
|
||||||
"scope": [],
|
"scope": [],
|
||||||
|
@ -13,9 +13,9 @@
|
|||||||
"node_vcpu_ratio": "16.0",
|
"node_vcpu_ratio": "16.0",
|
||||||
"node_memory": "16383",
|
"node_memory": "16383",
|
||||||
"node_memory_ratio": "1.5",
|
"node_memory_ratio": "1.5",
|
||||||
"node_disk": "37"
|
"node_disk": "37",
|
||||||
"node_disk_ratio": "1.0",
|
"node_disk_ratio": "1.0",
|
||||||
"node_state": "up",
|
"node_state": "up"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"server_uuid": "e2cb5f6f-fa1d-4ba2-be1e-0bf02fa86ba4",
|
"server_uuid": "e2cb5f6f-fa1d-4ba2-be1e-0bf02fa86ba4",
|
||||||
@ -30,9 +30,9 @@
|
|||||||
"node_vcpu_ratio": "16.0",
|
"node_vcpu_ratio": "16.0",
|
||||||
"node_memory": "16383",
|
"node_memory": "16383",
|
||||||
"node_memory_ratio": "1.5",
|
"node_memory_ratio": "1.5",
|
||||||
"node_disk": "37"
|
"node_disk": "37",
|
||||||
"node_disk_ratio": "1.0",
|
"node_disk_ratio": "1.0",
|
||||||
"node_state": "up",
|
"node_state": "up"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
0
doc/dictionary.txt
Normal file
0
doc/dictionary.txt
Normal file
@ -115,7 +115,7 @@ html_theme = 'openstackdocs'
|
|||||||
htmlhelp_basename = '%sdoc' % project
|
htmlhelp_basename = '%sdoc' % project
|
||||||
|
|
||||||
|
|
||||||
#openstackdocstheme options
|
# openstackdocstheme options
|
||||||
openstackdocs_repo_name = 'openstack/watcher'
|
openstackdocs_repo_name = 'openstack/watcher'
|
||||||
openstackdocs_pdf_link = True
|
openstackdocs_pdf_link = True
|
||||||
openstackdocs_auto_name = False
|
openstackdocs_auto_name = False
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- Check the creation time of the action plan,
|
- Check the creation time of the action plan,
|
||||||
and set its state to SUPERSEDED if it has expired.
|
and set its state to SUPERSEDED if it has expired.
|
||||||
|
@ -28,12 +28,12 @@ import sys
|
|||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# If extensions (or modules to document with autodoc) are in another directory,
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
# add these directories to sys.path here. If the directory is relative to the
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||||
#sys.path.insert(0, os.path.abspath('.'))
|
# sys.path.insert(0, os.path.abspath('.'))
|
||||||
|
|
||||||
# -- General configuration ----------------------------------------------------
|
# -- General configuration ----------------------------------------------------
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
# If your documentation needs a minimal Sphinx version, state it here.
|
||||||
#needs_sphinx = '1.0'
|
# needs_sphinx = '1.0'
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be
|
# Add any Sphinx extension module names here, as strings. They can be
|
||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
||||||
@ -47,7 +47,7 @@ templates_path = ['_templates']
|
|||||||
source_suffix = '.rst'
|
source_suffix = '.rst'
|
||||||
|
|
||||||
# The encoding of source files.
|
# The encoding of source files.
|
||||||
#source_encoding = 'utf-8-sig'
|
# source_encoding = 'utf-8-sig'
|
||||||
|
|
||||||
# The master toctree document.
|
# The master toctree document.
|
||||||
master_doc = 'index'
|
master_doc = 'index'
|
||||||
@ -63,37 +63,37 @@ release = ''
|
|||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
#language = None
|
# language = None
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
# There are two options for replacing |today|: either, you set today to some
|
||||||
# non-false value, then it is used:
|
# non-false value, then it is used:
|
||||||
#today = ''
|
# today = ''
|
||||||
# Else, today_fmt is used as the format for a strftime call.
|
# Else, today_fmt is used as the format for a strftime call.
|
||||||
#today_fmt = '%B %d, %Y'
|
# today_fmt = '%B %d, %Y'
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
exclude_patterns = ['_build']
|
exclude_patterns = ['_build']
|
||||||
|
|
||||||
# The reST default role (used for this markup: `text`) to use for all documents
|
# The reST default role (used for this markup: `text`) to use for all documents
|
||||||
#default_role = None
|
# default_role = None
|
||||||
|
|
||||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||||
#add_function_parentheses = True
|
# add_function_parentheses = True
|
||||||
|
|
||||||
# If true, the current module name will be prepended to all description
|
# If true, the current module name will be prepended to all description
|
||||||
# unit titles (such as .. function::).
|
# unit titles (such as .. function::).
|
||||||
#add_module_names = True
|
# add_module_names = True
|
||||||
|
|
||||||
# If true, sectionauthor and moduleauthor directives will be shown in the
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
||||||
# output. They are ignored by default.
|
# output. They are ignored by default.
|
||||||
#show_authors = False
|
# show_authors = False
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
# The name of the Pygments (syntax highlighting) style to use.
|
||||||
pygments_style = 'native'
|
pygments_style = 'native'
|
||||||
|
|
||||||
# A list of ignored prefixes for module index sorting.
|
# A list of ignored prefixes for module index sorting.
|
||||||
#modindex_common_prefix = []
|
# modindex_common_prefix = []
|
||||||
|
|
||||||
# openstackdocstheme options
|
# openstackdocstheme options
|
||||||
openstackdocs_repo_name = 'openstack/watcher'
|
openstackdocs_repo_name = 'openstack/watcher'
|
||||||
@ -109,26 +109,26 @@ html_theme = 'openstackdocs'
|
|||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
# Theme options are theme-specific and customize the look and feel of a theme
|
||||||
# further. For a list of options available for each theme, see the
|
# further. For a list of options available for each theme, see the
|
||||||
# documentation.
|
# documentation.
|
||||||
#html_theme_options = {}
|
# html_theme_options = {}
|
||||||
|
|
||||||
# Add any paths that contain custom themes here, relative to this directory.
|
# Add any paths that contain custom themes here, relative to this directory.
|
||||||
#html_theme_path = []
|
# html_theme_path = []
|
||||||
|
|
||||||
# The name for this set of Sphinx documents. If None, it defaults to
|
# The name for this set of Sphinx documents. If None, it defaults to
|
||||||
# "<project> v<release> documentation".
|
# "<project> v<release> documentation".
|
||||||
#html_title = None
|
# html_title = None
|
||||||
|
|
||||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
||||||
#html_short_title = None
|
# html_short_title = None
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top
|
# The name of an image file (relative to this directory) to place at the top
|
||||||
# of the sidebar.
|
# of the sidebar.
|
||||||
#html_logo = None
|
# html_logo = None
|
||||||
|
|
||||||
# The name of an image file (within the static path) to use as favicon of the
|
# The name of an image file (within the static path) to use as favicon of the
|
||||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
||||||
# pixels large.
|
# pixels large.
|
||||||
#html_favicon = None
|
# html_favicon = None
|
||||||
|
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
# Add any paths that contain custom static files (such as style sheets) here,
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
# relative to this directory. They are copied after the builtin static files,
|
||||||
@ -137,44 +137,44 @@ html_static_path = ['_static']
|
|||||||
|
|
||||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||||
# using the given strftime format.
|
# using the given strftime format.
|
||||||
#html_last_updated_fmt = '%b %d, %Y'
|
# html_last_updated_fmt = '%b %d, %Y'
|
||||||
|
|
||||||
# If true, SmartyPants will be used to convert quotes and dashes to
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
||||||
# typographically correct entities.
|
# typographically correct entities.
|
||||||
#html_use_smartypants = True
|
# html_use_smartypants = True
|
||||||
|
|
||||||
# Custom sidebar templates, maps document names to template names.
|
# Custom sidebar templates, maps document names to template names.
|
||||||
#html_sidebars = {}
|
# html_sidebars = {}
|
||||||
|
|
||||||
# Additional templates that should be rendered to pages, maps page names to
|
# Additional templates that should be rendered to pages, maps page names to
|
||||||
# template names.
|
# template names.
|
||||||
#html_additional_pages = {}
|
# html_additional_pages = {}
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#html_domain_indices = True
|
# html_domain_indices = True
|
||||||
|
|
||||||
# If false, no index is generated.
|
# If false, no index is generated.
|
||||||
#html_use_index = True
|
# html_use_index = True
|
||||||
|
|
||||||
# If true, the index is split into individual pages for each letter.
|
# If true, the index is split into individual pages for each letter.
|
||||||
#html_split_index = False
|
# html_split_index = False
|
||||||
|
|
||||||
# If true, links to the reST sources are added to the pages.
|
# If true, links to the reST sources are added to the pages.
|
||||||
#html_show_sourcelink = True
|
# html_show_sourcelink = True
|
||||||
|
|
||||||
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
||||||
#html_show_sphinx = True
|
# html_show_sphinx = True
|
||||||
|
|
||||||
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
||||||
#html_show_copyright = True
|
# html_show_copyright = True
|
||||||
|
|
||||||
# If true, an OpenSearch description file will be output, and all pages will
|
# If true, an OpenSearch description file will be output, and all pages will
|
||||||
# contain a <link> tag referring to it. The value of this option must be the
|
# contain a <link> tag referring to it. The value of this option must be the
|
||||||
# base URL from which the finished HTML is served.
|
# base URL from which the finished HTML is served.
|
||||||
#html_use_opensearch = ''
|
# html_use_opensearch = ''
|
||||||
|
|
||||||
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
||||||
#html_file_suffix = None
|
# html_file_suffix = None
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
# Output file base name for HTML help builder.
|
||||||
htmlhelp_basename = 'watcherdoc'
|
htmlhelp_basename = 'watcherdoc'
|
||||||
@ -183,42 +183,42 @@ htmlhelp_basename = 'watcherdoc'
|
|||||||
# -- Options for LaTeX output -------------------------------------------------
|
# -- Options for LaTeX output -------------------------------------------------
|
||||||
|
|
||||||
latex_elements = {
|
latex_elements = {
|
||||||
# The paper size ('letterpaper' or 'a4paper').
|
# The paper size ('letterpaper' or 'a4paper').
|
||||||
#'papersize': 'letterpaper',
|
# 'papersize': 'letterpaper',
|
||||||
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
# The font size ('10pt', '11pt' or '12pt').
|
||||||
#'pointsize': '10pt',
|
# 'pointsize': '10pt',
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
# Additional stuff for the LaTeX preamble.
|
||||||
#'preamble': '',
|
# 'preamble': '',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
# Grouping the document tree into LaTeX files. List of tuples
|
||||||
# (source start file, target name, title, author, documentclass [howto/manual])
|
# (source start file, target name, title, author, documentclass [howto/manual])
|
||||||
latex_documents = [
|
latex_documents = [
|
||||||
('index', 'watcher.tex', 'Watcher Documentation',
|
('index', 'watcher.tex', 'Watcher Documentation',
|
||||||
'Watcher developers', 'manual'),
|
'Watcher developers', 'manual'),
|
||||||
]
|
]
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top of
|
# The name of an image file (relative to this directory) to place at the top of
|
||||||
# the title page.
|
# the title page.
|
||||||
#latex_logo = None
|
# latex_logo = None
|
||||||
|
|
||||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
||||||
# not chapters.
|
# not chapters.
|
||||||
#latex_use_parts = False
|
# latex_use_parts = False
|
||||||
|
|
||||||
# If true, show page references after internal links.
|
# If true, show page references after internal links.
|
||||||
#latex_show_pagerefs = False
|
# latex_show_pagerefs = False
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
# If true, show URL addresses after external links.
|
||||||
#latex_show_urls = False
|
# latex_show_urls = False
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
#latex_appendices = []
|
# latex_appendices = []
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#latex_domain_indices = True
|
# latex_domain_indices = True
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output -------------------------------------------
|
# -- Options for manual page output -------------------------------------------
|
||||||
@ -231,7 +231,7 @@ man_pages = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
# If true, show URL addresses after external links.
|
||||||
#man_show_urls = False
|
# man_show_urls = False
|
||||||
|
|
||||||
|
|
||||||
# -- Options for Texinfo output -----------------------------------------------
|
# -- Options for Texinfo output -----------------------------------------------
|
||||||
@ -240,19 +240,19 @@ man_pages = [
|
|||||||
# (source start file, target name, title, author,
|
# (source start file, target name, title, author,
|
||||||
# dir menu entry, description, category)
|
# dir menu entry, description, category)
|
||||||
texinfo_documents = [
|
texinfo_documents = [
|
||||||
('index', 'watcher', 'Watcher Documentation',
|
('index', 'watcher', 'Watcher Documentation',
|
||||||
'Watcher developers', 'watcher', 'One line description of project.',
|
'Watcher developers', 'watcher', 'One line description of project.',
|
||||||
'Miscellaneous'),
|
'Miscellaneous'),
|
||||||
]
|
]
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
# Documents to append as an appendix to all manuals.
|
||||||
#texinfo_appendices = []
|
# texinfo_appendices = []
|
||||||
|
|
||||||
# If false, no module index is generated.
|
# If false, no module index is generated.
|
||||||
#texinfo_domain_indices = True
|
# texinfo_domain_indices = True
|
||||||
|
|
||||||
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
||||||
#texinfo_show_urls = 'footnote'
|
# texinfo_show_urls = 'footnote'
|
||||||
|
|
||||||
# -- Options for Internationalization output ------------------------------
|
# -- Options for Internationalization output ------------------------------
|
||||||
locale_dirs = ['locale/']
|
locale_dirs = ['locale/']
|
||||||
|
@ -229,6 +229,7 @@ class ActionCollection(collection.Collection):
|
|||||||
|
|
||||||
class ActionsController(rest.RestController):
|
class ActionsController(rest.RestController):
|
||||||
"""REST controller for Actions."""
|
"""REST controller for Actions."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ActionsController, self).__init__()
|
super(ActionsController, self).__init__()
|
||||||
|
|
||||||
|
@ -468,6 +468,7 @@ class AuditCollection(collection.Collection):
|
|||||||
|
|
||||||
class AuditsController(rest.RestController):
|
class AuditsController(rest.RestController):
|
||||||
"""REST controller for Audits."""
|
"""REST controller for Audits."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(AuditsController, self).__init__()
|
super(AuditsController, self).__init__()
|
||||||
self.dc_client = rpcapi.DecisionEngineAPI()
|
self.dc_client = rpcapi.DecisionEngineAPI()
|
||||||
|
@ -475,6 +475,7 @@ class AuditTemplateCollection(collection.Collection):
|
|||||||
|
|
||||||
class AuditTemplatesController(rest.RestController):
|
class AuditTemplatesController(rest.RestController):
|
||||||
"""REST controller for AuditTemplates."""
|
"""REST controller for AuditTemplates."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(AuditTemplatesController, self).__init__()
|
super(AuditTemplatesController, self).__init__()
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ from watcher.decision_engine import rpcapi
|
|||||||
|
|
||||||
class DataModelController(rest.RestController):
|
class DataModelController(rest.RestController):
|
||||||
"""REST controller for data model"""
|
"""REST controller for data model"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(DataModelController, self).__init__()
|
super(DataModelController, self).__init__()
|
||||||
|
|
||||||
|
@ -153,6 +153,7 @@ class GoalCollection(collection.Collection):
|
|||||||
|
|
||||||
class GoalsController(rest.RestController):
|
class GoalsController(rest.RestController):
|
||||||
"""REST controller for Goals."""
|
"""REST controller for Goals."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(GoalsController, self).__init__()
|
super(GoalsController, self).__init__()
|
||||||
|
|
||||||
|
@ -145,6 +145,7 @@ class ScoringEngineCollection(collection.Collection):
|
|||||||
|
|
||||||
class ScoringEngineController(rest.RestController):
|
class ScoringEngineController(rest.RestController):
|
||||||
"""REST controller for Scoring Engines."""
|
"""REST controller for Scoring Engines."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ScoringEngineController, self).__init__()
|
super(ScoringEngineController, self).__init__()
|
||||||
|
|
||||||
|
@ -175,6 +175,7 @@ class ServiceCollection(collection.Collection):
|
|||||||
|
|
||||||
class ServicesController(rest.RestController):
|
class ServicesController(rest.RestController):
|
||||||
"""REST controller for Services."""
|
"""REST controller for Services."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ServicesController, self).__init__()
|
super(ServicesController, self).__init__()
|
||||||
|
|
||||||
|
@ -196,6 +196,7 @@ class StrategyCollection(collection.Collection):
|
|||||||
|
|
||||||
class StrategiesController(rest.RestController):
|
class StrategiesController(rest.RestController):
|
||||||
"""REST controller for Strategies."""
|
"""REST controller for Strategies."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(StrategiesController, self).__init__()
|
super(StrategiesController, self).__init__()
|
||||||
|
|
||||||
|
@ -161,6 +161,7 @@ class MultiType(wtypes.UserType):
|
|||||||
:param types: Variable-length list of types.
|
:param types: Variable-length list of types.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, *types):
|
def __init__(self, *types):
|
||||||
self.types = types
|
self.types = types
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ LOG = log.getLogger(__name__)
|
|||||||
|
|
||||||
class WebhookController(rest.RestController):
|
class WebhookController(rest.RestController):
|
||||||
"""REST controller for webhooks resource."""
|
"""REST controller for webhooks resource."""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(WebhookController, self).__init__()
|
super(WebhookController, self).__init__()
|
||||||
self.dc_client = rpcapi.DecisionEngineAPI()
|
self.dc_client = rpcapi.DecisionEngineAPI()
|
||||||
|
@ -83,6 +83,7 @@ class NoExceptionTracebackHook(hooks.PecanHook):
|
|||||||
# 'on_error' never fired for wsme+pecan pair. wsme @wsexpose decorator
|
# 'on_error' never fired for wsme+pecan pair. wsme @wsexpose decorator
|
||||||
# catches and handles all the errors, so 'on_error' dedicated for unhandled
|
# catches and handles all the errors, so 'on_error' dedicated for unhandled
|
||||||
# exceptions never fired.
|
# exceptions never fired.
|
||||||
|
|
||||||
def after(self, state):
|
def after(self, state):
|
||||||
# Omit empty body. Some errors may not have body at this level yet.
|
# Omit empty body. Some errors may not have body at this level yet.
|
||||||
if not state.response.body:
|
if not state.response.body:
|
||||||
|
@ -33,6 +33,7 @@ class AuthTokenMiddleware(auth_token.AuthProtocol):
|
|||||||
for public routes in the API.
|
for public routes in the API.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, app, conf, public_api_routes=()):
|
def __init__(self, app, conf, public_api_routes=()):
|
||||||
route_pattern_tpl = r'%s(\.json|\.xml)?$'
|
route_pattern_tpl = r'%s(\.json|\.xml)?$'
|
||||||
|
|
||||||
|
@ -199,5 +199,6 @@ class TaskFlowNop(flow_task.Task):
|
|||||||
|
|
||||||
We need at least two atoms to create a link.
|
We need at least two atoms to create a link.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def execute(self):
|
def execute(self):
|
||||||
pass
|
pass
|
||||||
|
@ -71,7 +71,6 @@ def init(policy_file=None, rules=None,
|
|||||||
|
|
||||||
def enforce(context, rule=None, target=None,
|
def enforce(context, rule=None, target=None,
|
||||||
do_raise=True, exc=None, *args, **kwargs):
|
do_raise=True, exc=None, *args, **kwargs):
|
||||||
|
|
||||||
"""Checks authorization of a rule against the target and credentials.
|
"""Checks authorization of a rule against the target and credentials.
|
||||||
|
|
||||||
:param dict context: As much information about the user performing the
|
:param dict context: As much information about the user performing the
|
||||||
|
@ -165,6 +165,7 @@ class CinderModelBuilder(base.BaseModelBuilder):
|
|||||||
- Storage-related knowledge (Cinder)
|
- Storage-related knowledge (Cinder)
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, osc):
|
def __init__(self, osc):
|
||||||
self.osc = osc
|
self.osc = osc
|
||||||
self.model = model_root.StorageModelRoot()
|
self.model = model_root.StorageModelRoot()
|
||||||
|
@ -78,6 +78,7 @@ class BareMetalModelBuilder(base.BaseModelBuilder):
|
|||||||
|
|
||||||
- Baremetal-related knowledge (Ironic)
|
- Baremetal-related knowledge (Ironic)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, osc):
|
def __init__(self, osc):
|
||||||
self.osc = osc
|
self.osc = osc
|
||||||
self.model = model_root.BaremetalModelRoot()
|
self.model = model_root.BaremetalModelRoot()
|
||||||
|
Loading…
Reference in New Issue
Block a user