Puppet Class: maybe

Defined in:
manifests/init.pp

Summary

Configure Maybe instance

Overview

Parameters:

  • hostname (String)

    is the service hostname

  • aws_access_key_id (String)

    sets the AWS key to use for Route53 challenge

  • aws_secret_access_key (String)

    sets the AWS secret key to use for the Route53 challenge

  • email (String)

    sets the contact address for the certificate

  • secret_key_base (String)

    sets the Rails cookie secret

  • database_password (String)

    sets the postgres password

  • datadir (String) (defaults to: '/opt/maybe')

    sets the storage location on disk

  • container_ip (String) (defaults to: '172.17.0.2')

    sets the IP for the service container

  • postgres_ip (String) (defaults to: '172.17.0.3')

    sets the IP for the database docker container

  • backup_target (Optional[String]) (defaults to: undef)

    sets the target repo for backups

  • backup_database_watchdog (Optional[String]) (defaults to: undef)

    sets the watchdog URL to confirm backups are working

  • backup_password (Optional[String]) (defaults to: undef)

    sets the encryption key for backup snapshots

  • backup_environment (Optional[Hash[String, String]]) (defaults to: undef)

    sets the env vars to use for backups

  • backup_rclone (Optional[String]) (defaults to: undef)

    sets the config for an rclone backend

  • postgres_watchdog (Optional[String]) (defaults to: undef)

    sets the watchdog URL for postgres dumps



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'manifests/init.pp', line 18

class maybe (
  String $hostname,
  String $aws_access_key_id,
  String $aws_secret_access_key,
  String $email,
  String $secret_key_base,
  String $database_password,
  String $datadir = '/opt/maybe',
  String $container_ip = '172.17.0.2',
  String $postgres_ip = '172.17.0.3',
  Optional[String] $backup_target = undef,
  Optional[String] $backup_database_watchdog = undef,
  Optional[String] $backup_password = undef,
  Optional[Hash[String, String]] $backup_environment = undef,
  Optional[String] $backup_rclone = undef,
  Optional[String] $postgres_watchdog = undef,
) {
  file { [
      $datadir,
      "${datadir}/data",
      "${datadir}/backup",
      "${datadir}/postgres",
    ]:
      ensure => directory,
  }

  docker::container { 'maybe':
    image => 'ghcr.io/maybe-finance/maybe:latest',
    args  => [
      "--ip ${container_ip}",
      "-v ${datadir}/data:/rails/storage",
      '-e SELF_HOSTED=true',
      '-e RAILS_FORCE_SSL=false',
      '-e RAILS_ASSUME_SSL=false',
      '-e GOOD_JOB_EXECUTION_MODE=async',
      "-e SECRET_KEY_BASE=${secret_key_base}",
      "-e DB_HOST=${postgres_ip}",
      '-e POSTGRES_DB=maybe_production',
      '-e POSTGRES_USER=maybe_user',
      "-e POSTGRES_PASSWORD=${database_password}",
    ],
    cmd   => '',
  }

  nginx::site { $hostname:
    proxy_target          => "http://${container_ip}:3000",
    aws_access_key_id     => $aws_access_key_id,
    aws_secret_access_key => $aws_secret_access_key,
    email                 => $email,
  }

  firewall { '101 allow cross container from maybe to postgres':
    chain       => 'FORWARD',
    action      => 'accept',
    proto       => 'tcp',
    source      => $container_ip,
    destination => $postgres_ip,
    dport       => 5432,
  }

  docker::container { 'postgres':
    image   => 'postgres:17',
    args    => [
      "--ip ${postgres_ip}",
      "-v ${datadir}/postgres:/var/lib/postgresql/data",
      '-e POSTGRES_USER=maybe_user',
      "-e POSTGRES_PASSWORD=${database_password}",
      '-e POSTGRES_DB=maybe_production',
    ],
    cmd     => '-c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key',
    require => File["${datadir}/postgres"],
  }

  file { '/usr/local/bin/maybe-backup.sh':
    ensure => file,
    source => 'puppet:///modules/maybe/maybe-backup.sh',
    mode   => '0755',
  }

  file { '/etc/systemd/system/maybe-backup.service':
    ensure  => file,
    content => template('maybe/maybe-backup.service.erb'),
    notify  => Service['maybe-backup.timer'],
  }

  file { '/etc/systemd/system/maybe-backup.timer':
    ensure => file,
    source => 'puppet:///modules/maybe/maybe-backup.timer',
    notify => Service['maybe-backup.timer'],
  }

  service { 'maybe-backup.timer':
    ensure => running,
    enable => true,
  }

  tidy { "${datadir}/backup weekly":
    path    => "${datadir}/backup",
    age     => '100d',
    recurse => true,
    matches => 'dump_??????{01,07,14,21,28}-??????.sql',
  }

  tidy { "${datadir}/backup all":
    path    => "${datadir}/backup",
    age     => '14d',
    recurse => true,
    matches => 'dump_*.sql',
  }

  if $backup_target != '' {
    backup::repo { 'maybe-database':
      source        => "${datadir}/backup",
      target        => "${backup_target}/database",
      watchdog_url  => $backup_database_watchdog,
      password      => $backup_password,
      environment   => $backup_environment,
      rclone_config => $backup_rclone,
    }
  }
}