mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-05-17 22:37:45 -02:30
* Set http proxy environments for helm app installations Signed-off-by: Justin Lamp <justin.lamp@netways.de> * Change http_proxy env variables from legacy static entries to new proxy_env variable Signed-off-by: Justin Lamp <justin.lamp@netways.de> --------- Signed-off-by: Justin Lamp <justin.lamp@netways.de>
20 lines
672 B
YAML
20 lines
672 B
YAML
---
|
|
dependencies:
|
|
- role: helm-apps
|
|
when:
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
- custom_cni_chart_release_name | length > 0
|
|
environment: "{{ proxy_env }}"
|
|
release_common_opts: {}
|
|
releases:
|
|
- name: "{{ custom_cni_chart_release_name }}"
|
|
namespace: "{{ custom_cni_chart_namespace }}"
|
|
chart_ref: "{{ custom_cni_chart_ref }}"
|
|
chart_version: "{{ custom_cni_chart_version }}"
|
|
wait: true
|
|
create_namespace: true
|
|
values: "{{ custom_cni_chart_values }}"
|
|
repositories:
|
|
- name: "{{ custom_cni_chart_repository_name }}"
|
|
url: "{{ custom_cni_chart_repository_url }}"
|