You can use cbar.ax.set_xticklabels to change the rotation (or set_yicklabels if you have a vertical color bar).
cbar.ax.set_xticklabels(clevs1[::1],rotation=90)

EDIT:
To set ticks correctly, you can search where clevs1 should be used in your clevs1 array, and use it to index clevs1 when you set_xticklabels :
tick_start = np.argmin(abs(clevs1-clevs[0])) cbar.ax.set_xticklabels(clevs1[tick_start:],rotation=90)

source share