-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add small Mongo docker role, for running on a single node
- Loading branch information
Showing
4 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
replica_set_name: "{{ instance_name }}" | ||
docker_mongodb_network_range: "172.21.22.0/24" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
--- | ||
- name: Install required packages | ||
ansible.builtin.apt: | ||
name: "python3-pymongo" | ||
state: present | ||
|
||
- name: Create MongoDB volume | ||
community.docker.docker_volume: | ||
name: openconext_mongodb | ||
state: present | ||
|
||
- name: Create MongoDB network | ||
community.docker.docker_network: | ||
name: openconext_mongodb | ||
state: present | ||
internal: false | ||
ipam_config: | ||
- subnet: "{{ docker_mongodb_network_range }}" | ||
|
||
- name: Create the MongoDB container | ||
community.docker.docker_container: | ||
name: openconext_mongodb | ||
image: bitnami/mongodb:7.0 | ||
state: started | ||
pull: true | ||
restart_policy: "always" | ||
ports: "127.0.0.1:27017:27017" | ||
networks: | ||
- name: "openconext_mongodb" | ||
mounts: | ||
- type: volume | ||
source: openconext_mongodb | ||
target: /var/lib/mysql | ||
- type: bind | ||
source: /home/backup/mongo/ | ||
target: /home/backup | ||
env: | ||
MONGODB_ROOT_USER: admin | ||
MONGODB_ROOT_PASSWORD: "{{ mongo_admin_password }}" | ||
MONGODB_REPLICA_SET_NAME: "{{ replica_set_name }}" | ||
MONGODB_REPLICA_SET_MODE: primary | ||
MONGODB_REPLICA_SET_KEY: secretsecret | ||
MONGODB_ADVERTISED_HOSTNAME: openconext_mongodb | ||
volumes: | ||
- openconext_mongodb:/bitnami/mongodb | ||
hostname: openconext_mongodb | ||
|
||
- name: Create mongo database users | ||
community.mongodb.mongodb_user: | ||
login_database: admin | ||
database: "{{ item.db_name }}" | ||
login_user: admin | ||
login_password: "{{ mongo_admin_password }}" | ||
login_host: 127.0.0.1 | ||
name: "{{ item.name }}" | ||
password: "{{ item.password }}" | ||
roles: readWrite | ||
replica_set: "{{ replica_set_name }}" | ||
strict_compatibility: false | ||
no_log: false | ||
run_once: true | ||
with_items: "{{ mongo.users }}" | ||
changed_when: false | ||
tags: mongo_users | ||
|
||
- name: Create the backupdir | ||
ansible.builtin.file: | ||
path: /home/backup/mongo | ||
owner: 1001 | ||
group: 1001 | ||
mode: "0700" | ||
|
||
- name: Install the backup script | ||
ansible.builtin.template: | ||
src: "backup_mongo.pl.j2" | ||
dest: "/usr/local/sbin/backup_mongo.pl" | ||
mode: "0700" | ||
owner: root | ||
group: root | ||
|
||
|
||
- name: Create cron symlink for backup script | ||
ansible.builtin.file: | ||
src: "/usr/local/sbin/backup_mongo.pl" | ||
dest: "/etc/cron.daily/mongodb_backup" | ||
state: link | ||
mode: "0700" | ||
owner: root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/perl | ||
# Variables | ||
|
||
$backupdir = "/home/backup"; | ||
$username = "admin"; | ||
$password = "{{ mongo_admin_password }}"; | ||
|
||
umask 0077; | ||
|
||
# Determine current day | ||
$day = `/bin/date +'%a'`; | ||
chomp($day); | ||
|
||
# Remove old backups if exists | ||
if ( -e "$backupdir/mongo-dump-$day/") { | ||
`rm -rf $backupdir/mongo-dump-$day/`; | ||
} | ||
|
||
# Dump databases | ||
`docker exec openconext_mongodb mongodump --username $username --password $password --authenticationDatabase admin --out $backupdir/mongo-dump-$day`; | ||
|
||
# Gzip dumps | ||
opendir(BDIR, "$backupdir/mongo-dump-$day/"); | ||
my @files = readdir(BDIR); | ||
closedir(BDIR); | ||
chdir("$backupdir/mongo-dump-$day/"); | ||
foreach $dir (@files) { | ||
if ($dir !~ /^\.+$/) { | ||
if ($dir !~ /\.\./g) { | ||
if ( -d "$backupdir/mongo-dump-$day/$dir") { | ||
`tar -cvzf $backupdir/mongo-dump-$day/$dir.tar.gz $dir/`; | ||
`rm -rf $backupdir/mongo-dump-$day/$dir/`; | ||
} | ||
} | ||
} | ||
} | ||
umask 0022; |