From 75e2ba4d9553cf2cd8df645f7e87f2faba36fcdc Mon Sep 17 00:00:00 2001 From: leovct Date: Fri, 26 Apr 2024 16:29:50 +0200 Subject: [PATCH] fix: kubernetes deployment --- deploy_zkevm_contracts.star | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy_zkevm_contracts.star b/deploy_zkevm_contracts.star index 2bd23490f..988038aae 100644 --- a/deploy_zkevm_contracts.star +++ b/deploy_zkevm_contracts.star @@ -75,6 +75,9 @@ def run(plan, args): ] ), }, + # These two lines are only necessary to deploy to any Kubernetes environment (e.g. GKE). + entrypoint=["bash", "-c"], + cmd=["sleep infinity"], user=User(uid=0, gid=0), # Run the container as root user. ), )