Skip to content

Commit

Permalink
Install kbcli
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaassssiiee committed Dec 16, 2024
1 parent 862dd09 commit 9203fe9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
1 change: 1 addition & 0 deletions inventory/dev/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ docker_install_compose_plugin: true

use_helm: true
use_krew: true
use_kbcli: true
kubectl_ver: v1.29.3
kubectl_install_dir: /usr/bin
krew_install_plugins:
Expand Down
1 change: 1 addition & 0 deletions inventory/test/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ docker_install_compose: true
docker_install_compose_plugin: true

use_helm: true
use_kbcli: true
use_krew: true
kubectl_ver: v1.29.3
kubectl_install_dir: /usr/bin
Expand Down
27 changes: 22 additions & 5 deletions provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,27 +78,44 @@

tasks:
- name: Install Helm
when: use_helm | bool
when:
- use_helm is defined
- use_helm | bool
ansible.builtin.include_role:
name: andrewrothstein.kubernetes_helm

- name: Install Krew
when: use_krew | bool
when:
- use_krew is defined
- use_krew | bool
ansible.builtin.include_role:
name: andrewrothstein.krew

- name: Install kbcli
when:
- use_kbcli is defined
- use_kbcli | bool
ansible.builtin.include_role:
name: bbaassssiiee.kubeblocks

- name: Install OpenTofu
when: use_opentofu | bool
when:
- use_opentofu is defined
- use_opentofu | bool
ansible.builtin.include_role:
name: andrewrothstein.opentofu

- name: Install Powershell
when: use_powershell | bool
when:
- use_powershell is defined
- use_powershell | bool
ansible.builtin.include_role:
name: andrewrothstein.powershell

- name: Install Terraform
when: use_terraform | bool
when:
- use_terraform is defined
- use_terraform | bool
ansible.builtin.include_role:
name: andrewrothstein.terraform

Expand Down

0 comments on commit 9203fe9

Please sign in to comment.