test(e2e): use upstream fake-gcs-server (#189)

Since https://github.com/fsouza/fake-gcs-server/pull/1827 has been
merged, we can go back to use the upstream version of the image.

Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
This commit is contained in:
Francesco Canovai 2025-03-05 14:49:11 +01:00 committed by GitHub
parent aba0748789
commit 0341b688c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,10 +67,8 @@ func newGCSDeployment(namespace, name string) *appsv1.Deployment {
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: name,
// TODO: use the official image when https://github.com/fsouza/fake-gcs-server/pull/1827
// is merged and released
Image: "ghcr.io/fcanovai/fake-gcs-server:latest",
Name: name,
Image: "fsouza/fake-gcs-server:latest",
Ports: []corev1.ContainerPort{
{
ContainerPort: 4443,