Skip to content

Commit

Permalink
Merge pull request #314 from alexander-demicev/fixawsexample
Browse files Browse the repository at this point in the history
Fix ingress rules in AWS example
  • Loading branch information
alexander-demicev committed May 20, 2024
2 parents 98db7f6 + ca27726 commit cb12bc7
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions samples/aws/internal/cluster-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,19 @@ spec:
- port: 9345
protocol: "TCP"
ingressRules:
- description: "RKE2 Control Plane"
protocol: "tcp"
fromPort: 9345
toPort: 9345
sourceSecurityGroupRoles:
- node
- controlplane
- description: RKE2 Control Plane
fromPort: 9345
protocol: tcp
sourceSecurityGroupRoles:
- node
- controlplane
toPort: 9345
- description: Kubernetes API
fromPort: 6443
protocol: tcp
toPort: 6443
cidrBlocks:
- "0.0.0.0/0"
region: ${AWS_REGION}
sshKeyName: ${AWS_SSH_KEY_NAME}

Expand Down

0 comments on commit cb12bc7

Please sign in to comment.