## Python 2, 62 bytes

<!-- language: lang-python -->

 i=n=input()
 while n+i-1:i-=1;j=abs(i);print' '*j+'* '*(2*n+~j)

Prints a trailing space at the end of each line.