debugd README: lowercase firewall rules (#138)

This commit is contained in:
Malte Poll 2022-05-12 14:21:22 +02:00 committed by GitHub
parent 437de8bcb1
commit 49ee05b680

View File

@ -144,37 +144,37 @@ See this example on what the possible settings are and how to setup the constell
"gcpConfig": { "gcpConfig": {
"image": "projects/constellation-images/global/images/constellation-coreos-debugd-TIMESTAMP", "image": "projects/constellation-images/global/images/constellation-coreos-debugd-TIMESTAMP",
"firewallInput": { "firewallInput": {
"Ingress": [ "ingress": [
{ {
"Name": "coordinator", "name": "coordinator",
"Description": "Coordinator default port", "description": "Coordinator default port",
"Protocol": "tcp", "protocol": "tcp",
"FromPort": 9000 "fromport": 9000
}, },
{ {
"Name": "wireguard", "name": "wireguard",
"Description": "WireGuard default port", "description": "WireGuard default port",
"Protocol": "udp", "protocol": "udp",
"FromPort": 51820 "fromport": 51820
}, },
{ {
"Name": "ssh", "name": "ssh",
"Description": "SSH", "description": "SSH",
"Protocol": "tcp", "protocol": "tcp",
"FromPort": 22 "fromport": 22
}, },
{ {
"Name": "nodeport", "name": "nodeport",
"Description": "NodePort", "description": "NodePort",
"Protocol": "tcp", "protocol": "tcp",
"FromPort": 30000, "fromport": 30000,
"ToPort": 32767 "toport": 32767
}, },
{ {
"Name": "debugd", "name": "debugd",
"Description": "debugd default port", "description": "debugd default port",
"Protocol": "tcp", "protocol": "tcp",
"FromPort": 4000 "fromport": 4000
} }
] ]
} }
@ -182,42 +182,42 @@ See this example on what the possible settings are and how to setup the constell
"azureConfig": { "azureConfig": {
"image": "/subscriptions/0d202bbb-4fa7-4af8-8125-58c269a05435/resourceGroups/CONSTELLATION-IMAGES/providers/Microsoft.Compute/galleries/Constellation/images/constellation-coreos-debugd/versions/0.0.TIMESTAMP", "image": "/subscriptions/0d202bbb-4fa7-4af8-8125-58c269a05435/resourceGroups/CONSTELLATION-IMAGES/providers/Microsoft.Compute/galleries/Constellation/images/constellation-coreos-debugd/versions/0.0.TIMESTAMP",
"networkSecurityGroupInput": { "networkSecurityGroupInput": {
"Ingress": [ "ingress": [
{ {
"Name": "coordinator", "name": "coordinator",
"Description": "Coordinator default port", "description": "Coordinator default port",
"Protocol": "tcp", "protocol": "tcp",
"IPRange": "0.0.0.0/0", "iprange": "0.0.0.0/0",
"FromPort": 9000 "fromport": 9000
}, },
{ {
"Name": "wireguard", "name": "wireguard",
"Description": "WireGuard default port", "description": "WireGuard default port",
"Protocol": "udp", "protocol": "udp",
"IPRange": "0.0.0.0/0", "iprange": "0.0.0.0/0",
"FromPort": 51820 "fromport": 51820
}, },
{ {
"Name": "ssh", "name": "ssh",
"Description": "SSH", "description": "SSH",
"Protocol": "tcp", "protocol": "tcp",
"IPRange": "0.0.0.0/0", "iprange": "0.0.0.0/0",
"FromPort": 22 "fromport": 22
}, },
{ {
"Name": "nodeport", "name": "nodeport",
"Description": "NodePort", "description": "NodePort",
"Protocol": "tcp", "protocol": "tcp",
"IPRange": "0.0.0.0/0", "iprange": "0.0.0.0/0",
"FromPort": 30000, "fromport": 30000,
"ToPort": 32767 "toport": 32767
}, },
{ {
"Name": "debugd", "name": "debugd",
"Description": "debugd default port", "description": "debugd default port",
"Protocol": "tcp", "protocol": "tcp",
"IPRange": "0.0.0.0/0", "iprange": "0.0.0.0/0",
"FromPort": 4000 "fromport": 4000
} }
] ]
} }