Browse Source

Replace path_join to support Ansible 2.9 (#8160)

pull/8171/head
zhengtianbao 3 years ago
committed by GitHub
parent
commit
04711d3b00
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/reset/tasks/main.yml

2
roles/reset/tasks/main.yml

@ -373,7 +373,7 @@
- dns
- name: reset | include file with reset tasks specific to the network_plugin if exists
include_tasks: "{{ (role_path,'../network_plugin',kube_network_plugin,'tasks/reset.yml') | path_join | realpath }}"
include_tasks: "{{ (role_path,'../network_plugin',kube_network_plugin,'tasks/reset.yml') | community.general.path_join | realpath }}"
when:
- kube_network_plugin in ['flannel', 'cilium', 'kube-router', 'calico']
tags:

Loading…
Cancel
Save