Skip to content

Commit

Permalink
Merge pull request #15 from mhutter/k3s/pw
Browse files Browse the repository at this point in the history
Migrate Vaultwarden to K3s
  • Loading branch information
mhutter authored Jul 3, 2024
2 parents 8f080d8 + c528807 commit fd6169c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions dnsconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ var DNS_PORKBUN = NewDnsProvider('porkbun');
var RHEA_A = '116.202.233.38';
var RHEA_AAAA = '2a01:4f8:241:4c27::1';

function K3S(host) {
return [A(host, '49.12.21.173'), AAAA(host, '2a01:4f8:c01e:2b8::1')];
}

function PROTONMAIL(verification, domainkey) {
return [
// Verification
Expand Down
1 change: 1 addition & 0 deletions zones/mhnet.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ D(
// Presets
SENDGRID('em6609'),

K3S('pw'),
A('*', RHEA_A),
AAAA('*', RHEA_AAAA),

Expand Down
3 changes: 1 addition & 2 deletions zones/mhnet.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ D(
AAAA('rhea', RHEA_AAAA),

// k3s LB
A('*', '49.12.21.173'),
AAAA('*', '2a01:4f8:c01e:2b8::1'),
K3S('*'),

END
);

0 comments on commit fd6169c

Please sign in to comment.