aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
blob: 144f2678a4b156feb6d80c2ce25a889f83898001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.DS_Store
.project
.settings
.classpath
.jupiter
.pydevproject
*.swp
*.log
*.out
.metadata/
.idea/
target/
*/config/
*/logs/
*/sql/
*/testingLogs/
**/*.iml
####################################################### # Copyright (c) 2018 # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## - hosts: localhost pre_tasks: - name: Load kud variables include_vars: file: kud-vars.yml - name: Check if helm client is already installed #It is in single node deployment command: helm version -c register: helm_client failed_when: False changed_when: False check_mode: False roles: - name: andrewrothstein.kubernetes-helm when: helm_client.rc != 0 vars: kubernetes_helm_ver: "v{{ helm_client_version }}" - hosts: kube-node become: yes tasks: - name: copy admin.conf file to kube-nodes copy: src: "{{ lookup('env','kud_inventory_folder') }}/artifacts/admin.conf" dest: "/etc/kubernetes/admin.conf"