Thomas E Lackey
01deac78c4
880: Support new compile/generate syntax for next >=14.2.0 ( #886 )
...
Publish / Build and publish (push) Failing after 6s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Fix for https://git.vdb.to/cerc-io/stack-orchestrator/issues/880 to support the next compile/generate syntax.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/886
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-07-24 20:20:16 +00:00
zramsay
80cff73344
crn --> lrn
2024-07-23 20:20:01 -04:00
zramsay
21b1270d27
fix lint
2024-07-23 20:16:16 -04:00
zramsay
008389dcd8
cns --> registry and other fixes
2024-07-23 20:10:06 -04:00
David Boreham
c81fb9581a
Fix stack path check ( #877 )
...
Webapp Test / Run webapp test suite (push) Failing after 5s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/877
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-07-19 17:16:40 +00:00
David Boreham
83397bbae4
Enable cors in laconicd http services ( #875 )
...
Webapp Test / Run webapp test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/875
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-07-15 05:23:18 +00:00
David Boreham
7fb9ccdfd8
Work around explorer host name sensitivity
2024-07-14 20:51:11 -06:00
David Boreham
2bad59dfcd
Add missing file to explorer container ( #873 )
...
Webapp Test / Run webapp test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/873
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-07-14 17:40:35 +00:00
David Boreham
13d04e9256
Integrate ping-pub explorer ( #872 )
...
Webapp Test / Run webapp test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/872
2024-07-13 14:24:23 +00:00
zramsay
1f017c9066
increase CERC_MAX_GENERATE_TIME for webapps ( #857 )
...
Publish / Build and publish (push) Failing after 6s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
sort of addresses #856
Co-authored-by: zramsay <zach@bluecollarcoding.ca>
Co-authored-by: David Boreham <dboreham@noreply.git.vdb.to>
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/857
Co-authored-by: zramsay <zramsay@noreply.git.vdb.to>
Co-committed-by: zramsay <zramsay@noreply.git.vdb.to>
2024-07-12 19:01:35 +00:00
VPhung24
3b9422095c
Add support for bun as a webapp package manager ( #800 )
...
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
This is working off pull request "[Add support for pnpm as a webapp build tool. #767 ](https://git.vdb.to/cerc-io/stack-orchestrator/pulls/767/files )" that adds `pnpm` package manager support for `nextjs` & `webapps`.
`bun` default build output directory (defined as `CERC_BUILD_OUTPUT_DIR`) is `dist` which should already be handled with `pnpm` support in the previously mentioned [pull request](https://git.vdb.to/cerc-io/stack-orchestrator/pulls/767/files )
Installing `bun` using `npm` following our previous `pnpm` installation
```zsh
npm install -g bun
```
We'll be using `bun` as a package manager that works with `Node.js` projects as defined in bun's [docs](https://bun.sh/docs/cli/install )
> The bun CLI contains a Node.js-compatible package manager designed to be a dramatically faster replacement for npm, yarn, and pnpm. It's a standalone tool that will work in pre-existing Node.js projects; if your project has a package.json, bun install can help you speed up your workflow.
To test `next.js` apps using `node.js` and compatibility with all four packager managers -- `npm`, `yarn`, `pnpm`, and `bun` -- use the branches of snowball's [nextjs-package-manager-example-app](https://git.vdb.to/snowball/nextjs-package-manager-example-app ) repo: `nextjs-package-manager/npm`, `nextjs-package-manager/yarn`, `nextjs-package-manager/pnpm`, `nextjs-package-manager/bun`.
Co-authored-by: Vivian Phung <dev+github@vivianphung.com>
Co-authored-by: David Boreham <dboreham@noreply.git.vdb.to>
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/800
Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
Co-authored-by: VPhung24 <vphung24@noreply.git.vdb.to>
Co-committed-by: VPhung24 <vphung24@noreply.git.vdb.to>
2024-07-09 18:00:14 +00:00
Roy Crihfield
36d4969b2d
Fixes for external stack deployment ( #851 )
...
Publish / Build and publish (push) Failing after 11s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 2s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Fixes
- stack path resolution for `build`
- external stack path resolution for deployments
- "extra" config detection
- `deployment ports` command
- `version` command in dist or source install (without build_tag.txt)
- `setup-repos`, so it won't die when an existing repo is not at a branch or exact tag
Used in https://git.vdb.to/cerc-io/fixturenet-eth-stacks/pulls/14
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/851
Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
2024-07-09 15:37:35 +00:00
David Boreham
62f7825ec2
Remove quotes from git config
2024-07-05 09:55:14 -06:00
David Boreham
6d24d4a7e6
Set github auth token if present ( #868 )
...
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/868
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-07-05 12:27:22 +00:00
David Boreham
f06e5f9a2a
Don't try to tag remote images ( #866 )
...
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 2s
Details
Publish / Build and publish (push) Failing after 4s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/866
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-07-04 23:51:06 +00:00
David Boreham
c3a1402042
Derive the webapp host container id from stable data ( #865 )
...
Deploy Test / Run deploy test suite (push) Failing after 5s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/865
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-07-04 22:38:07 +00:00
David Boreham
ca5fffaed5
Add logging to webapp deployer ( #863 )
...
Helps with diagnosing failures and odd behavior seen in the deployer in production.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/863
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-07-04 19:46:42 +00:00
David Boreham
df776c1b4c
Install git for apps that want to get their commit sha ( #854 )
...
Lint Checks / Run linter (push) Failing after 4s
Details
Publish / Build and publish (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/854
Reviewed-by: Thomas E Lackey <telackey@noreply.git.vdb.to>
Co-authored-by: David Boreham <dboreham@noreply.git.vdb.to>
Co-committed-by: David Boreham <dboreham@noreply.git.vdb.to>
2024-06-25 05:03:49 +00:00
David Boreham
0eaa5b8f09
Fix argument errors in command code
2024-06-24 14:15:46 -06:00
David Boreham
fd15252c3f
Fixes for current SO objects
2024-06-24 13:41:15 -06:00
David Boreham
2364924a59
Fix mainnet laconic deploy setup
2024-06-21 19:24:33 -06:00
Nabarun
a223797b4a
Update graph-node dashboard to show individual subgraph increase in query count ( #846 )
...
Lint Checks / Run linter (push) Failing after 4s
Details
Publish / Build and publish (push) Failing after 6s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Part of [Metrics and logging for GQL queries in watcher](https://www.notion.so/Metrics-and-logging-for-GQL-queries-in-watcher-928c692292b140a2a4f52cda9795df5e )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/846
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2024-06-20 09:27:23 +00:00
Nabarun
b8004e9870
Add Grafana panels for graph-node subgraph GQL queries ( #845 )
...
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Part of [Deploy v2 and updated v3 sushiswap subgraphs](https://www.notion.so/Deploy-v2-and-updated-v3-sushiswap-subgraphs-e331945fdeea487c890706fc22c6cc94 )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/845
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2024-06-19 10:40:54 +00:00
Nabarun
842d999792
Add alert rules for secured secured-finance subgraph watcher ( #842 )
...
Lint Checks / Run linter (push) Failing after 5s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Part of [Generate secured-finance subgraph watcher with codegen](https://www.notion.so/Generate-secured-finance-subgraph-watcher-with-codegen-2923413e0af54ea787c5435d6966f3bb )
- Update watcher dashboard labels
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/842
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2024-06-18 12:28:02 +00:00
David Boreham
bf1eccd486
Fix image tag name
2024-06-13 08:31:45 -06:00
David Boreham
3fb025b5c9
Make remote image tags unique to the deployment ( #838 )
...
Webapp Test / Run webapp test suite (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/838
Reviewed-by: Thomas E Lackey <telackey@noreply.git.vdb.to>
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-06-13 03:26:58 +00:00
Prathamesh Musale
4acb06325b
Update watcher dashboard and config templates ( #835 )
...
Lint Checks / Run linter (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 4s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Part of [Metrics and logging for GQL queries in watcher](https://www.notion.so/Metrics-and-logging-for-GQL-queries-in-watcher-928c692292b140a2a4f52cda9795df5e )
- Update watcher config templates after config refactoring
- Mount watcher GQL query log files on volumes
- Update watcher dashboard to
- add a panel to show latest processed block number
- use latest processed block from sync status for diff values
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/835
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-06-12 11:52:51 +00:00
David Boreham
9a1d3bb0f1
Remove files migrated to external repo
2024-06-06 20:44:51 -06:00
Prathamesh Musale
abc0c2423f
Add panels for GQL metrics to watcher dashboard ( #834 )
...
Lint Checks / Run linter (push) Failing after 5s
Details
Publish / Build and publish (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Part of [Metrics and logging for GQL queries in watcher](https://www.notion.so/Metrics-and-logging-for-GQL-queries-in-watcher-928c692292b140a2a4f52cda9795df5e )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/834
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-06-06 11:47:18 +00:00
Nabarun
a322d6eed4
Add dashboard for graph-node subgraphs ( #832 )
...
Deploy Test / Run deploy test suite (push) Failing after 6s
Details
Smoke Test / Run basic test suite (push) Failing after 4s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Part of [Deploy v2 and updated v3 sushiswap subgraphs](https://www.notion.so/Deploy-v2-and-updated-v3-sushiswap-subgraphs-e331945fdeea487c890706fc22c6cc94 )
- Add param `GRAPH_ETHEREUM_BLOCK_INGESTOR_MAX_CONCURRENT_JSON_RPC_CALLS_FOR_TXN_RECEIPTS` in graph-node stack
- <https://github.com/graphprotocol/graph-node/blob/v0.31.0/docs/environment-variables.md#json-rpc-configuration-for-evm-chains >
- Add dashboard for subgraphs deployment in graph-node
- Show subgraph names in dashboard
- Add watcher dashboard panel for showing watcher release version and commit hash
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/832
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2024-06-04 07:21:27 +00:00
Prathamesh Musale
ed8914b8d3
Upgrade watchers and their config ( #827 )
...
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 2s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Part of [Investigate subgraph watchers lagging behind head](https://www.notion.so/Investigate-subgraph-watchers-lagging-behind-head-01b72294ca8e4f658e4c0e86b36d19e2 )
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/827
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-05-23 04:12:31 +00:00
Thomas E Lackey
fef7649683
Refactor SPA check. ( #831 )
...
Smoke Test / Run basic test suite (push) Failing after 5s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/831
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-05-22 19:00:42 +00:00
Thomas E Lackey
579b402f2f
Make the SPA detection even simpler. ( #830 )
...
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/830
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-05-22 18:31:57 +00:00
Thomas E Lackey
25d0bc8a98
Case insensitive comparison ( #829 )
...
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/829
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-05-22 18:18:27 +00:00
Thomas E Lackey
855288368c
Add messages around the SPA auto-detect. ( #828 )
...
Tweak the auto-detection logic slightly for single-page apps, and also print the results.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/828
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-05-22 17:42:28 +00:00
Prathamesh Musale
8f2da38183
Add alerts for graph-node subgraphs ( #821 )
...
Deploy Test / Run deploy test suite (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 4s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 4s
Details
Part of [Deploy v2 and updated v3 sushiswap subgraphs](https://www.notion.so/Deploy-v2-and-updated-v3-sushiswap-subgraphs-e331945fdeea487c890706fc22c6cc94 )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/821
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-05-17 04:01:41 +00:00
Prathamesh Musale
b9369a13e6
Update watcher dashboard with panels for ETH RPC request failures and durations ( #825 )
...
Publish / Build and publish (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Part of [Regenerate ajna watcher with updated subgraph config
](https://www.notion.so/Regenerate-ajna-watcher-with-updated-subgraph-config-c9bbecb033024c13a7515c7f1efc3363 )
Requires [Add metrics to monitor errors and duration for ETH RPC requests](https://github.com/cerc-io/watcher-ts/pull/507 )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/825
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-05-15 13:52:18 +00:00
Prathamesh Musale
0b1eb8eb0f
Update ajna-watcher version in ajna stack ( #824 )
...
Lint Checks / Run linter (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Part of [Regenerate ajna watcher with updated subgraph config](https://www.notion.so/Regenerate-ajna-watcher-with-updated-subgraph-config-c9bbecb033024c13a7515c7f1efc3363 )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/824
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-05-14 08:27:59 +00:00
Nabarun
78092f5793
Update subgraph watcher stacks to configure multiple RPC endpoints ( #822 )
...
Publish / Build and publish (push) Failing after 6s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Part of [Ability to configure watchers with multiple RPC endpoints](https://www.notion.so/Ability-to-configure-watchers-with-multiple-RPC-endpoints-dc8d3ff4d647404ab718dfd5a4c9035c )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/822
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
2024-05-10 04:58:30 +00:00
Prathamesh Musale
247dbdd2f0
Update subgraph watcher versions for improved `eth_getLogs` calls ( #820 )
...
Publish / Build and publish (push) Failing after 5s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 2s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Part of [Investigate subgraph watchers lagging behind head](https://www.notion.so/Investigate-subgraph-watchers-lagging-behind-head-01b72294ca8e4f658e4c0e86b36d19e2 )
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/820
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-05-07 04:18:45 +00:00
Prathamesh Musale
09a1cbb966
Additional env configuration in graph-node stack ( #812 )
...
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 2s
Details
Publish / Build and publish (push) Failing after 4s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Part of [Deploy v2 and updated v3 sushiswap subgraphs](https://www.notion.so/Deploy-v2-and-updated-v3-sushiswap-subgraphs-e331945fdeea487c890706fc22c6cc94 )
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/812
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-04-26 05:45:00 +00:00
David Boreham
13ce521d84
Fix config dir processing for external stacks ( #810 )
...
Lint Checks / Run linter (push) Failing after 6s
Details
Publish / Build and publish (push) Failing after 5s
Details
Smoke Test / Run basic test suite (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/810
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-04-23 21:47:20 +00:00
David Boreham
6e4dae9777
Add external stack support ( #806 )
...
Deploy Test / Run deploy test suite (push) Failing after 5s
Details
External Stack Test / Run external stack test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 4s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Publish / Build and publish (push) Failing after 5s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/806
Co-authored-by: David Boreham <david@bozemanpass.com>
Co-committed-by: David Boreham <david@bozemanpass.com>
2024-04-18 21:22:47 +00:00
Thomas E Lackey
9043a67c7c
Skip checks on requests we've already seen ( #805 )
...
Publish / Build and publish (push) Failing after 6s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/805
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-04-15 20:27:35 +00:00
Thomas E Lackey
7f84a45cfd
Switch repo to cerc-io org. ( #804 )
...
Update stack to track moved repo.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/804
Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
2024-04-15 18:59:08 +00:00
Thomas E Lackey
4126f2fc43
Add --fqdn-policy option to deploy-webapp-from-registry. ( #802 )
...
Webapp Test / Run webapp test suite (push) Failing after 5s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Deploy Test / Run deploy test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
This add a new option `--fqdn-policy` to the `deploy-webapp-from-registry`.
The default policy, `prohibit` means that `ApplicationDeploymentRequests` which specify a FQDN will be rejected. The `allow` policy will cause them to be processed. The `preexisting` policy will only process them if an existing `DnsRecord` exists in the registry with the correct ownership.
The latter would be useful in conjunction with a pre-checking scheme in the UI (eg, that the DNS entry is properly configured, the domain is under the control of the requestor, etc.) Only after all the checks were successful would the `DnsRecord` be created, allowing for `ApplicationDeploymentRequests` to use it.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/802
Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2024-04-15 12:20:35 +00:00
Prathamesh Musale
345d200873
Add a laconicd Grafana dashboard to monitoring stack ( #799 )
...
Lint Checks / Run linter (push) Failing after 4s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 5s
Details
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Part of https://www.notion.so/Monitoring-and-alerting-for-laconicd-86727c3b4dde4dc993d87d6e29f935fe
- Add a laconicd Grafana dashboard
- Update fixturenet-laconicd script to expose metrics
- Upgrade Grafana version to avoid errors while saving changes made to a dashboard (see [thread](https://community.grafana.com/t/error-cannot-add-property-ishandled-object-is-not-extensible/109268 ))
- Add an alert rule for Ajna watcher
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/799
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-04-11 07:59:36 +00:00
Roy Crihfield
87fffca358
fixturenet-plugeth Deneb/Cancun upgrade ( #789 )
...
Deploy Test / Run deploy test suite (push) Failing after 4s
Details
Lint Checks / Run linter (push) Failing after 3s
Details
Webapp Test / Run webapp test suite (push) Failing after 3s
Details
Smoke Test / Run basic test suite (push) Failing after 3s
Details
Publish / Build and publish (push) Failing after 4s
Details
Updates fixturenet-plugeth stack for the Deneb fork based on Geth v1.13.x:
- updates genesis generator tool, and simplifies the config: the default from `ethereum-genesis-generator` can be used for a from-genesis Merged chain.
Reviewed-on: https://git.vdb.to/cerc-io/stack-orchestrator/pulls/789
Reviewed-by: jonathanface <jonathanface@noreply.git.vdb.to>
Reviewed-by: Thomas E Lackey <telackey@noreply.git.vdb.to>
2024-04-11 03:21:36 +00:00
jonathanface
108a5a3440
Merge branch 'main' into blast-stack
Fixturenet-Laconicd-Test / Run Laconicd fixturenet and Laconic CLI tests (push) Failing after 5s
Details
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Failing after 3s
Details
Lint Checks / Run linter (push) Failing after 4s
Details
Container Registry Test / Run contaier registry hosting test on kind/k8s (push) Failing after 3s
Details
Database Test / Run database hosting test on kind/k8s (push) Failing after 4s
Details
2024-04-08 15:21:03 +00:00
jonathan@vulcanize.io
4b04a39faf
linted
2024-04-08 15:17:44 +00:00