Skip to content

Commit 4c728ff

Browse files
authored
Merge pull request #1 from solo-io/ambient/migration-script-data-gatherer
Add cluster info gatherer for the upcoming Ambient mesh migration-estimation page
2 parents 2ef1c15 + f4e0a04 commit 4c728ff

File tree

7 files changed

+751
-0
lines changed

7 files changed

+751
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Verify Checksums
2+
on:
3+
pull_request: {}
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
verify-checksums:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- run: make verify-checksums

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Default exclude pattern
2+
EXCLUDE ?= "./ci/*"
3+
4+
.PHONY: checksums
5+
checksums:
6+
EXCLUDE_PATTERN="$(EXCLUDE)" ./ci/generate-checksums.sh
7+
8+
.PHONY: verify-checksums
9+
verify-checksums:
10+
EXCLUDE_PATTERN="$(EXCLUDE)" ./ci/verify-checksums.sh

0 commit comments

Comments
 (0)