Commit graph

1003 commits

Author SHA1 Message Date
Irfan
75f3198605
Fix typo in documentation (#577) 2023-07-07 15:31:15 -07:00
Yusuke Tsutsumi
d1277f829b
fix: iam service account key path must not exist (#576)
Update docs to explain that the json secret key must not
already exist, or the module will try to read it.

fixes #370
2023-07-07 15:05:09 -07:00
Dave Costakos
953b06ff05
updated lookuup plugin based on comment 76eb024c25# 2023-06-22 14:36:55 -07:00
Dave Costakos
76eb024c25
Adding support for Google Secret Manager for issue 543 2023-06-21 16:24:14 -07:00
Yusuke Tsutsumi
30a4e66363
fix: use default service account if unset (#572)
`service_account_email` defaults to None if one
is not set. For gcp_compute_instance_info, this results
in an invalid request as the service account is populated
directly in the path.

Populating `default` when a value is not set fixes the error.

fixes #568
2023-06-10 11:39:44 -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
Samir Faci
86e0cef208 Adding support for ip_allocation_policy->stack_type 2023-04-22 12:28:05 -07:00
Samir Faci
cd35f3bce6 Adding DataPlane V2 support.
fix for #566
2023-04-22 12:28:05 -07:00
Yusuke Tsutsumi
15c36acbf0 release: 1.1.3
changes needed to release ansible 1.1.3.
2023-03-04 18:14:17 +00:00
Yusuke Tsutsumi
db81dcd5d5 test: disable flakey spanner test
The test continually fails due to an existing database being
created, hich implies the GET isn't returning the proper response.
2023-02-20 10:38:27 -08:00
Yusuke Tsutsumi
0ad88dc39d test: disable gcp_bigtable_instance test
The test is still flakey currently. A few attempts have
been made to fix it, but it seems that the bigtable API
does not consistently return the resource after is has
been created.

While exploring ways to make it more robust, disabling the
test to keep the CI tests from being unreliable to the point
of useless.
2023-02-18 14:08:04 -08:00
Yusuke Tsutsumi
12438f9bfb fix: correct gcp_compute_instance_info filter docs
The link for filter documentation was pointing to
gcloud, which isn't correct as gcp_compute_instance_info
communicates with the API.

fixes #549
2023-02-18 12:20:50 -08: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
Yusuke Tsutsumi
791e11d45d chore: pin ansible-lint to 6.13.1
ansible-lint was updated and the GitHub
action did not pin the dependency, resulting
in the repository to fail sanity tests.

Updating the repository to adhere to new fatal
linter rules, but also pinning the linter to
prevent failures that may be unrelated to the
particular commit.

Updating usages for python3.8 to 3.9 as ansible-lint
is dropping support for 3.8.
2023-02-18 11:44:25 -08:00
Yusuke Tsutsumi
75d4ded736 tests: updating the route test
validating the update of a route works as per concerns raised in #542
2023-02-10 16:48:29 -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
c99ecc511f gcp_storage_object asserts for dest on upload
The `dest` field is required for upload and delete. This was not
explicitly documented nor asserted.

Fixes #235.
2023-02-03 16:48:55 -08:00
Nikolaos Kakouros
286dcaed56 Removes duplicate lines 2023-01-23 14:33:26 -08:00
nkakouros
30c2bbd84e Fixes GcpRequest comparison for boolean parameters
Fixes #402 .
2023-01-23 14:33:26 -08:00
S. Shuck
226ec3dd3f Improve error handling for auth_kind 'serviceaccount'
Fixes ansible-collections/google.cloud#538.
2022-12-29 12:59:12 -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
509e0207ff tests: add sanity tests for python 2.7
Automation Hub still runs sanity tests on python 2.7

updating release to 1.1.1 to publish a new version.
2022-12-16 09:40:24 -08:00
Yusuke Tsutsumi
cbae062c98 updating galaxy.yml file to 1.1.0
required for publishing a new release
2022-12-16 16:18:07 +00:00
Yusuke Tsutsumi
1ff057fd1c release 1.1.0
Updating changelong and dates to match 1.1.0 release.
2022-12-16 08:13:18 -08:00
Yusuke Tsutsumi
2db181d084 fix gcp_iam_role not updating
gcp_iam_role was not updating previously. The API uses a PATCH and
not a PUT.

Also fixing an accidental leftover diff from a bad merge.

fixes #236.
2022-12-15 23:04:47 -08:00
Yusuke Tsutsumi
d063d44b73 fixing gcp_resourcemanager_project delete
gcp_resourcemanager_project was not properly deleting projects.

fixing gcp_resourcemanager_project as well.

fixes #530.
2022-12-12 22:25:24 -08:00
Yusuke Tsutsumi
4907356bba fixing ansible-lint errors, fix gcsfuse
Ansible-lint is required for Ansible collection
certification for Automation Hub.

gcsfuse had no metadata associated with it, failing
the Ansible Hub upload.
2022-12-10 10:49:01 -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
Yusuke Tsutsumi
3fb4763e37 fix automation hub workflow
The automation hub workflow was passing an incorrect API key.
2022-12-05 09:08:39 -08:00
Yusuke Tsutsumi
f87e7f47b4 tests: fix integration tests 2
the previous fix had invalid syntax (hard to test against the
master branch until after push).

This syntax is documented as correct:
https://github.com/actions/runner/issues/950
2022-12-04 12:15:27 -08:00
Yusuke Tsutsumi
4c90fac19f tests: fix integration tests not running on push
The integration test filter syntax was restrictive and disabled
running them on push.
2022-12-04 12:08:54 -08:00
Yusuke Tsutsumi
eab8b1fb7b disable spanner_database_info tests, python to 3.9
The client's List continues to be flakey. disabling until
the endpoint is stable.

Switching tests to use ansible 2.14, as 2.13 has issues with
spawning a docker container.

Upgrading the base python version as a consequence.

Removing the need for docker from unit tests, since that was failing
and also non-critical to run unit tests.
2022-12-04 12:00:59 -08:00
Yusuke Tsutsumi
1ec54b286d prepping for 1.1.0-beta release
- Updating and documenting changelog creation process.
  antsibull-changelog was chosen because it is the standard tooling
  recommended by Ansible developers.
- Documenting the release process and several others so others can perform it in the
  future.
- Updating the integration tests to test against 2.13, which the 1.1.0
  final release will be certified for.
- Created changelog and update galaxy.yaml for 1.1.0-beta, which will be
  the next release.
2022-12-04 12:00:59 -08:00
Rebecca Peterson
21c9479ece Update gcp_filestore_instance.py
`filestore/docs/accessing-fileshares` has been removed and replaced with `filestore/docs/csi-driver`
2022-12-02 10:20:13 -08:00
Yusuke Tsutsumi
f692dd4c76 fix role tests
Ansible role tests were failing due to ansible-lint reporting
multiple errors.

Fixing those errors resolves the failing tests.

Switching gcsfuse to use gcloud's bootstrap to follow the current
docker install instructions.

Removing centos as it's a discontinued distribution.

Adding a check to ensure integration tests are skipped unless they
are run by a branch (a public fork does not pass required
integration test credentials).
2022-11-29 23:12:26 -08:00
Yusuke Tsutsumi
18900797c5 tests: documenting unsupported cases
Some test cases are unsupported due to environmental or
blocking code restrictions (e.g. unimplemented dependent resources).

As these will likely not be fixed before the first release certified
for Ansible 2.11 and beyond, documenting them instead.
2022-11-29 23:12:26 -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
Yusuke Tsutsumi
4cd61e66c1 tests: remove flakey spanner_database_info test
The spanner List API is returning intermittent 404s, which
is resulting in the spanner_database test failing every other
time.

Disabling the API until the test is more stable.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
4dc556f940 including bigtableadmin in bootstrap APIs
bigtableadmin was not enabled in the bootstrapping script.

Also running the bootstrap script on every CI run, to ensure
the test environment is properly set up.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
117224d352 fix gcp_iam_role
gcp_iam_role did not handle the undelete behavior
that is specific to gcp_iam_role.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
6171713572 fix gcp_bigtable_instance
gcp_bigtable_instance scope was using an incorrect scope,
which was causing oauth requests to not complete successfully.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
44eb7c2d29 fix gcp_spanner_database delete
gcp_spanner_database erroneously used LRO handling on delete,
rather than a standard synchronous function. One side effect
was not catching 404s as a not found error code.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
50076e7f36 fix: crypto_key initial_version_creation default
skip_initial_version_creation previously defaulted to None,
which results in an invalid value in the create call to
gcp_kms_crypto_key.

Defaulting to False fixes the issue.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
0e9f2a74b1 fix: gcp_cloudtasks_queue
gcp_cloudtasks_queue was sending a "location" field in the
payload, when the resource did not have such a field.

Removing it fixes the tests.
2022-11-27 08:34:30 -08:00
Yusuke Tsutsumi
d3a7287c37 fix: gcp_container_cluster for GKE 1.19+
Incorporating a fix for GKE 1.19+ (See #444).

Inlined:

Google has removed basic-auth method from within GKE starting version 1.19
This lead the output response of the backend API not to provide basic-auth
data (username and password) anymore.

The current implementation of gcp_container_cluster when generating the kubectl
config file, always set basic-auth data w/o checking if there actually are
available or explicitly provided even when the value are not set/provided
from gcp_container_cluster.

In addition, re-enabling some tests that #444 fixed.

Co-authored-by: Xavier Lamien <laxathom@lxtnow.net>
2022-11-19 21:58:55 -08:00
Yusuke Tsutsumi
dc67fb3e17 tests: service account flaky test
fixing a flakey service account test. Sometimes the service account
generated can be less than 6 characters (e.g. sa-57), which is an
invalid length.

This ensures that the name is at least 6 characters.
2022-11-19 18:40:44 -08:00
Yusuke Tsutsumi
ebf095d22d tests: fix gcp_compute_vpn_tunnel
- vpn_gateway required minimal changes (stop using legacy load
  balancers)
- compute_vpn_tunnel requires a valid vpn configuration
  (several dependent forwarding rules and configuration to set up a
  proper tunnel).
2022-11-19 18:40:44 -08:00
Yusuke Tsutsumi
54c14b66f6 tests: enabling 5 tests
the following tests can be enabled without any changes:

- gcp_compute_target_http_proxy
- gcp_compute_target_https_proxy
- gcp_compute_target_ssl_proxy
- gcp_compute_target_tcp_proxy
2022-11-19 18:40:44 -08:00
Yusuke Tsutsumi
5fc619fbb7 tests: fixing region_target_http_proxy
The backend_service resource was not regional, which is in invalid
configuration for a regional proxy to depend on.

Fixing up cleanup-script to better handle region/ global resources.
2022-11-19 18:40:44 -08:00