def add_game_server()

in NodePortController/src/main.py [0:0]


def add_game_server(instance_id, public_ip, node_port):
    response = fleetiq.register_game_server(
        GameServerGroupName='arn:aws:gamelift:us-west-2:820537372947:gameservergroup/MyGameServerGroup', #required GameServerGroup name or ARN
        GameServerId=str(uuid.uuid1()), #required self-defined uniqueId
        InstanceId=instance_id, #required InstanceId
        ConnectionInfo=public_ip + ':' + str(node_port) # is the public IP of the instance and the node port of the pod
    )
    logging.debug(response)