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

fix: store hedera-explorer chart as dependency until next official version is released #436

Merged
merged 1 commit into from
Oct 22, 2023
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
23 changes: 23 additions & 0 deletions charts/hedera-network/charts/hedera-explorer/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OS
.DS_Store

# VCS
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/

# Backup
*.swp
*.bak
*.tmp
*~

# IDE
.project
.idea/
.vscode/
*.tmproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ data:

{{- range $path, $backend := .Values.proxyPass }}
location {{ $path }} {
proxy_pass {{ $backend }};
proxy_pass {{ tpl $backend $ }};
}
{{- end }}

Expand Down
7 changes: 5 additions & 2 deletions charts/hedera-network/charts/hedera-explorer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,13 @@ volumes:
configMap:
name: '{{ include "hedera-explorer.fullname" . }}-config'

# Add custom reverse proxy configuration
# Add custom reverse proxy configuration.
# It is a key-value map where key is the path and value being a URL.
# Primary use case is to allow access to mirror node api via hedera explorer url
# Note that templating is allowed in the values
# Example:
# /api: "http://{{ .Release.Name }}-rest"
proxyPass: {}
# /api: http://fst-rest

config: |
[
Expand Down