Browse Source

Merge pull request #8615 from giuseppe/fix-crio-network-template

crio-network: fix definition for systemd
OpenShift Merge Robot 6 years ago
parent
commit
5ef71cdf13
1 changed files with 3 additions and 3 deletions
  1. 3 3
      roles/container_runtime/templates/crio-network.j2

+ 3 - 3
roles/container_runtime/templates/crio-network.j2

@@ -1,9 +1,9 @@
 {% if 'http_proxy' in openshift.common %}
-export HTTP_PROXY={{ openshift.common.http_proxy }}
+HTTP_PROXY={{ openshift.common.http_proxy }}
 {% endif %}
 {% if 'https_proxy' in openshift.common %}
-export HTTPS_PROXY={{ openshift.common.https_proxy }}
+HTTPS_PROXY={{ openshift.common.https_proxy }}
 {% endif %}
 {% if 'no_proxy' in openshift.common %}
-export NO_PROXY={{ openshift.common.no_proxy }}
+NO_PROXY={{ openshift.common.no_proxy }}
 {% endif %}