Skip to content

Commit

Permalink
group
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaassssiiee committed Dec 18, 2024
1 parent 32a281d commit 5ab07ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion inventory/test/group_vars/all/vars.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
cluster_admin: PSIAdmin
cluster_admin_group: users
argocd_enabled: false
azure_csi_enabled: false # credentials required
artifacts_dir: "{{ playbook_dir }}/files"
bin_dir: /usr/bin
calico_version: "v3.27.3"
cert_manager_enabled: false
cluster_admin: PSIAdmin
cluster_name: test
container_manager: containerd # default
containerd_bin_dir: /usr/bin
Expand Down
4 changes: 2 additions & 2 deletions kube-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
ansible.builtin.file:
path: "~{{ cluster_admin | default('root') }}/.kube"
owner: "{{ cluster_admin | default('root') }}"
group: "{{ cluster_admin | default('root') }}"
group: "{{ cluster_admin_group | default('root') }}"
state: directory
mode: '0700'

Expand All @@ -57,5 +57,5 @@
src: "~{{ local_user }}/.kube/config"
dest: "~{{ cluster_admin | default('root') }}/.kube/"
owner: "{{ cluster_admin | default('root') }}"
group: "{{ cluster_admin | default('root') }}"
group: "{{ cluster_admin_group | default('root') }}"
mode: '0600'

0 comments on commit 5ab07ba

Please sign in to comment.