Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename _downstream to _supported #46

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/awx_plugins/inventory/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ class rhv(PluginFileInjector):
use_fqcn = True


class rhv_downstream(PluginFileInjector):
class rhv_supported(PluginFileInjector):
"""Ovirt uses the custom credential templating, and that is all."""

plugin_name = 'ovirt'
Expand Down Expand Up @@ -307,7 +307,7 @@ def get_plugin_env(
return ret


class satellite6_downstream(PluginFileInjector):
class satellite6_supported(PluginFileInjector):
plugin_name = 'foreman'
namespace = 'redhat'
collection = 'satellite'
Expand Down Expand Up @@ -396,7 +396,7 @@ class controller(PluginFileInjector):
collection = 'awx'


class controller_downstream(PluginFileInjector):
class controller_supported(PluginFileInjector):
# TODO: relying on routing for now, update after EEs pick up revised
# collection
plugin_name = 'tower'
Expand All @@ -413,7 +413,7 @@ class insights(PluginFileInjector):
use_fqcn = True


class insights_downstream(PluginFileInjector):
class insights_supported(PluginFileInjector):
plugin_name = 'insights'
base_injector = 'template'
namespace = 'redhat'
Expand All @@ -429,7 +429,7 @@ class openshift_virtualization(PluginFileInjector):
use_fqcn = True


class openshift_virtualization_downstream(PluginFileInjector):
class openshift_virtualization_supported(PluginFileInjector):
plugin_name = 'kubevirt'
base_injector = 'template'
namespace = 'redhat'
Expand Down