Skip to content
Snippets Groups Projects
Commit 22d600e8 authored by Abdelsalam Abbas's avatar Abdelsalam Abbas
Browse files

fix azure kubernetes port to 6443

parent 99202328
No related branches found
No related tags found
No related merge requests found
......@@ -62,8 +62,8 @@
"id": "[concat(variables('lbID'), '/backendAddressPools/kube-api-backend')]"
},
"protocol": "tcp",
"frontendPort": 443,
"backendPort": 443,
"frontendPort": 6443,
"backendPort": 6443,
"enableFloatingIP": false,
"idleTimeoutInMinutes": 5,
"probe": {
......@@ -77,7 +77,7 @@
"name": "kube-api",
"properties": {
"protocol": "tcp",
"port": 443,
"port": 6443,
"intervalInSeconds": 5,
"numberOfProbes": 2
}
......@@ -193,4 +193,4 @@
} {% if not loop.last %},{% endif %}
{% endfor %}
]
}
\ No newline at end of file
}
......@@ -92,7 +92,7 @@
"description": "Allow secure kube-api",
"protocol": "Tcp",
"sourcePortRange": "*",
"destinationPortRange": "443",
"destinationPortRange": "6443",
"sourceAddressPrefix": "Internet",
"destinationAddressPrefix": "*",
"access": "Allow",
......@@ -106,4 +106,4 @@
"dependsOn": []
}
]
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment