Skip to content

Commit

Permalink
Allow dnsConfig for unleash proxy (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
jankonas authored Aug 1, 2024
1 parent 216fdea commit 91f02ee
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/unleash-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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.8.5
version: 0.8.6

# 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
Expand Down
6 changes: 5 additions & 1 deletion charts/unleash-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,4 +190,8 @@ spec:
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
{{- with .Values.dnsConfig }}
dnsConfig:
{{- toYaml . | nindent 8 }}
{{- end }}
5 changes: 5 additions & 0 deletions charts/unleash-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ topologySpreadConstraints: {}
# topologyKey: topology.kubernetes.io/zone
# whenUnsatisfiable: DoNotSchedule

dnsConfig: {}
# options:
# - name: ndots
# value: "1"

# Adds environment variables
env: []
# - name: LOG_LEVEL
Expand Down

0 comments on commit 91f02ee

Please sign in to comment.