File tree 5 files changed +11
-10
lines changed
helm/local-path-provisioner/tasks
5 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
1
skip_list:
2
- - 106
3
- - 204
4
- - 208
5
- - 303
2
+ - command-instead-of-module
3
+ - fqcn-builtins
4
+ - risky-file-permissions
5
+ - role-name
6
+ - var-spacing
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout code
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v3
15
15
- name : Run lint
16
- uses : ansible/ansible-lint-action@master
16
+ uses : ansible/ansible-lint-action@main
17
17
with :
18
18
targets : " playbook.yml"
19
19
args : " "
Original file line number Diff line number Diff line change 8
8
unarchive :
9
9
src : " {{ chart_archive }}"
10
10
dest : /tmp
11
- remote_src : yes
11
+ remote_src : true
12
12
creates : " {{ chart_destination }}"
13
13
14
14
- name : " Installing local-path-provisioner chart"
Original file line number Diff line number Diff line change 78
78
service :
79
79
name : kubelet
80
80
state : started
81
- daemon_reload : yes
81
+ daemon_reload : true
82
82
enabled : true
Original file line number Diff line number Diff line change 8
8
unarchive :
9
9
src : /tmp/helm.tar.gz
10
10
dest : /tmp
11
- remote_src : yes
11
+ remote_src : true
12
12
creates : /tmp/linux-amd64
13
13
14
14
- name : " Moving helm binary to /usr/local/bin"
15
15
command : creates=/usr/local/bin/helm mv /tmp/linux-amd64/helm /usr/local/bin/helm
16
- become : yes
16
+ become : true
17
17
18
18
- name : " Adding stable repository"
19
19
command : helm repo add stable https://kubernetes-charts.storage.googleapis.com/
You can’t perform that action at this time.
0 commit comments