Skip to content

Commit afbfe36

Browse files
authored
Merge pull request #159 from holaplex/espi/hub-uploads/arweave
[Hub Uploads] Switch to Bundlr
2 parents 045676a + 02cc9f1 commit afbfe36

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

charts/hub-uploads/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 0.1.2
21+
version: 0.2.0
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to

charts/hub-uploads/templates/environment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ metadata:
55
data:
66
{{- with .Values.environment }}
77
PORT: {{ .port | quote }}
8-
WEB3_UP_GATEWAY: {{ .web3UpGateway | quote }}
8+
IRYS_GATEWAY: {{ .irysGateway | quote }}
9+
IRYS_URL: {{ .irysUrl | quote }}
910
{{- end }}

charts/hub-uploads/templates/secrets.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
"helm.sh/hook": pre-install
99
type: Opaque
1010
data:
11-
WEB3_UP_KEY: {{ .entries.web3UpKey | b64enc }}
12-
WEB3_UP_PROOF: {{ .entries.web3UpProof | b64enc }}
11+
SOLANA_KEYPAIR: {{ .entries.solanaKeypair | b64enc }}
12+
SOLANA_RPC_URL: {{ .entries.solanaRpcUrl | b64enc }}
1313
{{- end }}
1414
{{- end }}

charts/hub-uploads/values.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ serviceAccount:
2525

2626
podAnnotations: {}
2727

28-
podSecurityContext: {}
28+
podSecurityContext:
29+
{}
2930
# fsGroup: 2000
3031

3132
securityContext:
@@ -46,7 +47,8 @@ serviceMonitor:
4647
scrapeTimeout: 30s
4748
labels: {}
4849

49-
resources: {}
50+
resources:
51+
{}
5052
# We usually recommend not to specify default resources and to leave this as a conscious
5153
# choice for the user. This also increases chances charts run on environments with little
5254
# resources, such as Minikube. If you do want to specify resources, uncomment the following
@@ -89,9 +91,10 @@ affinity: {}
8991
secrets:
9092
enabled: true
9193
entries:
92-
web3UpKey: ""
93-
web3UpProof: ""
94+
solanaKeypair: ""
95+
solanaRpcUrl: ""
9496

9597
environment:
9698
port: "3000"
97-
web3UpGateway: https://w3s.link/ipfs
99+
irysUrl: https://node1.irys.xyz
100+
irysGateway: https://gateway.irys.xyz

0 commit comments

Comments
 (0)