diff --git a/admin/deploy/values.yaml b/admin/deploy/values.yaml index 365204f..8663299 100644 --- a/admin/deploy/values.yaml +++ b/admin/deploy/values.yaml @@ -80,6 +80,7 @@ admin: COOKIE_SECURE: false COOKIE_SAME_SITE: lax APP_NEXTAUTH_SECRET: "" + ADMIN_RPC_URL: adminrpc.gitdataai.svc.cluster.local:3001 nodeSelector: { } diff --git a/scripts/push.js b/scripts/push.js index 5d9afa9..fa95d9d 100644 --- a/scripts/push.js +++ b/scripts/push.js @@ -21,7 +21,7 @@ const TAG = process.env.TAG || GIT_SHA_SHORT; const DOCKER_USER = process.env.DOCKER_USER || process.env.HARBOR_USERNAME; const DOCKER_PASS = process.env.DOCKER_PASS || process.env.HARBOR_PASSWORD; -const SERVICES = ['app', 'gitserver', 'email-worker', 'git-hook', 'operator', 'static']; +const SERVICES = ['app', 'gitserver', 'email-worker', 'git-hook', 'operator', 'static', 'adminrpc']; const args = process.argv.slice(2); const targets = args.length > 0 ? args : SERVICES;