@@ -33,12 +33,12 @@ peers:
33
33
- name : peer2
34
34
identity_name : peer2-initialpeerorg
35
35
identity_secret : peer2initialpeerorgSamplePassword
36
-
37
36
38
37
global :
39
38
hlf_domain : my-hlf-domain.com
40
39
ica_endpoint : ica-initialpeerorg.my-hlf-domain.com:30000
41
40
tlsca_endpoint : tls-ca.my-hlf-domain.com:30000
41
+ storageClass : standard
42
42
ingressClass : nginx
43
43
ingressPort : 30000
44
44
ingress :
@@ -58,10 +58,25 @@ global:
58
58
couchServicePort : " 5984"
59
59
couchDataDir : /opt/couchdb/data
60
60
couchDiskSize : 1G
61
- couchDbUser : couchDbSampleUser
62
- couchDbUserPass : couchDbSampleUserPassword
63
61
couchPvcAccessMode : ReadWriteOnce
64
-
62
+ couchDbUser : " couchDbSampleUser"
63
+ couchDbUserPass : couchDbSampleUserPassword
64
+ couchResources : {}
65
+ # couchStartupProbe: {}
66
+ couchLivenessProbe :
67
+ failureThreshold : 3
68
+ periodSeconds : 10
69
+ successThreshold : 1
70
+ tcpSocket :
71
+ port : 5984
72
+ couchReadinessProbe :
73
+ failureThreshold : 3
74
+ periodSeconds : 10
75
+ successThreshold : 1
76
+ tcpSocket :
77
+ port : 5984
78
+ couchSecurityContext : {}
79
+
65
80
peerImageRegistry : docker.io
66
81
peerImageRepo : hyperledger/fabric-peer
67
82
peerImageTag : 2.4
@@ -76,36 +91,85 @@ global:
76
91
- node
77
92
- start
78
93
core_peer_gossip_bootstrap : peer0-initialpeerorg.my-hlf-domain.com:30000
94
+ core_ledger_state_couchdbconfig_requesttimeout : " 180s"
95
+ core_ledger_state_couchdbconfig_maxretries : " 5"
96
+ core_ledger_state_couchdbconfig_maxupdatebatchsize : " 5000"
97
+ core_ledger_state_couchdbconfig_internalquerylimit : " 5000"
98
+ core_ledger_state_couchdbconfig_totalquerylimit : " 5000"
99
+ core_ledger_state_couchdbconfig_couchdbaddress : " localhost:5984"
100
+ peerSecurityContext : {}
101
+ peerResources : {}
102
+ # peerStartupProbe: {}
103
+ peerLivenessProbe :
104
+ failureThreshold : 3
105
+ httpGet :
106
+ path : /healthz
107
+ port : 9443
108
+ scheme : HTTP
109
+ periodSeconds : 10
110
+ successThreshold : 1
111
+ peerReadinessProbe :
112
+ failureThreshold : 3
113
+ httpGet :
114
+ path : /healthz
115
+ port : 9443
116
+ scheme : HTTP
117
+ periodSeconds : 10
118
+ successThreshold : 1
79
119
80
120
dindImageRegistry : docker.io
81
121
dindImageRepo : npcioss/dind
82
122
dindImageTag : dind-20-10-16
83
123
dindDataDir : /var/lib/docker
84
- storageClass : standard
85
124
dindDiskSize : 5G
86
125
dindPvcAccessMode : ReadWriteOnce
126
+ dindDocker_tls_certdir : " "
127
+ dindSecurityContext :
128
+ privileged : true
129
+ dindResources : {}
130
+ # dindStartupProbe: {}
131
+ dindLivenessProbe :
132
+ failureThreshold : 3
133
+ periodSeconds : 10
134
+ successThreshold : 1
135
+ tcpSocket :
136
+ port : 2375
137
+ dindReadinessProbe :
138
+ failureThreshold : 3
139
+ periodSeconds : 10
140
+ successThreshold : 1
141
+ tcpSocket :
142
+ port : 2375
87
143
88
-
89
- podAnnotations : {}
90
- podSecurityContext : {}
91
- # fsGroup: 2000
92
- securityContext : {}
93
- # capabilities:
94
- # drop:
95
- # - ALL
96
- # readOnlyRootFilesystem: true
97
- # runAsNonRoot: true
98
- # runAsUser: 1000
99
-
100
- resources : {}
101
- # limits:
102
- # cpu: 100m
103
- # memory: 128Mi
104
- # requests:
105
- # cpu: 100m
106
- # memory: 128Mi
107
-
108
- autoscaling :
109
- nodeSelector : {}
110
- tolerations : []
111
- affinity : {}
144
+ additonalEnvironmentVars :
145
+ # couchDb:
146
+ # - name: EXTRA_ENV_COUCHDB
147
+ # value: Extra_couch_env_value
148
+ # dind:
149
+ # - name: EXTRA_ENV_DIND
150
+ # value: Extra_dind_env_value
151
+ peer :
152
+ - name : CORE_LEDGER_HISTORY_ENABLEHISTORYDATABASE
153
+ value : " false"
154
+ - name : CORE_PEER_GOSSIP_MAXBLOCKCOUNTTOSTORE
155
+ value : " 20"
156
+ - name : CORE_PEER_GOSSIP_MAXPROPAGATIONBURSTSIZE
157
+ value : " 20"
158
+ - name : FABRIC_LOGGING_SPEC
159
+ value : INFO
160
+ - name : CORE_PEER_CHAINCODELISTENADDRESS
161
+ value : localhost:7052
162
+ - name : CORE_PEER_GOSSIP_USELEADERELECTION
163
+ value : " false"
164
+ - name : CORE_PEER_GOSSIP_ORGLEADER
165
+ value : " true"
166
+ - name : CORE_PEER_PROFILE_ENABLED
167
+ value : " true"
168
+ - name : CORE_PEER_TLS_ENABLED
169
+ value : " true"
170
+ - name : CORE_VM_ENDPOINT
171
+ value : http://localhost:2375
172
+ - name : DOCKER_HOST
173
+ value : tcp://localhost:2375
174
+ - name : CORE_OPERATIONS_LISTENADDRESS
175
+ value : 0.0.0.0:9443
0 commit comments