Merge pull request #2248 from hswong3i/dashboard.yml.j2

Dashboard template should not suffix with .yml.j2
This commit is contained in:
Antoine Legrand 2018-02-06 11:25:02 +01:00 committed by GitHub
commit 37cfd289d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,10 +12,10 @@
- name: Kubernetes Apps | Lay down dashboard template
template:
src: "{{item.file}}"
src: "{{ item.file }}.j2"
dest: "{{ kube_config_dir }}/{{ item.file }}"
with_items:
- {file: dashboard.yml.j2, type: deploy, name: kubernetes-dashboard}
- { file: dashboard.yml, type: deploy, name: kubernetes-dashboard }
register: manifests
when: inventory_hostname == groups['kube-master'][0]