Commit graph

42 commits

Author SHA1 Message Date
Vi P
307839b810
Remove plugin option from inventory config for compatibility with passthrough plugins
One niche but useful feature of Ansible inventory plugins is the ability to call one plugin from another. For example, you can write a custom plugin (`my.plugin.multi_cloud`) that acts as a sort of normalization interface between project inventories deployed on multiple cloud platforms. This makes it feasible to create a single set of Ansible Playbooks that can act on hosts across cloud platforms because they can expect managed node (inventory host) data to be consistent across those cloud platform vendors.

For example, `my.plugin.multi_cloud` inventory plugin might look something like the following code, which simply dynamically loads one or another underlying (upstream) vendor'ed inventory plugins based on the value of the shell environment variable called `CLOUD_PLATFORM`:

```python
#!/usr/bin/env python3

from ansible.errors import AnsibleError, AnsibleParserError
from ansible.plugins.inventory import BaseInventoryPlugin
from ansible.plugins.loader import inventory_loader
import os

class InventoryModule(BaseInventoryPlugin):

    def parse(self, inventory, loader, path, cache=True):
        super(InventoryModule, self).parse(inventory, loader, path)

        # Map the cloud platform to the appropriate vendor's inventory plugin.
        cloud_platform = os.environ.get('CLOUD_PLATFORM', '').lower()
        if cloud_platform == 'aws':
            plugin_fqcn = 'amazon.aws.aws_ec2'
        elif cloud_platform == 'gcp':
            plugin_fqcn = 'google.cloud.gcp_compute'
        else:
            raise AnsibleParserError(
                    f"Error: Unrecognized or unset cloud platform '{cloud_platform}'. "
                    f"Set ENTROPY_CLOUD_PLATFORM to 'aws' or 'gcp'.\n"
            )

        if not inventory_loader.has_plugin(plugin_fqcn):
            raise AnsibleParserError(f"Error: '{plugin_fqcn}' inventory plugin not found.\n")

        # Load the requested plugin.
        self.inventory_plugin = inventory_loader.get(plugin_fqcn)
```

In the above example, we see code loading either this `google.cloud.gcp_compute` inventory plugin or Amazon's `amazon.aws.aws_ec2` inventory plugin.

Later, we can invoke the underlying (upstream) plugin in a passthrough manner like this:

```python
        # Passthrough to the underlying plugin.
        if self.inventory_plugin.verify_file(path):
            self.inventory_plugin.parse(inventory, loader, path)
        else:
            raise AnsibleParserError(f"Error: Inventory configuration file '{path}' failed verification by plugin '{plugin_fqcn}'")
```

However, in order for this to work, we must supply the underlying plugin with knowledge of the fact that we are calling it from a different actual plugin. This is facilitated via Ansible's built in `_redirected_names` class property. Before calling the underlying plugin's `parse()` method, we must first do:

```python
        self.inventory_plugin._redirected_names.append(InventoryModule.NAME)
```

Now the underlying plugin will be permitted to run because the underlying plugin is informing Ansible that one of the names it is permitted to use is this "redirected" (aliased) name of the calling plugin. We have effectively monkey-patched the plugin during runtime, which is exactly what we want.

Unfortunately, for _this_ `google.cloud.gcp_compute` inventory plugin, that's not enough, because of the fact that the `plugin` option in its configuration file is also checked and compared against this same name. That's something that, for example, the `amazon.aws.aws_ec2` inventory plugin _doesn't_ do, and for good reason: enforcing this check with hardcoded options breaks the built-in functionality of the Ansible module loading alias features.

That's why I'm suggesting we remove this option. It isn't needed for the `auto` inventory plugin to load the plugin correctly, nor does it ever really need to be checked once this plugin is actually running; it's already running! But its presence _does_ break existing Ansible features, and makes the above use case of a pass-through plugin, for example, infeasible.

Thanks for considering this proposal.
2025-03-14 23:12:41 -04:00
Chris Hawk
22804f0cdc Fix lint errors in the gcp_compute lookup plugin 2024-11-04 10:18:57 -08:00
John Jarvis
3714be2936
fix: check for labels in json dict 2023-08-30 18:44:42 +02:00
Irfan
75f3198605
Fix typo in documentation (#577) 2023-07-07 15:31:15 -07:00
Shlomo Shuck
203961b045
feat: add auth support for GCP access tokens (#574)
Introduce choice "accesstoken" for auth_kind for modules
Introduce optional access_token string param that falls back to
  GCP_ACCESS_TOKEN env var
2023-06-10 11:20:57 -07:00
Yusuke Tsutsumi
252f215f2c fix: remove version_added in gcp_compute
The version_added field is documented for a very small set of
fields, specifically in gcp_compute today.

Removing these values as they are specifying the ansible-core version
which is confusing for those who are installing via ansible-galaxy,
and the value is not set for any other module.

fixes #550.
2023-02-18 11:46:35 -08:00
laithalissa
5d56d3f2d2 Update example inventory filter
Update the example inventory filter to not use a machineType filter. The existing
machineType filter example is erroneous, see
https://github.com/ansible-collections/google.cloud/issues/421#issuecomment-1361680826
Change the filter to use "status = RUNNING"
2023-02-10 16:39:28 -08:00
Yusuke Tsutsumi
0ed49af7df re-add gcp_compute as a valid plugin name
commit ccbde5f93e introduced
a backwards-incompatible change which made ansible-inventory
no longer recognize `gcp_compute` as a valid package name.

This would break users who are use `gcp_compute` (instead of the
new `google.cloud.gcp_compute`). Accepting both until at least
a major version change.

fixes #536.
2022-12-21 09:34:56 -08:00
Yusuke Tsutsumi
a9545c77a4 fix linting and updating maintenance guide
Updating the maintainers guide with updated intructions from
Ansible engineers.

Fixing linting issues, and adding the linter as a GitHub workflow
to ensure there are no regressions.
2022-12-07 15:36:21 -08:00
Andrew Dolgov
32e7eea25f Rename base_domain to name_suffix, make adjustments based on PR feedback 2022-11-28 21:59:00 -08:00
Andrey Dolgov
0114ee23d5 Add custom domain suffix option (base_domain) 2022-11-28 21:59:00 -08:00
Yonas Dresen
85e48b588b Add inventory hostname label support 2021-10-21 12:25:06 +02:00
Igor Simonov
ccbde5f93e fix documentation for correct work inventory plugin 2021-07-27 21:25:21 +03:00
kkr16
7590058e95 Fetch projects in folder based on projectID instead of name 2021-02-28 22:23:44 -05:00
AlanCoding
fe241cd2ca
Change imports to work inside collection 2020-05-03 23:04:54 -04:00
Alan Rominger
0471d79d2f
Use fully-qualified name in inventory plugin (#167) 2020-03-18 11:22:58 -04:00
Alex Stephen
10f07ebe34 gcp inventory plugin update 2020-03-17 09:26:43 -07:00
Alex Stephen
2800cae3ca PR 66511 2020-01-23 20:52:59 -08:00
Alex Stephen
66cb57dfc6 gcp_compute refactor (#61249)
* wip

* it works!

* cache should work

* ran black on code

* wip

* now it works

* black
2019-09-12 11:02:34 -07:00
Alex Stephen
64e9973ae8 nonetype error (#60603) 2019-09-12 11:02:34 -07:00
Elijah DeLee
09479a9fa0 Remove extra print statement (#59104)
Let ansible-inventory handle all output
Fixes #59101
2019-09-12 11:02:34 -07:00
Strahinja Kustudic
d0ae3b5d1e Fix version_added for gcp_compute 2019-09-12 11:02:34 -07:00
Strahinja Kustudic
85cdf91048 Add service_account_contents parameter to allign with the modules (#57848) 2019-09-12 11:02:34 -07:00
Alex Stephen
80503bb976 better metadata formatting on gcp_compute (#57778) 2019-09-12 11:02:34 -07:00
Strahinja Kustudic
64fb6d5ce0 Added environment variables to gcp_compute to align with gcp_* modules (#57776)
Added all variables that are also used by the gcp_* modules as described
in the docs
https://docs.ansible.com/ansible/latest/scenario_guides/guide_gce.html#providing-credentials-as-environment-variables
2019-09-12 11:02:34 -07:00
LucasBoisserie
ae9dd53c92 Remove required field on service_account_file in gcp_compute plugin inventory (#57345) 2019-09-12 11:02:34 -07:00
Strahinja Kustudic
23e26bf6cd Improve speed of the gpc_compute dynamic inventory (#57591)
To get all instances gcp_compute made a call to the Google API for each
zone separately. Because of this if all zones needed to be queried
fetching hosts lasted 30+ seconds. Now the module will use a single
query that will return all the instances, so the execution should last
just a few seconds.

This commit also suppresses a warning from the google-auth library about
using user credentials because if an Ansible user wants to use user
credentials, there is no need to warn him about it.
2019-09-12 11:02:34 -07:00
Brian Coca
0752ca5bed Not native, but text (#55676)
* use to_text instead of to_native
* cleaned up some imports and other pyflakisms
* fix missing lib messages
2019-09-12 11:02:34 -07:00
Alex Stephen
0d88614720 return actual error from module logic on gcp_compute (#55055)
* return actual error from module logic on gcp_compute

* changing how the error is presented

* sanity
2019-09-12 11:02:34 -07:00
Alan Rominger
26de6c9388 optionally get service account file path from env var (#54407) 2019-09-12 11:02:33 -07:00
Adam Miller
95da5c9c69 Bugfix/52688 gcp compute missing image (#54468)
* adding (optionally) image information to inventory var
* add boot image mapping to gcp_compute instance data for all disk
image data in the configured zones

Signed-off-by: Adam Miller <admiller@redhat.com>
2019-09-12 11:02:33 -07:00
Brian Coca
b077e3233b restored configurabilty of scopes (#54485) 2019-09-12 11:02:33 -07:00
Brian Coca
862bb52222 fixing gcp inv plugin (#54426)
* start fixing gcp inv plugin

* minor fixes

* added clog

* ajust comments

* link indv zone/project

* separate specific zone/project from other params

* restoring zones query per project

* also work when zones given

* fixed scopes, removed incorrect docs as not option
2019-09-12 11:02:33 -07:00
Sloane Hertel
9929887c70 Update inventory caching to remove deprecation warnings (#53976) 2019-09-12 11:02:33 -07:00
Brian Coca
fe65ed63ed Overridable safety (#53458)
* create overridable sanitation function
* now used in aws, gce and azure plugins
* added new option to these plugins to work in conjunction with general toggle to make it easier
  to emulate inventory script behavior.
2019-09-12 11:02:33 -07:00
Alan Rominger
72ab605225 Put in documented default for gcp_compute filters (#50025) 2019-09-12 11:02:33 -07:00
Ids van der Molen
1e25d0e889 gcp_compute: Add vars_prefix to prefix host_vars (#49601)
* Add vars_prefix to prefix host_vars

* Set vars_prefix default to empty string
2019-09-12 11:02:33 -07:00
Sloane Hertel
673c7cd803 add more consistent extension matching for inventory plugins (#46786)
* Add consistent extension matching for inventory plugins that support YAML configuration files

* Document extension matching expectations
2019-09-12 11:02:33 -07:00
Bob Lee
88743d11ae Update documentation for gcp_compute (#43791)
Added examples on how to use "keyed_groups", "hostnames", and "compose"

The compose example shows how to set the ansible_host var for a host to either the public or private ip. This is necessary when you set your hostname by name instead of ip
2019-09-12 11:02:33 -07:00
Brian Coca
e6c4e94687 added required missing field for common yaml fmt 2019-09-12 11:02:33 -07:00
Alex Stephen
03cdff340d GCP Inventory Plugin scopes fix 2019-09-12 11:02:33 -07:00
Alex Stephen
1519f8c652 GCP Inventory Plugin (#36884)
* Inventory

* Adding multi project support

* Adding multi project support

* Fixing PR comments and cleaning code

* Adding cache support
* Changed filter notation

* Inventory changes

* Better readability for zones, networks, subnetworks
* Added project to inventory output
* Using IP instead of hostname
* Keyed_groups support
* Use all zones when none provided.

* PR changes

* Doc changes
* Accepts *gcp_compute.yaml file names
* Added support for changing host naming precedent

* PR changes round 2

* Cache changes
* Changed verify_file function
* Misc style changes

* Cache fixes

* Fix docs for `hostnames` option.
2019-09-12 11:02:33 -07:00