Magento: agregue un nuevo atributo a todos los productos

Quiero agregar un nuevo atributo a todos los productos. Lo hice con un script de instalación a través de

$installer = $this;
$installer->startSetup();

$this->addAttribute('catalog_product','test2',array(
    'label'     => 'test2',
    'type'      => 'varchar',
    'visible'   => true,
    'required'  => false,
    'required'  => 0
));

Pero, ¿cómo puedo agregar valores a este atributo por

$entityTypeId     = $installer->getEntityTypeId('catalog_product');
$attributeSetId   = $installer->getDefaultAttributeSetId($entityTypeId);
$attributeGroupId = $installer->getDefaultAttributeGroupId($entityTypeId, $attributeSetId);
$installer->addAttributeGroup($entityTypeId, 'Default', 'test2', 0);
$installer->endSetup();

Respuestas a la pregunta(6)

Su respuesta a la pregunta