Browse Source

Merge pull request #88 from Smana/complete_remove_downloader

missing commits for the PR #86
pull/87/head
Smaine Kahlouch 8 years ago
parent
commit
d5f11b2442
4 changed files with 4 additions and 12 deletions
  1. 4
      inventory/group_vars/all.yml
  2. 4
      roles/download/defaults/main.yml
  3. 4
      roles/kubernetes/node/defaults/main.yml
  4. 4
      roles/kubernetes/node/tasks/main.yml

4
inventory/group_vars/all.yml

@ -5,6 +5,10 @@ bin_dir: /usr/local/bin
# Note: ensure that you've enough disk space (about 1G)
local_release_dir: "/tmp/releases"
# This is the group that the cert creation scripts chgrp the
# cert files to. Not really changable...
kube_cert_group: kube-cert
# Cluster Loglevel configuration
kube_log_level: 2

4
roles/download/defaults/main.yml

@ -1,10 +1,6 @@
---
local_release_dir: /tmp
# This is the group that the cert creation scripts chgrp the
# cert files to. Not really changable...
kube_cert_group: kube-cert
# Versions
kube_version: v1.1.4
etcd_version: v2.2.4

4
roles/kubernetes/node/defaults/main.yml

@ -24,10 +24,6 @@ kube_users_dir: "{{ kube_config_dir }}/users"
# pods on startup
kube_manifest_dir: "{{ kube_config_dir }}/manifests"
# This is the group that the cert creation scripts chgrp the
# cert files to. Not really changable...
kube_cert_group: kube-cert
dns_domain: "{{ cluster_name }}"
kube_proxy_mode: userspace

4
roles/kubernetes/node/tasks/main.yml

@ -8,10 +8,6 @@
- name: Make sure manifest directory exists
file: path={{ kube_manifest_dir }} state=directory
- name: certs | create system kube-cert groups
group: name={{ kube_cert_group }} state=present system=yes
- include: secrets.yml
tags:
- secrets

Loading…
Cancel
Save