Skip to content

Commit

Permalink
fix: 🐛 pass proxy values to console
Browse files Browse the repository at this point in the history
  • Loading branch information
this-is-tobi committed Sep 25, 2023
1 parent 961aec2 commit 8a947e4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions roles/console-dso/templates/app.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ spec:
value: "{{ keycloak_domain }}"
- name: keycloak.realm
value: dso
{% if dsc.proxy.enabled %}
- name: server.container.env.HTTP_PROXY
value: {{ dsc.proxy.http_proxy }}
- name: server.container.env.HTTPS_PROXY
value: {{ dsc.proxy.https_proxy }}
- name: server.container.env.NO_PROXY
value: {{ dsc.proxy.no_proxy }}
{% endif %}
{% if dsc.exposedCA.type != 'none' %}
- name: server.extraCa.name
value: bundle
Expand Down

0 comments on commit 8a947e4

Please sign in to comment.