-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend types + revocation on CA (#227)
* Change requeue after to more time, to be more responsive in large environments Extend types to expose more kubernetes properties, specially in the chaincode. Add configurable policies to fabric main channel. Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Add revoke * Upgrade docusaurus Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Create new chaincode controllers Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Add hlf_types for install/approve/commit Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Implement chaincode install Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * implement install chaincode Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Tmp ch install * Implement changes to 3.0 Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update mainchannel Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * update * Updates Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * checkpoint Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Refactor main channel Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Add chaincodecrds cmd CLI Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Fix codegen Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update controller-gen and upgrade libraries Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update go to 1.23.1 Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update controller-runtime Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * try to fix pipeline Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update workflow Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * try to fix pipeline Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Fix pipeline Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Fix pipeline Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * fix mspFilterArray in case it's empty Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update goreleaser beta Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update the image Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Update kubectl-hlf + timeout on followerchannel + mainchannel after failure Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Change owner from hyperledger to hyperledger-bevel Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * Remove org2 from README.md Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * go.sum modification Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> * fix test pipeline Signed-off-by: David VIEJO <dviejo@kungfusoftware.es> --------- Signed-off-by: David VIEJO <dviejo@kungfusoftware.es>
- Loading branch information
Showing
407 changed files
with
20,425 additions
and
46,687 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Deploy Docusaurus to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy to GitHub Pages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Bun | ||
uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: latest | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.bun/install/cache | ||
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }} | ||
restore-keys: | | ||
${{ runner.os }}-bun- | ||
- name: Install dependencies | ||
run: | | ||
cd website-docs | ||
bun install | ||
- name: Build Docusaurus website | ||
run: | | ||
cd website-docs | ||
bun run build | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./website-docs/build | ||
user_name: 'github-actions[bot]' | ||
user_email: 'github-actions[bot]@users.noreply.github.com' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.23.1 |
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.