Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump json5 from 1.0.1 to 1.0.2 in /api #33

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Hyperledger Fabric v2 with Raft on Kubernetes

## Limitations

- Requires [Docker](https://docs.docker.com/desktop/install/linux-install/) on Kubernetes node

## Prerequisites

- Kubernetes cluster with at least 4GB memory and 2 vCPUs (tested on IBM Cloud free tier IKS)
- Kubernetes cluster with at least 4GB memory and 2 vCPUs
- kubectl available on path and configured to use a cluster
- Fabric binaries available on path

Expand Down
39 changes: 15 additions & 24 deletions api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions explorer/explorer.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: explorer
name: explorer
Expand All @@ -14,7 +13,6 @@ spec:
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: explorer
spec:
Expand Down
2 changes: 1 addition & 1 deletion hlf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ source ./scripts/chaincode.sh

export CHANNEL_PROFILE=AllOrgsChannel # defined in configtx.yaml
export CHANNEL_ID=allorgs # anything
export CCURL=github.com/blockchaind/hyperledger-fabric-v2-kubernetes-dev/key-value-chaincode
export CCURL=github.com/edgeflare/hyperledger-fabric-v2-kubernetes-dev/key-value-chaincode
export CCNAME=key-value-chaincode

createNamespaces() {
Expand Down
32 changes: 28 additions & 4 deletions key-value-chaincode/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,32 @@
module github.com/blockchaind/hyperledger-fabric-v2-kubernetes-dev/key-value-chaincode
module github.com/edgeflare/hyperledger-fabric-v2-kubernetes-dev/key-value-chaincode

go 1.13
go 1.20

require github.com/hyperledger/fabric-contract-api-go v1.2.1

require (
github.com/hyperledger/fabric-chaincode-go v0.0.0-20200128192331-2d899240a7ed
github.com/hyperledger/fabric-contract-api-go v1.0.0
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/spec v0.20.8 // indirect
github.com/go-openapi/swag v0.21.1 // indirect
github.com/gobuffalo/envy v1.10.1 // indirect
github.com/gobuffalo/packd v1.0.1 // indirect
github.com/gobuffalo/packr v1.30.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hyperledger/fabric-chaincode-go v0.0.0-20230228194215-b84622ba6a7a // indirect
github.com/hyperledger/fabric-protos-go v0.3.0 // indirect
github.com/joho/godotenv v1.4.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/grpc v1.53.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
Loading