<?php
$metas = '';
$count = 0;

$tags=get_the_tags($post->ID);
if ($tags) {
  foreach($tags as $tag) {
    $count++;
    if ($count <= 10) {
      $metas .= $tag->name . ', ';
    }
  }
  echo substr($metas,0,-2);
}
?>