UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 9f92590e authored by Ryan Garcia's avatar Ryan Garcia :dizzy:
Browse files

Merge branch '1537-unblock-6443-for-workstations-in-k3d-dev' into 'master'

Added port 6443 during private instance deployment to allow workstations to use kubetl

Closes #1537

See merge request !2842
parents 488af0f3 76f8fef2
No related branches found
No related tags found
1 merge request!2842Added port 6443 during private instance deployment to allow workstations to use kubectl
......@@ -293,6 +293,7 @@ if [[ "${RESET_K3D}" == false ]]; then
if [[ "$PRIVATE_IP" == true ]];
then
aws ec2 authorize-security-group-ingress --output json --no-cli-pager --group-name ${SGname} --protocol tcp --port 22 --cidr ${WorkstationIP}/32
aws ec2 authorize-security-group-ingress --output json --no-cli-pager --group-name ${SGname} --protocol tcp --port 6443 --cidr ${WorkstationIP}/32
else # all protocols to all ports is the default
aws ec2 authorize-security-group-ingress --output json --no-cli-pager --group-name ${SGname} --protocol all --cidr ${WorkstationIP}/32
fi
......
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