Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .ansible-lint-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ roles/auto_repo_mirror/tasks/update_mirror_cache.yml risky-file-permissions skip
roles/auto_repo_mirror/vars/main.yml var-naming[no-role-prefix] skip
roles/common/defaults/main.yml jinja[spacing][/] skip
roles/common/defaults/main.yml yaml[line-length] skip
roles/data/tasks/initialize.yml yaml[line-length] skip
roles/data/tasks/main.yml name[missing][/] skip
roles/data/tasks/setup_aws.yml risky-file-permissions skip
roles/data/tasks/setup_aws.yml yaml[line-length] skip
roles/data/tasks/teardown_aws_policies.yml yaml[line-length] skip
4 changes: 4 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ plugin_routing:
deprecation:
removal_version: 4.0.0
warning_text: Role, common, is not longer supported.
data:
deprecation:
removal_version: 4.0.0
warning_text: Role, data, is not longer supported.
29 changes: 0 additions & 29 deletions roles/data/meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

galaxy_info:
author: Webster Mudge ([email protected])
description: >
Management of cloud provider roles and policies supporting external data locations
for Cloudera Data Platform (CDP) Public Cloud deployments and Environment.
company: Cloudera
license: Apache-2.0

min_ansible_version: 2.10

platforms:
- name: Debian
versions: all
- name: Fedora
versions: all
- name: GenericLinux
versions: all
- name: MacOSX
versions: all
- name: Ubuntu
versions: all

galaxy_tags:
- cloudera
- cdp
- aws
- gcloud
- azure

dependencies: ["cloudera.exe.common"]
6 changes: 6 additions & 0 deletions roles/data/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

- name: Deprecation warning
run_once: true
cloudera.exe.deprecation:
msg: "Role, {{ ansible_role_name }}, is no longer supported."
version: 4.0.0

- ansible.builtin.include_tasks: validate.yml
- ansible.builtin.include_tasks: initialize.yml
- ansible.builtin.include_tasks: setup.yml
Loading