Skip to content

Commit a822060

Browse files
authored
Merge pull request #6 from daveyb/k8s-things
K8s things
2 parents f14e49b + b1cb9d1 commit a822060

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

roles/misc/tasks/darwin.yml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@
1111
shell: brew cask install slack
1212
ignore_errors: yes # preinstalled version causing error
1313

14-
- name: install libressl for teams
15-
shell: brew install libressl
16-
17-
- name: install teams
18-
shell: brew cask install microsoft-teams
19-
2014
- name: install fswatch
2115
homebrew:
2216
name: fswatch
@@ -32,3 +26,23 @@
3226
- name: pin OSX dock to right edge
3327
shell: defaults write com.apple.dock orientation right
3428
notify: restart dock
29+
30+
- name: install kubectl
31+
homebrew:
32+
name: kubernetes-cli
33+
state: latest
34+
35+
- name: install k9s
36+
homebrew:
37+
name: derailed/k9s/k9s
38+
state: latest
39+
40+
- name: install kubectx
41+
homebrew:
42+
name: kubectx
43+
state: latest
44+
45+
- name: install helm
46+
homebrew:
47+
name: kubernetes-helm
48+
state: latest

roles/misc/tasks/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
- include_tasks: linux.yml
33
when: ansible_system == "Linux"
4-
become: true
54

65
- include_tasks: darwin.yml
76
when: ansible_system == "Darwin"
8-
become: true

roles/python/tasks/darwin.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
regexp: "^export PATH=${PATH}"
1212

1313
# NOTE: CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install 3.7.3
14+
# If you're getting compilation errors caused by xcode cli tools

roles/python/tasks/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
---
22
- include_tasks: darwin.yml
33
when: ansible_system == "Darwin"
4-
become: true

0 commit comments

Comments
 (0)