blob: 90bad6717c2a03cd40e78d280193cd30b7d48e77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
---
# SPDX-license-identifier: Apache-2.0
##############################################################################
# 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: kube-node
tasks:
- name: Load krd variables
include_vars:
file: krd-vars.yml
- name: clone NFD repo
git:
repo: "{{ nfd_url }}"
dest: "{{ nfd_dest }}"
version: "{{ nfd_version }}"
force: yes
when: nfd_source_type == "source"
- name: build NFD image
become: yes
make:
chdir: "{{ nfd_dest }}"
- name: get NDF image name
become: yes
shell: "docker images | grep kubernetes_incubator | awk '{printf(\"%s:%s\\n\", $1,$2)}'"
register: nfd_image
- name: replace NFD image name
lineinfile:
path: "{{ nfd_dest }}/node-feature-discovery-{{ item }}.json.template"
regexp: "\"image\": \"quay.io/kubernetes_incubator.*i"
line: "\"image\": \"{{ nfd_image.stdout }}\","
with_items:
- daemonset
- job
- name: copying rbac and daemonset files
fetch:
src: "{{ nfd_dest }}/{{ item }}"
dest: "/tmp/"
flat: yes
with_items:
- rbac.yaml
- node-feature-discovery-daemonset.json.template
- hosts: localhost
become: yes
roles:
- andrewrothstein.kubectl
tasks:
- name: create service accounts
command: "/usr/local/bin/kubectl apply -f /tmp/{{ item }}"
with_items:
- rbac.yaml
- node-feature-discovery-daemonset.json.template
|