From 422f65587510c1212ec44d4c2c2de45bec3e3a92 Mon Sep 17 00:00:00 2001 From: MohamadTahir Date: Sun, 7 Jan 2024 16:13:58 +0300 Subject: [PATCH] init --- .gitignore | 2 ++ Vagrantfile | 13 +++++++++++++ ansible/task.yaml | 3 +++ docker-compose.yaml | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 52 insertions(+) create mode 100644 .gitignore create mode 100644 Vagrantfile create mode 100644 ansible/task.yaml create mode 100644 docker-compose.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..36205cd --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +id_rsa* +.vagrant diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..9a925f8 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,13 @@ +Vagrant.configure("2") do |config| + (1..3).each do |i| + config.vm.define "node-#{i}.ansible.internal" do |node| + node.vm.box = "generic/ubuntu2204" + node.vm.hostname = "node-#{i}.ansible.internal" + node.vm.network "private_network", ip: "192.168.50.2#{i}" + + node.vm.provider "virtualbox" do |vb| + vb.memory = "6144" + end + end + end +end diff --git a/ansible/task.yaml b/ansible/task.yaml new file mode 100644 index 0000000..292c1e3 --- /dev/null +++ b/ansible/task.yaml @@ -0,0 +1,3 @@ +- name: print message + debug: + msg: "Hello world" diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..8707657 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,34 @@ +services: + postgres: + image: postgres:15 + network_mode: host + environment: + POSTGRES_USER: semaphore + POSTGRES_PASSWORD: semaphore + POSTGRES_DB: semaphore + semaphore: + network_mode: host + image: semaphoreui/semaphore:v2.9.37 + environment: + SEMAPHORE_DB_USER: semaphore + SEMAPHORE_DB_PASS: semaphore + SEMAPHORE_DB_HOST: localhost + SEMAPHORE_DB_PORT: 5432 + SEMAPHORE_DB_DIALECT: postgres + SEMAPHORE_DB: semaphore + SEMAPHORE_PLAYBOOK_PATH: /tmp/semaphore/ + SEMAPHORE_ADMIN_PASSWORD: admin + SEMAPHORE_ADMIN_NAME: admin + SEMAPHORE_ADMIN_EMAIL: mohamad.tahir@dit.gov.krd + SEMAPHORE_ADMIN: admin + SEMAPHORE_ACCESS_KEY_ENCRYPTION: gs72mPntFATGJs9qK0pQ0rKtfidlexiMjYCH9gWKhTU= + SEMAPHORE_LDAP_ACTIVATED: 'no' # if you wish to use ldap, set to: 'yes' + SEMAPHORE_LDAP_HOST: dc01.local.example.com + SEMAPHORE_LDAP_PORT: '636' + SEMAPHORE_LDAP_NEEDTLS: 'yes' + SEMAPHORE_LDAP_DN_BIND: 'uid=bind_user,cn=users,cn=accounts,dc=local,dc=shiftsystems,dc=net' + SEMAPHORE_LDAP_PASSWORD: 'ldap_bind_account_password' + SEMAPHORE_LDAP_DN_SEARCH: 'dc=local,dc=example,dc=com' + SEMAPHORE_LDAP_SEARCH_FILTER: "(\u0026(uid=%s)(memberOf=cn=ipausers,cn=groups,cn=accounts,dc=local,dc=example,dc=com))" + depends_on: + - postgres