-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into codespaces-devcontainer
- Loading branch information
Showing
6,231 changed files
with
92,834 additions
and
64,527 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: BookInfoForCatalogIstio | ||
services: | ||
API Service: | ||
name: API Service | ||
type: APIService.K8s | ||
namespace: default | ||
version: v1.23.3 | ||
settings: | ||
name: API Service | ||
namespace: default | ||
traits: | ||
meshmap: | ||
edges: [] | ||
id: 7f544d73-9d02-46df-b5d5-b2298b29ae59 | ||
label: API Service | ||
position: | ||
posX: -12.87532858717755 | ||
posY: 63.026552335666615 | ||
Istio: | ||
name: Istio | ||
type: IstioMesh | ||
namespace: default | ||
version: 1.12.0 | ||
settings: | ||
name: Istio | ||
namespace: default | ||
profile: default | ||
traits: | ||
meshmap: | ||
edges: [] | ||
id: a30b2842-6885-4166-9b05-7e93db1d67aa | ||
label: Istio | ||
position: | ||
posX: 54.58489868554972 | ||
posY: 57.938484153848435 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
# Setup for local testing | ||
# INTEGRATIONS=$(< results.json) | ||
# integration_count=$(jq ' .results[].result.rawData | length' results.json) | ||
|
||
# Setup for repository-based run | ||
#results=$(< results.json) | ||
curl -o integrations.csv https://docs.google.com/spreadsheets/d/e/2PACX-1vSgOXuiqbhUgtC9oNbJlz9PYpOEaFVoGNUFMIk4NZciFfQv1ewZg8ahdrWHKI79GkKK9TbmnZx8CqIe/pub?gid=0&single=true&output=csv | ||
brew install xsv | ||
xsv slice -i 7 integrations.csv | xsv select 28 | xsv flatten > a.txt | ||
echo "$PATH" | ||
echo "{path}" | ||
echo $GITHUB_PATH | ||
echo "{path}" >> $GITHUB_PATH | ||
pwd | ||
ls | ||
echo $GITHUB_WORKSPACE | ||
|
||
#INTEGRATIONS=$(< $GITHUB_WORKSPACE/integrations.json) | ||
integration_count=$(jq ' .results[].result.rawData | length' $GITHUB_WORKSPACE/integrations.json) | ||
|
||
for (( i=0; i<integration_count; i++ )) | ||
do | ||
integration_name=$(jq " .results[].result.rawData[${i}][0]" -r $GITHUB_WORKSPACE/integrations.json) | ||
integration_data=$(jq " .results[].result.rawData[${i}][1]" -r $GITHUB_WORKSPACE/integrations.json) | ||
mkdir -p ${integration_name}/icon/color | ||
mkdir -p ${integration_name}/icon/white | ||
echo $integration_data > ${integration_name}/index.mdx | ||
done |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /bin/bash | ||
|
||
while IFS="," read line | ||
do | ||
echo "$line" | ||
|
||
|
||
done < <(cut -d "," -f26,3 ~/test.csv | tail -n +4) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.