Skip to content

Commit

Permalink
Drop crun_bin_dir unused var (kubernetes-sigs#9845)
Browse files Browse the repository at this point in the history
crun_bin_dir was used to specify the destination of the crun binary during the
download process. This path must match with the value provided in the CRI-O
configuration file. So changing its value to bin_dir helps to mismatch errors.

Signed-off-by: Victor Morales <[email protected]>
  • Loading branch information
electrocucaracha authored Mar 3, 2023
1 parent 659fa0e commit 677b7ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions roles/container-engine/crun/defaults/main.yml

This file was deleted.

2 changes: 1 addition & 1 deletion roles/container-engine/crun/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
- name: Copy crun binary from download dir
copy:
src: "{{ local_release_dir }}/crun"
dest: "{{ crun_bin_dir }}/crun"
dest: "{{ bin_dir }}/crun"
mode: 0755
remote_src: true

0 comments on commit 677b7ec

Please sign in to comment.