blob: 585a7526713695b6e852ccad4791fa22c209286d [file] [log] [blame]
Luca Pretec97ad882018-05-04 11:22:14 -07001---
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17- hosts: localhost
Luca Pretec97ad882018-05-04 11:22:14 -070018 vars:
Zack Williams249ac7f2018-05-18 13:34:14 -070019 kubespray_remote_ssh_user: "cord"
Luca Pretec97ad882018-05-04 11:22:14 -070020
21 tasks:
Zack Williamsbb846a22018-06-26 14:57:17 -070022
Luca Pretec97ad882018-05-04 11:22:14 -070023 # Edit all.yml variable file
Zack Williamsbb846a22018-06-26 14:57:17 -070024 - name: Add lines to the all.yaml variable file
Luca Pretec97ad882018-05-04 11:22:14 -070025 lineinfile:
26 path: inventories/{{ deployment_name }}/group_vars/all.yml
Zack Williamsbb846a22018-06-26 14:57:17 -070027 line: "{{ item }}"
28 with_items:
29 - 'ansible_python_interpreter: /usr/bin/python2.7'
30 - 'ansible_user: {{ kubespray_remote_ssh_user }}'
31 - 'ansible_become: true'
Zack Williamsd24053d2018-07-31 09:12:35 -070032 - 'kube_feature_gates: []'
Luca Pretec97ad882018-05-04 11:22:14 -070033
34 # Edit k8s-cluster.yml variable file
35 - name: Set Docker DNS servers strict to false
36 lineinfile:
37 path: inventories/{{ deployment_name }}/group_vars/k8s-cluster.yml
38 regexp: '^#\s*docker_dns_servers_strict.*$'
39 line: 'docker_dns_servers_strict: false'
40
41 - name: Set Helm enabled to true
42 lineinfile:
43 path: inventories/{{ deployment_name }}/group_vars/k8s-cluster.yml
44 regexp: '^helm_enabled.*$'
45 line: 'helm_enabled: true'
46
47 - name: Set kubeconfig localhost to true
48 lineinfile:
49 path: inventories/{{ deployment_name }}/group_vars/k8s-cluster.yml
50 regexp: '^#\s*kubeconfig_localhost.*$'
51 line: 'kubeconfig_localhost: true'
52
53 - name: Allow insecure registry access
54 lineinfile:
55 path: inventories/{{ deployment_name }}/group_vars/k8s-cluster.yml
56 regexp: 'docker_options'
57 line: "docker_options: \"{{ item }} --insecure-registry={{ '{{' }} kube_service_addresses {{ '}}' }} --graph={{ '{{' }} docker_daemon_graph {{ '}}' }} {{ '{{' }} docker_log_opts {{ '}}' }}\""
58 with_items: "{{ k8s_nodes.split(' ') | map('regex_replace', '(.*)', '--insecure-registry=\\1/32') | join(' ') }}"
Zack Williamsbb846a22018-06-26 14:57:17 -070059