Send data from bitbucket pipeline to EC2 instance

0

Hey, To describe my problem: I have an EC2 instance with the Allure Test docker container running on it. Allure is a test management platform for unit tests. The tests are generated with a bitbucket pipeline automatically every day. Now I want to send the test data files through the pipeline to the EC2 instance. All I found is about deploying a application with the service CodeDeploy but all I want is to send files from the pipeline to the file system of the instance.

Is that possible and if yes, can anyone help me with this issue?

BR, Mark

preguntada hace 4 meses155 visualizaciones
1 Respuesta
0

Hi,

To keep things simple, why don't you use just S3: you create an additional stage in your pipeline where you push the test data files to S3.

Then, you add some polling mechanism from the EC2 instance ( through extension of existing initial test script or so) to poll the S3 and look for new files. When there are some, the script on EC2 copy them onto the instance file instance for use in next round of tests.

You can sophisticate if you wish by adding a Lambda trigger on the S3 writes by the pipeline to avoid polling from EC2: the Lambda would ssh to EC2 to trigger the copy script. But, that's probably overkill for the current use case that you describe.

Best,

Didier

profile pictureAWS
EXPERTO
respondido hace 4 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas