diff --git a/charts/hub-uploads/Chart.yaml b/charts/hub-uploads/Chart.yaml index c2f05ed..5e5d483 100644 --- a/charts/hub-uploads/Chart.yaml +++ b/charts/hub-uploads/Chart.yaml @@ -18,7 +18,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.2 +version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/hub-uploads/templates/environment.yaml b/charts/hub-uploads/templates/environment.yaml index b0fefc6..a78daaf 100644 --- a/charts/hub-uploads/templates/environment.yaml +++ b/charts/hub-uploads/templates/environment.yaml @@ -5,5 +5,6 @@ metadata: data: {{- with .Values.environment }} PORT: {{ .port | quote }} - WEB3_UP_GATEWAY: {{ .web3UpGateway | quote }} + IRYS_GATEWAY: {{ .irysGateway | quote }} + IRYS_URL: {{ .irysUrl | quote }} {{- end }} diff --git a/charts/hub-uploads/templates/secrets.yaml b/charts/hub-uploads/templates/secrets.yaml index a34449e..1b65c34 100644 --- a/charts/hub-uploads/templates/secrets.yaml +++ b/charts/hub-uploads/templates/secrets.yaml @@ -8,7 +8,7 @@ metadata: "helm.sh/hook": pre-install type: Opaque data: - WEB3_UP_KEY: {{ .entries.web3UpKey | b64enc }} - WEB3_UP_PROOF: {{ .entries.web3UpProof | b64enc }} + SOLANA_KEYPAIR: {{ .entries.solanaKeypair | b64enc }} + SOLANA_RPC_URL: {{ .entries.solanaRpcUrl | b64enc }} {{- end }} {{- end }} diff --git a/charts/hub-uploads/values.yaml b/charts/hub-uploads/values.yaml index 17c86f9..49057c2 100644 --- a/charts/hub-uploads/values.yaml +++ b/charts/hub-uploads/values.yaml @@ -25,7 +25,8 @@ serviceAccount: podAnnotations: {} -podSecurityContext: {} +podSecurityContext: + {} # fsGroup: 2000 securityContext: @@ -46,7 +47,8 @@ serviceMonitor: scrapeTimeout: 30s labels: {} -resources: {} +resources: + {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little # resources, such as Minikube. If you do want to specify resources, uncomment the following @@ -89,9 +91,10 @@ affinity: {} secrets: enabled: true entries: - web3UpKey: "" - web3UpProof: "" + solanaKeypair: + solanaRpcUrl: environment: port: "3000" - web3UpGateway: https://w3s.link/ipfs + irysUrl: https://node1.irys.xyz + irysGateway: https://gateway.irys.xyz