Skip to content

Commit

Permalink
dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaassssiiee committed Dec 16, 2024
1 parent da5e738 commit 1a174ef
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 17 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
.output-images/
.vagrant/
.vscode/
galaxy_roles/*
roles/andrewrothstein.*
roles/bbaassssiiee.*
roles/geerlingguy.*
files/*
*.iso
*.box
Expand Down
3 changes: 0 additions & 3 deletions galaxy_roles/.gitkeep

This file was deleted.

9 changes: 9 additions & 0 deletions inventory/dev/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,13 @@ docker_users:
- "{{ ansible_user }}"
docker_install_compose: true
docker_install_compose_plugin: true

kubectl_ver: v1.29.3
kubectl_install_dir: /usr/bin
use_krew: true
krew_install_plugins:
- ctx
- ns
- stern

server_name: "{{ ansible_fqdn | default(ansible_hostname) }}"
9 changes: 3 additions & 6 deletions inventory/dev/hosts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[local]
localhost connection=local

[dev:children]
control

Expand All @@ -10,11 +7,11 @@ semaphore
web

[database]
controller ansible_host=10.0.0.206
controller ansible_host=192.168.178.60
[semaphore]
controller ansible_host=10.0.0.206
controller ansible_host=192.168.178.60
[web]
controller ansible_host=10.0.0.206
controller ansible_host=192.168.178.60

[dev:vars]
ansible_user=vagrant
Expand Down
11 changes: 10 additions & 1 deletion inventory/test/group_vars/all.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
---
docker_install_compose: true
docker_install_compose_plugin: true
server_name: acsNode

kubectl_ver: v1.29.3
kubectl_install_dir: /usr/bin
use_krew: true
krew_install_plugins:
- ctx
- ns
- stern

postgres_listen_addresses: '127.0.0.1'
server_name: acsNode
11 changes: 8 additions & 3 deletions provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
read -sp "Enter database password: " DB_PASS && export DB_PASS ; echo
roles:
- role: postgres
- role: bbaassssiiee.postgres_ssl

- name: Semaphore in Systemd
hosts: semaphore
Expand Down Expand Up @@ -63,7 +63,7 @@

- name: Install Squid proxy
ansible.builtin.import_role:
name: proxy
name: bbaassssiiee.proxy
tags: [proxy]

- name: Tools
Expand All @@ -77,6 +77,11 @@
- semaphore

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

- name: Install OpenTofu
when: use_opentofu | bool
ansible.builtin.include_role:
Expand Down Expand Up @@ -121,5 +126,5 @@
become: true
gather_facts: true
roles:
- role: nginx
- role: bbaassssiiee.nginx_ssl
tags: [nginx]
3 changes: 0 additions & 3 deletions roles/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@ roles:
- src: geerlingguy.docker
version: 7.4.3
- src: bbaassssiiee.postgres_ssl
name: postgres
version: 1.1.0
- src: bbaassssiiee.nginx_ssl
name: nginx
version: 1.0.5
- src: bbaassssiiee.proxy
name: proxy
version: 1.0.3

0 comments on commit 1a174ef

Please sign in to comment.