Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
5f117fb6
Commit
5f117fb6
authored
6 years ago
by
Anton Patsev
Committed by
Kubernetes Prow Robot
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add support http/https proxy for bootstrap-debian (#3932)
parent
72fee60c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
roles/bootstrap-os/tasks/bootstrap-debian.yml
+30
-0
30 additions, 0 deletions
roles/bootstrap-os/tasks/bootstrap-debian.yml
with
30 additions
and
0 deletions
roles/bootstrap-os/tasks/bootstrap-debian.yml
+
30
−
0
View file @
5f117fb6
...
@@ -13,6 +13,36 @@
...
@@ -13,6 +13,36 @@
environment
:
{}
environment
:
{}
tags
:
facts
tags
:
facts
-
name
:
Check http::proxy in /etc/apt/apt.conf
raw
:
grep -qs 'Acquire::http::proxy' /etc/apt/apt.conf
register
:
need_http_proxy
failed_when
:
false
changed_when
:
false
environment
:
{}
tags
:
facts
-
name
:
Add http_proxy to /etc/apt/apt.conf if http_proxy is defined
raw
:
echo 'Acquire::http::proxy "{{http_proxy}}";' >> /etc/apt/apt.conf
environment
:
{}
when
:
-
need_http_proxy.rc !=
0
-
https_proxy is defined
-
name
:
Check https::proxy in /etc/apt/apt.conf
raw
:
grep -qs 'Acquire::https::proxy' /etc/apt/apt.conf
register
:
need_https_proxy
failed_when
:
false
changed_when
:
false
environment
:
{}
tags
:
facts
-
name
:
Add https_proxy to /etc/apt/apt.conf if https_proxy is defined
raw
:
echo 'Acquire::https::proxy "{{https_proxy}}";' >> /etc/apt/apt.conf
environment
:
{}
when
:
-
need_http_proxy.rc !=
0
-
https_proxy is defined
-
name
:
Bootstrap | Install python 2.x, pip, and dbus
-
name
:
Bootstrap | Install python 2.x, pip, and dbus
raw
:
raw
:
apt-get update && \
apt-get update && \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment