melodic-market-42092
06/23/2022, 1:49 PMk3d cluster create $CLUSTER_NAME -p "8081:3000@loadbalancer"
to create my local cluster and get something exposed. This works well, but now I'd like to expose two things. Is that possible? Can I do something like k3d cluster create $CLUSTER_NAME -p "8081:3000,8082:8000@loadbalancer"
?-p
🙂k3d cluster create $CLUSTER_NAME -p "8081:3000@loadbalancer" -p "8082:8000@loadbalancer"
wide-garage-9465
06/23/2022, 2:10 PMk3d cluster edit
if you forgot to add a port during creation 😉melodic-market-42092
06/23/2022, 2:10 PM