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

Latest versions for v0.5.0 using FireFly v1.0.0 #38

Merged
merged 2 commits into from
Apr 13, 2022
Merged
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
4 changes: 2 additions & 2 deletions charts/firefly/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ apiVersion: v2
name: firefly
description: A Helm chart for deploying FireFly and FireFly HTTPS Dataexchange onto Kubernetes.
type: application
appVersion: "0.14.1"
version: "0.4.1"
appVersion: "1.0.0"
version: "0.5.0"

maintainers:
- name: hfuss
Expand Down
3 changes: 3 additions & 0 deletions charts/firefly/templates/dataexchange/certificate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ spec:
usages:
- server auth
- client auth
{{- if .Values.dataexchange.certificate.duration }}
duration: {{ .Values.dataexchange.certificate.duration | quote }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow that was easier than anticipated!

{{- end }}
dnsNames:
{{- if .Values.dataexchange.ingress.enabled }}
{{- range .Values.dataexchange.ingress.hosts }}
Expand Down
16 changes: 9 additions & 7 deletions charts/firefly/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ config:
addresssResolverUrlTemplate: ""

# The Ethereum address of the pre-deployed FireFly smart contract
fireflyContractAddress: "/instances/contractAddress"
fireflyContractAddress: "contractAddress"

# The name of the Fabric chaincode deployment for the FireFly chaincode
fireflyChaincode: firefly_go
Expand Down Expand Up @@ -158,7 +158,8 @@ core:
repository: ghcr.io/hyperledger/firefly
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# tag: latest
# TODO remove once 1.0 is released
tag: v1.0.0-rc.4

extraEnv: []
# - name: FIREFLY_LOG_LEVEL
Expand Down Expand Up @@ -259,10 +260,11 @@ dataexchange:
enabled: true
name: ""

# Configures whether or not to generate a mTLS certificate for peer-to-peer communications
# Configures whether to generate a mTLS certificate for peer-to-peer communications
# using cert-manager's Certificate resource, recommended
certificate:
enabled: false
duration: ""
issuerRef: {}
# name: internal-ca
# kind: ClusterIssuer
Expand All @@ -274,7 +276,7 @@ dataexchange:
image:
repository: ghcr.io/hyperledger/firefly-dataexchange-https
pullPolicy: IfNotPresent
tag: v0.10.5
tag: v0.11.1

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -357,7 +359,7 @@ erc1155:
image:
repository: ghcr.io/hyperledger/firefly-tokens-erc1155
pullPolicy: IfNotPresent
tag: v0.10.7
tag: v0.10.8

imagePullSecrets: []

Expand Down Expand Up @@ -431,7 +433,7 @@ erc20erc721:
image:
repository: ghcr.io/hyperledger/firefly-tokens-erc20-erc721
pullPolicy: IfNotPresent
tag: v0.2.0
tag: v0.2.3

imagePullSecrets: []

Expand Down Expand Up @@ -513,7 +515,7 @@ ethconnect:
image:
repository: ghcr.io/hyperledger/firefly-ethconnect
pullPolicy: Always
tag: v3.1.5
tag: v3.1.6

extraEnv: []
# - name: LOG_LEVEL
Expand Down