Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kubernetes-retired/kube-aws
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.10.2
Choose a base ref
...
head repository: kubernetes-retired/kube-aws
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.10.x
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 13, 2018

  1. Relax rules for controllers connecting to worker nodes. This is to al…

    …low migration to multi-region with significant downtime whilst existing nodes can not be accessed by the new masters. (#1492)
    davidmccormick authored Dec 13, 2018
    Copy the full SHA
    8e53b31 View commit details
Showing with 9 additions and 0 deletions.
  1. +9 −0 core/controlplane/config/templates/stack-template.json
9 changes: 9 additions & 0 deletions core/controlplane/config/templates/stack-template.json
Original file line number Diff line number Diff line change
@@ -1278,6 +1278,15 @@
"ToPort": 22
},
{{end -}}
{{ $ports := splitList "," "5473,8472,10250,4194,10255,9100" -}}
{{ range $_, $port := $ports -}}
{
"CidrIp": "{{ $.VPCCIDR }}",
"FromPort": {{ $port }},
"IpProtocol": "tcp",
"ToPort": {{ $port }}
},
{{ end -}}
{
"CidrIp": "0.0.0.0/0",
"FromPort": -1,