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
8 changes: 8 additions & 0 deletions .ansible-lint-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,11 @@ roles/infrastructure/tasks/validate_azure.yml yaml[line-length] skip
roles/infrastructure/tests/test.yml syntax-check[specific][/] skip
roles/infrastructure/vars/main.yml var-naming[no-role-prefix] skip
roles/infrastructure/vars/main.yml jinja[spacing][/] skip
roles/init_deployment/defaults/main.yml var-naming[no-role-prefix] skip
roles/init_deployment/tasks/marshall.yml name[template][/] skip
roles/init_deployment/tasks/marshall.yml jinja[invalid][/] skip
roles/init_deployment/tasks/runlevels.yml yaml[line-length] skip
roles/init_deployment/tasks/validate.yml no-jinja-when skip
roles/init_deployment/vars/basic_cluster.yml schema[vars][/] skip
roles/init_deployment/vars/basic_cluster.yml var-naming[no-role-prefix] skip
roles/init_deployment/vars/basic_cluster.yml var-naming[no-reserved] skip
4 changes: 4 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,7 @@ plugin_routing:
deprecation:
removal_version: 4.0.0
warning_text: Role, infrastructure, is not longer supported.
init_deployment:
deprecation:
removal_version: 4.0.0
warning_text: Role, init_deployment, is not longer supported.
6 changes: 6 additions & 0 deletions roles/init_deployment/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

- name: Marshall Deployment Definition
ansible.builtin.include_tasks: marshall.yml

Expand Down
Loading