Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
hlf-peer: updated Readme.md
Browse files Browse the repository at this point in the history
Signed-off-by: Inzamam <[email protected]>
  • Loading branch information
inzamam-iqbal committed Jul 8, 2019
1 parent c7718ad commit 3d62481
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion stable/hlf-peer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ The following table lists the configurable parameters of the Hyperledger Fabric
| `secrets.peer.tlsRootCert` | TLS root CA certificate: as 'cert.pem' | `` |
| `secrets.peer.tlsClient` | TLS client secret: as 'tls.crt' and 'tls.key' | `` |
| `secrets.peer.tlsClientRootCerts` | TLS Client root CA certificate files (any name) | `` |
| `secrets.channel` | Secret containing Channel tx for peer to create/join | `` |
| `secrets.channels` | Array of secrets containing channel creation file | `` |
| `secrets.adminCert` | Secret containing Peer Org admin certificate | `` |
| `secrets.adminCert` | Secret containing Peer Org admin private key | `` |
| `secrets.ordTlsRootCert` | Secret containing Orderer TLS root CA certificate | `` |
Expand Down
12 changes: 6 additions & 6 deletions stable/hlf-peer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ spec:
secretName: {{ .Values.secrets.peer.tlsClientRootCert }}
{{- end }}
{{- if .Values.secrets.channels }}
{{- range .Values.secrets.channels}}
{{- range .Values.secrets.channels }}
- name: {{ . }}
secret:
secretName: {{ . }}
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.secrets.adminCert }}
- name: admin-cert
Expand Down Expand Up @@ -204,10 +204,10 @@ spec:
name: ord-tls-rootcert
{{- end }}
{{- if .Values.secrets.channels }}
{{- range .Values.secrets.channels}}
- mountPath: /hl_config/channel/{{.}}
name: {{.}}
{{- end }}
{{- range .Values.secrets.channels }}
- mountPath: /hl_config/channel/{{ . }}
name: {{ . }}
{{- end }}
{{- end }}
{{- if .Values.secrets.adminCert }}
- mountPath: /var/hyperledger/admin_msp/admincerts
Expand Down

0 comments on commit 3d62481

Please sign in to comment.