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
1cbdd7ed
Commit
1cbdd7ed
authored
5 years ago
by
Matthew Mosesohn
Committed by
Kubernetes Prow Robot
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixup etcdctl download for etcd kubeadm mode (#4991)
Change-Id: I8d8e59a97823390f40e8810905ca52430329f040
parent
428e52e0
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/download/defaults/main.yml
+4
-2
4 additions, 2 deletions
roles/download/defaults/main.yml
with
4 additions
and
2 deletions
roles/download/defaults/main.yml
+
4
−
2
View file @
1cbdd7ed
...
...
@@ -314,13 +314,15 @@ downloads:
etcd
:
container
:
"
{{
etcd_deployment_type
!=
'host'
}}"
file
:
"
{{
etcd_deployment_type
==
'host'
}}"
file
:
"
{{
etcd_deployment_type
==
'host'
or
etcd_kubeadm_enabled
}}"
enabled
:
true
version
:
"
{{
etcd_version
}}"
dest
:
"
{{local_release_dir}}/etcd-{{
etcd_version
}}-linux-amd64.tar.gz"
repo
:
"
{{
etcd_image_repo
}}"
tag
:
"
{{
etcd_image_tag
}}"
sha256
:
"
{{
etcd_binary_checksum
if
etcd_deployment_type
==
'host'
else
etcd_digest_checksum|d(None)
}}"
sha256
:
>-
{{ etcd_binary_checksum if (etcd_deployment_type == 'host' or etcd_kubeadm_enabled)
else etcd_digest_checksum|d(None) }}
url
:
"
{{
etcd_download_url
}}"
unarchive
:
true
owner
:
"
root"
...
...
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