cloudera-labs / cloudera-deploy

A general purpose framework for automating Cloudera Products
Apache License 2.0
63 stars 61 forks source link

--skip-tags "database" doesn't function #107

Closed ghost closed 10 months ago

ghost commented 1 year ago

@asdaraujo We try to execute the deployer with --skip-tags "database" and it failed with the below error. Although we explicitly mentioned that Postages DB doesn't need to be install, the deployer tries to install a Postgres library.

ansible-playbook -i /runner/project/inventory_static.ini /runner/project/cloudera-deploy/main.yml -e "definition_path=/runner/project/" -e "abs_profile=/runner/project/profile.yml" -t full_cluster  --skip-tags "database" -vvv

and this is the error message  The full traceback is: WARNING: The below traceback may not be related to the actual failure.   File "/tmp/ansible_postgresql_user_payload_qTn8l4/ansible_postgresql_user_payload.zip/ansible_collections/community/postgresql/plugins/modules/postgresql_user.py", line 277, in [WARNING]: Module remote_tmp /var/lib/pgsql/.ansible/tmp did not exist and was created with a mode of 0700, this may cause issues when running as another user. To avoid this, create the remote_tmp dir with the correct permissions manually fatal: [semicjs02-bi-1.int.semicjs02.nice.com -> semicjs02-bi-1.int.semicjs02.nice.com]: FAILED! => {     "changed": false,     "invocation": {         "module_args": {             "ca_cert": null,             "comment": null,             "conn_limit": null,             "db": "",             "encrypted": true,             "expires": null,             "fail_on_user": true,             "groups": null,             "login_host": "",             "login_password": "",             "login_unix_socket": "",             "login_user": "postgres",             "name": "scm",             "no_password_changes": false,             "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",             "port": 5432,             "priv": null,             "role_attr_flags": "",             "session_role": null,             "ssl_mode": "prefer",             "state": "present",             "trust_input": true,             "user": "scm"         }     },     "msg": "Failed to import the required Python library (psycopg2) on semicjs02-bi-1's Python /usr/bin/python. Please read the module documentation and install it in the appropriate location. If the required library is installed, but Ansible is using the wrong Python interpreter, please consult the documentation on ansible_python_interpreter" }