File tree Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ gpg_public_key = "awx_plugins.credentials.plugins:gpg_public_key"
101
101
terraform = " awx_plugins.credentials.plugins:terraform"
102
102
103
103
[project .entry-points ."awx_plugins .inventory" ] # new entry points group name
104
- azure-rm = " awx_plugins.inventory.plugins:azure_rm"
104
+ azure_rm = " awx_plugins.inventory.plugins:azure_rm"
105
105
ec2 = " awx_plugins.inventory.plugins:ec2"
106
106
gce = " awx_plugins.inventory.plugins:gce"
107
107
vmware = " awx_plugins.inventory.plugins:vmware"
@@ -114,6 +114,13 @@ insights = "awx_plugins.inventory.plugins:insights"
114
114
openshift_virtualization = " awx_plugins.inventory.plugins:openshift_virtualization"
115
115
constructed = " awx_plugins.inventory.plugins:constructed"
116
116
117
+ [project .entry-points ."awx_plugins .inventory .supported" ] # plugins that awx will skip activating automatically
118
+ rhv = " awx_plugins.inventory.plugins:rhv_supported"
119
+ satellite6 = " awx_plugins.inventory.plugins:satellite6_supported"
120
+ controller = " awx_plugins.inventory.plugins:controller_supported"
121
+ insights = " awx_plugins.inventory.plugins:insights_supported"
122
+ openshift_virtualization = " awx_plugins.inventory.plugins:openshift_virtualization_supported"
123
+
117
124
[project .license ]
118
125
file = " LICENSE"
119
126
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def __str__(self) -> str:
76
76
inventory_plugins = (
77
77
EntryPointParam (
78
78
'awx_plugins.inventory' ,
79
- 'azure-rm ' ,
79
+ 'azure_rm ' ,
80
80
'awx_plugins.inventory.plugins:azure_rm' ,
81
81
),
82
82
EntryPointParam (
@@ -134,6 +134,31 @@ def __str__(self) -> str:
134
134
'constructed' ,
135
135
'awx_plugins.inventory.plugins:constructed' ,
136
136
),
137
+ EntryPointParam (
138
+ 'awx_plugins.inventory.supported' ,
139
+ 'rhv' ,
140
+ 'awx_plugins.inventory.plugins:rhv_supported' ,
141
+ ),
142
+ EntryPointParam (
143
+ 'awx_plugins.inventory.supported' ,
144
+ 'satellite6' ,
145
+ 'awx_plugins.inventory.plugins:satellite6_supported' ,
146
+ ),
147
+ EntryPointParam (
148
+ 'awx_plugins.inventory.supported' ,
149
+ 'controller' ,
150
+ 'awx_plugins.inventory.plugins:controller_supported' ,
151
+ ),
152
+ EntryPointParam (
153
+ 'awx_plugins.inventory.supported' ,
154
+ 'insights' ,
155
+ 'awx_plugins.inventory.plugins:insights_supported' ,
156
+ ),
157
+ EntryPointParam (
158
+ 'awx_plugins.inventory.supported' ,
159
+ 'openshift_virtualization' ,
160
+ 'awx_plugins.inventory.plugins:openshift_virtualization_supported' ,
161
+ ),
137
162
)
138
163
139
164
You can’t perform that action at this time.
0 commit comments