#!/bin/bash


host=$1

if [ "x$host" == "x" ]
then
    echo "Please give host of kubernetes master as argument"
    exit
fi


admin=`ssh $host -lroot kubectl get service -n oas|grep single-sign-on-kratos-admin | awk '{print $3'}`
public=`ssh $host -lroot kubectl get service -n oas|grep single-sign-on-kratos-public | awk '{print $3}'`

echo "Admin port will be at localhost:8000, public port will be at localhost:
8080"
     
ssh -L 8000:$admin:80 -L 8080:$public:80 root@$host