Skip to content

Commit 7ece600

Browse files
committed
add sn11
1 parent 3b00228 commit 7ece600

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

.github/workflows/deploy.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- james/sn11
78
paths:
89
- infra/**
910
workflow_dispatch:
@@ -19,10 +20,19 @@ jobs:
1920
secrets: inherit
2021
if: github.ref == 'refs/heads/main'
2122

23+
deploy_sn11_prod:
24+
name: Deploy to sn10 prod
25+
uses: ./.github/workflows/deploy_dns_environment.yaml
26+
# needs: deploy_jon
27+
with:
28+
environment: prod_sn11
29+
secrets: inherit
30+
# if: github.ref == 'refs/heads/main'
31+
2232
deploy_sn10_prod:
2333
name: Deploy to sn10 prod
2434
uses: ./.github/workflows/deploy_dns_environment.yaml
25-
needs: deploy_jon
35+
needs: deploy_sn11_prod
2636
with:
2737
environment: prod_sn10
2838
secrets: inherit

infra/terraform/prod_sn11.tfvars

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
proxmox_node = "nycmesh-sn11-prodvms1"
2+
proxmox_storage_location = "local-lvm"
3+
vm_nic = "vmbr0"
4+
dns_auth_mgt_ip = [
5+
]
6+
dns_rec_mgt_ip = [
7+
"10.70.104.22",
8+
"10.70.104.24",
9+
]
10+
dns_auth_router_ip = [
11+
]
12+
dns_rec_router_ip = [
13+
"10.70.104.23",
14+
"10.70.104.25",
15+
]
16+
dns_auth_internal_ip = [
17+
]
18+
dns_rec_internal_ip = [
19+
//"10.10.10.10",
20+
//"10.10.10.11",
21+
"10.70.104.26",
22+
"10.70.104.27",
23+
]
24+
dns_auth_external_ip = [
25+
]
26+
dns_rec_external_ip = [
27+
"", # Blank so it is not created
28+
"", # Blank so it is not created
29+
]
30+
dns_rec_outgoing_ip = [
31+
]
32+
dns_mgt_network_host_identifier = "24"
33+
dns_mgt_gateway = "10.70.104.1"
34+
hostname_prefix = "nycmesh-11"
35+
hostname_count_offset = 6
36+
recursive_cores = 5
37+
recursive_sockets = 1
38+
recursive_memory = 4096
39+
enable_doh = ""
40+
mesh_stub_resolver = "199.170.132.47"

0 commit comments

Comments
 (0)