We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97c712 commit a2d1582Copy full SHA for a2d1582
1 file changed
src/clusterfuzz/_internal/k8s/service.py
@@ -176,7 +176,7 @@ def __init__(self, k8s_config_loaded: bool = False):
176
def _load_gke_credentials(self):
177
"""Loads GKE credentials and configures the Kubernetes client."""
178
credentials, _ = google.auth.default()
179
- project = utils.get_application_id()
+ project = environment.get_value('K8S_PROJECT')
180
service = discovery.build('container', 'v1', credentials=credentials)
181
parent = f'projects/{project}/locations/-'
182
0 commit comments