Skip to content

Commit

Permalink
fixing k9s config for macosx
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDufus committed Nov 19, 2024
1 parent 66d38d4 commit 8e97fec
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions roles/k9s/tasks/MacOSX.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
name: k9s
state: present

#~/Library/Application Support/k9s
# - name: "k9s | Ensure k9s config directory exists"
# ansible.builtin.file:
# path: "{{ ansible_user_dir }}/.config/k9s"
# state: directory
# mode: "0755"
#
# - name: "k9s | Copy skin config"
# ansible.builtin.copy:
# dest: "{{ ansible_user_dir }}/.config/k9s/skin.yml"
# src: "skin.yml"
# mode: "0644"
- name: "k9s | Copy config"
ansible.builtin.copy:
dest: "{{ ansible_user_dir }}/Library/Application Support/k9s/config.yaml"
src: "config.yaml"
mode: "0644"

- name: "k9s | Copy skin config"
ansible.builtin.copy:
dest: "{{ ansible_user_dir }}/Library/Application Support/k9s/skins/skin.yaml"
src: "skin.yaml"
mode: "0644"

0 comments on commit 8e97fec

Please sign in to comment.