Skip to content

Commit

Permalink
Merge pull request pmint93#122 from bulka1/master
Browse files Browse the repository at this point in the history
add support for host aliases
  • Loading branch information
pmint93 authored Jun 20, 2024
2 parents 563fd43 + 9fc19f2 commit b307ac1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/metabase/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description:
The easy, open source way for everyone in your company to ask questions
and learn from data.
name: metabase
version: 2.16.4
version: 2.16.5
appVersion: v0.50.4
maintainers:
- name: pmint93
Expand Down
4 changes: 4 additions & 0 deletions charts/metabase/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@ spec:
{{- end }}
{{- with .Values.topologySpreadConstraints }}
topologySpreadConstraints:
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{ toYaml . | indent 8 }}
{{- end }}
{{- if .Values.priorityClass}}
Expand Down
7 changes: 7 additions & 0 deletions charts/metabase/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ hpa:
targetCPUUtilizationPercentage: 80
targetMemoryUtilizationPercentage: 80

# Adding host aliases to the metabase deployment
hostAliases: []
# - ip: "127.0.0.1"
# hostnames:
# - "foo.local"
# - "bar.local"

pdb:
create: false
minAvailable: 1
Expand Down

0 comments on commit b307ac1

Please sign in to comment.