- May 16, 2018
-
-
Aivars Sterns authored
-
- Apr 26, 2018
-
-
Markos Chandras authored
This reverts commit 51f4e658.
-
- Apr 23, 2018
-
-
Matthew Mosesohn authored
-
- Apr 11, 2018
-
-
Markos Chandras authored
If the 'docker' package is already installed, then the handlers will not run and the service will not be (re-)started. As such, lets make sure that the service is started even if the packages are already installed.
-
Markos Chandras authored
Add support for installing Docker on SUSE distributions. The Docker repository at https://yum.dockerproject.org/repo/main/ does not support recent openSUSE distributions so the only alternative is to use the packages from the distro repositories. This however renders the 'docker_version' Ansible variable useless on SUSE.
-
- Apr 08, 2018
-
-
rongzhang authored
Fix issues #2611
-
- Mar 28, 2018
-
-
Chad Swenson authored
* Remove old docker packages This removes docker packages that are obsolete if docker-ce packages are to be installed, which fixes some package conflict issues that can occur during upgrades. * Add support for setting obsoletes=0 when installing docker with yum
-
- Mar 16, 2018
-
-
woopstar authored
Added CoreDNS to downloads Updated with labels. Should now work without RBAC too Fix DNS settings on hosts Rename CoreDNS service from kube-dns to coredns Add rotate based on http://edgeofsanity.net/rant/2017/12/20/systemd-resolved-is-broken.html Updated docs with CoreDNS info Added labels and fixed minor settings from official yaml file: https://github.com/kubernetes/kubernetes/blob/release-1.9/cluster/addons/dns/coredns.yaml.sed Added a secondary deployment and secondary service ip. This is to mitigate dns timeouts and create high resitency for failures. See discussion at 'https://github.com/coreos/coreos-kubernetes/issues/641#issuecomment-281174806' Set dns list correct. Thanks to @whereismyjetpack Only download KubeDNS or CoreDNS if selected Move dns cleanup to its own file and import tasks based on dns mode Fix install of KubeDNS when dnsmask_kubedns mode is selected Add new dns option coredns_dual for dual stack deployment. Added variable to configure replicas deployed. Updated docs for dual stack deployment. Removed rotate option in resolv.conf. Run DNS manifests for CoreDNS and KubeDNS Set skydns servers on dual stack deployment Use only one template for CoreDNS dual deployment Set correct cluster ip for the dns server
-
- Mar 12, 2018
-
-
rong.zhang authored
Support docker-ce and docker-engine include redhat/centos ubuntu debian
-
- Mar 07, 2018
-
-
Chris Mildebrandt authored
Change "command" to "shell" in order for the pipe to work correctly
-
- Feb 20, 2018
-
-
Chris Mildebrandt authored
-
- Jan 29, 2018
-
-
Matthew Mosesohn authored
import_tasks will consume far less memory, so it should be used whenever it is compatible.
-
- Jan 23, 2018
-
-
Matthew Mosesohn authored
-
- Jan 12, 2018
-
-
heping authored
-
- Dec 19, 2017
-
-
Evan Zeimet authored
Renaming runtime docker_version to prevent setting that value on the command line from breaking the play run. This fixes #2081
-
- Dec 13, 2017
-
-
Fang Zhen authored
The search line in /etc/resolv.conf could have multiple spaces or tabs between domains. split(' ') will give wrong results in some case, use split() without argument instead. e.g. >>> 'domain.tld cluster.tld '.split(' ') ['domain.tld\tcluster.tld', ''] >>> 'domain.tld cluster.tld '.split() ['domain.tld', 'cluster.tld']
-
- Dec 12, 2017
-
-
Spencer Smith authored
-
- Oct 30, 2017
-
-
Spencer Smith authored
-
- Oct 27, 2017
-
-
Chad Swenson authored
This allows overriding of apt repo endpoints when internet sources are not accessible. Additionally, switch to using the dockerproject.org gpg key url for apt instead of keyservers.net
-
- Oct 16, 2017
-
-
Jason Brooks authored
* don't try to install this rpm on fedora atomic * add docker 1.13.1 for fedora * built-in docker unit file is sufficient, as tested on both fedora and centos atomic
-
- Oct 11, 2017
-
-
Vijay Katam authored
* Rename dns_server to dnsmasq_dns_server so that it includes role prefix as the var name is generic and conflicts when integrating with existing ansible automation. * Enable selinux state to be configurable with new var preinstall_selinux_state
-
Matthew Mosesohn authored
* Set no_proxy to all local ips * Use proxy settings on all necessary tasks
-
- Oct 05, 2017
-
-
Aivars Sterns authored
-
- Aug 24, 2017
-
-
Brad Beam authored
* Adding yaml linter to ci check * Minor linting fixes from yamllint * Changing CI to install python pkgs from requirements.txt - adding in a secondary requirements.txt for tests - moving yamllint to tests requirements
-
- Aug 14, 2017
-
-
Vijay Katam authored
-
- Aug 10, 2017
-
-
Vijay Katam authored
-
Vijay Katam authored
* Make yum repos used for installing docker rpms configurable * TasksMax is only supported in systemd version >= 226 * Change to systemd file should restart docker
-
- Jun 26, 2017
-
-
jwfang authored
-
- Mar 17, 2017
-
-
Matthew Mosesohn authored
-
- Mar 01, 2017
-
-
Vijay Katam authored
Updates based on feedback Simplify checks for file exists remove invalid char Review feedback. Use regular systemd file. Add template for docker systemd atomic
-
- Feb 18, 2017
-
-
Andrew Greenwood authored
Migrate older inline= syntax to pure yml syntax for module args as to be consistant with most of the rest of the tasks Cleanup some spacing in various files Rename some files named yaml to yml for consistancy
-
- Feb 13, 2017
-
-
Vladimir Rutsky authored
"shell" step doesn't support check mode, which currently leads to failures, when Ansible is being run in check mode (because Ansible doesn't run command, assuming that command might have effect, and no "rc" or "output" is registered). Setting "check_mode: no" allows to run those "shell" commands in check mode (which is safe, because those shell commands doesn't have side effects).
-
- Feb 08, 2017
-
-
Mark Lee authored
-
- Jan 26, 2017
-
-
neith00 authored
Using the command module instead of raw. Also fixed the syntax.
-
- Jan 19, 2017
-
-
Matthew Mosesohn authored
-
- Jan 16, 2017
-
-
Matthew Mosesohn authored
Docker upgrade doesn't auto-restart docker, causing failures when trying to start another container
-
- Jan 09, 2017
-
-
Matthew Mosesohn authored
Fixes scenario where docker-dns.conf tries to create an empty search entry
-
- Jan 06, 2017
-
-
Alexander Block authored
Also update reset.yml to do more dns/network related cleanup.
-
- Jan 05, 2017
-
-
Bogdan Dobrelya authored
Signed-off-by: Bogdan Dobrelya <bogdando@mail.ru>
-
Bogdan Dobrelya authored
Signed-off-by: Bogdan Dobrelya <bogdando@mail.ru>
-