Skip to content

Commit

Permalink
chore(release): [ci skip] bump quickstart image to sha256@5e22691e068…
Browse files Browse the repository at this point in the history
…5e5a6ba1449b8e1c80764f21b643f4e1c031d56ec9696abfa0144
  • Loading branch information
galoybot committed Jan 24, 2024
1 parent 84f91fb commit 1c35e30
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 30 deletions.
29 changes: 20 additions & 9 deletions quickstart/dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,21 @@ local_resource(

pay_target = "//apps/pay:dev"
if is_ci:
pay_target = '//apps/pay:pay'
pay_target = '//apps/pay:pay-ci'
pay_env = {
"PORT": "3002",
"CORE_GQL_URL_INTRANET": "http://localhost:4455/graphql",
"NEXT_PUBLIC_CORE_GQL_URL": "http://localhost:4455/graphql",
"NEXT_PUBLIC_CORE_GQL_WEB_SOCKET_URL": "ws://localhost:4455/graphqlws",
"NEXT_PUBLIC_PAY_DOMAIN": "localhost:3002",
}
local_resource(
"pay",
labels = ["apps"],
cmd = "buck2 build {}".format(pay_target),
serve_cmd = "buck2 run {}".format(pay_target),
serve_env = {
"PORT": "3002",
"CORE_GQL_URL_INTRANET": "http://localhost:4455/graphql",
"NEXT_PUBLIC_CORE_GQL_URL": "http://localhost:4455/graphql",
"NEXT_PUBLIC_CORE_GQL_WEB_SOCKET_URL": "wss://localhost:4455/graphql",
"NEXT_PUBLIC_PAY_DOMAIN": "localhost:3002",
},
env = pay_env,
serve_env = pay_env,
deps = _buck2_dep_inputs(pay_target),
allow_parallel = True,
resource_deps = [
Expand Down Expand Up @@ -145,11 +147,12 @@ pay_test_target = "//apps/pay:test-integration"
local_resource(
"pay-test",
labels = ["test"],
auto_init = is_ci and DASHBOARD_TEST_LABEL in cfg.get("test", []),
auto_init = is_ci and PAY_TEST_LABEL in cfg.get("test", []),
cmd = "buck2 test {}".format(pay_test_target),
resource_deps = [
"api",
"pay",
"add-test-users-with-usernames",
],
)

Expand Down Expand Up @@ -314,9 +317,11 @@ local_resource(
),
deps = _buck2_dep_inputs(api_target),
resource_deps = [
"price",
"init-onchain",
"init-lightning",
"lnd1",
"lnd2",
"redis",
"mongodb",
"oathkeeper",
Expand All @@ -343,8 +348,10 @@ local_resource(
),
deps = _buck2_dep_inputs(api_trigger_target),
resource_deps = [
"price",
"init-onchain",
"lnd1",
"lnd2",
"redis",
"mongodb",
"oathkeeper",
Expand All @@ -370,8 +377,10 @@ local_resource(
),
deps = _buck2_dep_inputs(api_exporter_target),
resource_deps = [
"price",
"init-onchain",
"lnd1",
"lnd2",
"redis",
"mongodb",
"oathkeeper",
Expand All @@ -397,8 +406,10 @@ local_resource(
),
deps = _buck2_dep_inputs(api_ws_server_target),
resource_deps = [
"price",
"init-onchain",
"lnd1",
"lnd2",
"redis",
"mongodb",
"oathkeeper",
Expand Down
8 changes: 4 additions & 4 deletions quickstart/docker-compose.tmpl.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#@ load("@ytt:data", "data")

#@ galoy_api_image_digest = "sha256@64d2fe174418c9e2657127a5a8b73b2b7f2eae5353757f2a2f664e64e19249e2"
#@ galoy_trigger_image_digest = "sha256@56485e0fbc66c826210c0b1a1c8f7076ae9b204ac1abc1fd737afdb44b8fe87d"
#@ mongodb_migrate_image_digest = "sha256@8919fb123a262bbac68f9ecad8ae5d6b27972000c7e0001addd3661eb84e06e3"
#@ galoy_notifications_image_digest = "sha256@e8646173695d5be79d939e9912c22dfa1791eca73cbeb15b1d58e30004852629"
#@ galoy_api_image_digest = "sha256@5e22691e0685e5a6ba1449b8e1c80764f21b643f4e1c031d56ec9696abfa0144"
#@ galoy_trigger_image_digest = "sha256@9f7e2fc014f41391fe4db4ddee96f3343e248395e44edad489f153362f2d4173"
#@ mongodb_migrate_image_digest = "sha256@e14acab6e42e04417c4d84459f952f3bc3871dedb276e85becc6fd7f6bfc89d0"
#@ galoy_notifications_image_digest = "sha256@043f748b8190a7aacd9b5b30607a40203d26ecd6e08a3e71b4a1232984eef644"

#@ core_env = [
#@ "HELMREVISION=dev",
Expand Down
8 changes: 4 additions & 4 deletions quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
- POSTGRES_PASSWORD=secret
- POSTGRES_DB=hydra
galoy:
image: us.gcr.io/galoy-org/galoy-api@sha256:64d2fe174418c9e2657127a5a8b73b2b7f2eae5353757f2a2f664e64e19249e2
image: us.gcr.io/galoy-org/galoy-api@sha256:5e22691e0685e5a6ba1449b8e1c80764f21b643f4e1c031d56ec9696abfa0144
environment:
- HELMREVISION=dev
- NETWORK=regtest
Expand Down Expand Up @@ -161,7 +161,7 @@ services:
aliases:
- bats-tests
trigger:
image: us.gcr.io/galoy-org/galoy-api-trigger@sha256:56485e0fbc66c826210c0b1a1c8f7076ae9b204ac1abc1fd737afdb44b8fe87d
image: us.gcr.io/galoy-org/galoy-api-trigger@sha256:9f7e2fc014f41391fe4db4ddee96f3343e248395e44edad489f153362f2d4173
environment:
- HELMREVISION=dev
- NETWORK=regtest
Expand Down Expand Up @@ -213,7 +213,7 @@ services:
- bria
- mongodb
notifications:
image: us.gcr.io/galoy-org/galoy-notifications@sha256:e8646173695d5be79d939e9912c22dfa1791eca73cbeb15b1d58e30004852629
image: us.gcr.io/galoy-org/galoy-notifications@sha256:043f748b8190a7aacd9b5b30607a40203d26ecd6e08a3e71b4a1232984eef644
environment:
- PG_CON=postgres://user:password@notifications-pg:5432/pg
- OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-agent:4318
Expand Down Expand Up @@ -248,7 +248,7 @@ services:
environment:
- MONGO_INITDB_DATABASE=galoy
mongodb-migrate:
image: us.gcr.io/galoy-org/galoy-api-migrate@sha256:8919fb123a262bbac68f9ecad8ae5d6b27972000c7e0001addd3661eb84e06e3
image: us.gcr.io/galoy-org/galoy-api-migrate@sha256:e14acab6e42e04417c4d84459f952f3bc3871dedb276e85becc6fd7f6bfc89d0
depends_on:
- mongodb
environment:
Expand Down
18 changes: 9 additions & 9 deletions quickstart/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- git:
commitTitle: 'chore(quickstart): for update notifications'
sha: 71eaf1667a327bb0218d607ecc0cb684eaa9e793
commitTitle: 'test(pay): add cypress e2e (#3850)...'
sha: 84f91fb5bda8a47bf8a8855d43533d23b0b736d0
tags:
- 0.20.26-3-g71eaf1667
- 0.20.28-1-g84f91fb5b
path: ./
path: dev
- contents:
- git:
commitTitle: 'chore(quickstart): for update notifications'
sha: 71eaf1667a327bb0218d607ecc0cb684eaa9e793
commitTitle: 'test(pay): add cypress e2e (#3850)...'
sha: 84f91fb5bda8a47bf8a8855d43533d23b0b736d0
tags:
- 0.20.26-3-g71eaf1667
- 0.20.28-1-g84f91fb5b
path: schemas/
- git:
commitTitle: 'chore(quickstart): for update notifications'
sha: 71eaf1667a327bb0218d607ecc0cb684eaa9e793
commitTitle: 'test(pay): add cypress e2e (#3850)...'
sha: 84f91fb5bda8a47bf8a8855d43533d23b0b736d0
tags:
- 0.20.26-3-g71eaf1667
- 0.20.28-1-g84f91fb5b
path: gql/
path: ./graphql
kind: LockConfig
6 changes: 3 additions & 3 deletions quickstart/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ directories:
- path: ./
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 71eaf1667a327bb0218d607ecc0cb684eaa9e793
ref: 84f91fb5bda8a47bf8a8855d43533d23b0b736d0
includePaths:
- dev/**/*
excludePaths:
Expand All @@ -18,15 +18,15 @@ directories:
- path: schemas/
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 71eaf1667a327bb0218d607ecc0cb684eaa9e793
ref: 84f91fb5bda8a47bf8a8855d43533d23b0b736d0
includePaths:
- core/api/src/graphql/public/schema.graphql
- core/api/src/graphql/admin/schema.graphql
newRootPath: core/api/src/graphql
- path: gql/
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 71eaf1667a327bb0218d607ecc0cb684eaa9e793
ref: 84f91fb5bda8a47bf8a8855d43533d23b0b736d0
includePaths:
- bats/gql/**/*
newRootPath: bats/gql
2 changes: 1 addition & 1 deletion quickstart/vendir/values.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#@data/values
---
galoy_git_ref: 71eaf1667a327bb0218d607ecc0cb684eaa9e793
galoy_git_ref: 84f91fb5bda8a47bf8a8855d43533d23b0b736d0

0 comments on commit 1c35e30

Please sign in to comment.