Skip to content

Commit 6f0be4b

Browse files
committed
test
1 parent b49ead7 commit 6f0be4b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

cleanup_watcher.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import requests
44
from google.cloud import run_v2
55

6+
for name, value in os.environ.items():
7+
print("{0}: {1}".format(name, value))
8+
69
PROJECT = os.getenv("GOOGLE_CLOUD_PROJECT")
710
REGION = os.getenv("GOOGLE_CLOUD_REGION", "us-central1")
811
SERVICE_NAME = os.getenv("K_SERVICE")
@@ -11,6 +14,9 @@
1114

1215

1316
def delete_service():
17+
print("Deleting service")
18+
for name, value in os.environ.items():
19+
print("{0}: {1}".format(name, value))
1420
if not PROJECT or not SERVICE_NAME:
1521
print("Cannot delete: missing env vars")
1622
return

0 commit comments

Comments
 (0)