Skip to content

Commit 418e729

Browse files
Specify tags for gcloud containers
1 parent 08a76b2 commit 418e729

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/modules/gcloud/src/bigquery-emulator-container.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { BigQuery, TableSchema } from "@google-cloud/bigquery";
22
import { BigQueryEmulatorContainer, StartedBigQueryEmulatorContainer } from "./bigquery-emulator-container";
33

4-
const IMAGE = "ghcr.io/goccy/bigquery-emulator";
4+
const IMAGE = "ghcr.io/goccy/bigquery-emulator:0.6.6";
55

66
describe("BigQueryEmulatorContainer", { timeout: 240_000 }, () => {
77
it("should work using default version", async () => {

packages/modules/gcloud/src/cloudstorage-emulator-container.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { setupServer } from "msw/node";
33
import { ReadableStream } from "node:stream/web";
44
import { CloudStorageEmulatorContainer, StartedCloudStorageEmulatorContainer } from "./cloudstorage-emulator-container";
55

6-
const IMAGE = "fsouza/fake-gcs-server";
6+
const IMAGE = "fsouza/fake-gcs-server:1.52.2";
77

88
async function getRequestBodyFromReadableStream(stream: ReadableStream<Uint8Array>): Promise<string> {
99
const decoder = new TextDecoder();

packages/modules/gcloud/src/datastore-emulator-container.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Datastore } from "@google-cloud/datastore";
22
import { DatastoreEmulatorContainer, StartedDatastoreEmulatorContainer } from "./datastore-emulator-container";
33

4-
const IMAGE = "gcr.io/google.com/cloudsdktool/cloud-sdk";
4+
const IMAGE = "gcr.io/google.com/cloudsdktool/cloud-sdk:517.0.0-emulators";
55

66
describe("DatastoreEmulatorContainer", { timeout: 240_000 }, () => {
77
// datastore4 {

packages/modules/gcloud/src/firestore-emulator-container.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import admin from "firebase-admin";
22
import { FirestoreEmulatorContainer, StartedFirestoreEmulatorContainer } from "./firestore-emulator-container";
33

4-
const IMAGE = "gcr.io/google.com/cloudsdktool/cloud-sdk";
4+
const IMAGE = "gcr.io/google.com/cloudsdktool/cloud-sdk:517.0.0-emulators";
55

66
describe("FirestoreEmulatorContainer", { timeout: 240_000 }, () => {
77
afterEach(async () => {

packages/modules/gcloud/src/pubsub-emulator-container.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { PubSub } from "@google-cloud/pubsub";
22
import { PubSubEmulatorContainer, StartedPubSubEmulatorContainer } from "./pubsub-emulator-container";
33

4-
const IMAGE = "gcr.io/google.com/cloudsdktool/google-cloud-cli";
4+
const IMAGE = "gcr.io/google.com/cloudsdktool/google-cloud-cli:517.0.0-emulators";
55

66
describe("PubSubEmulatorContainer", { timeout: 240_000 }, () => {
77
it("should work using default version", async () => {

0 commit comments

Comments
 (0)