aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml
diff options
context:
space:
mode:
authorMichaelMorris <michael.morris@est.tech>2021-09-20 09:11:18 +0100
committerMichaelMorris <michael.morris@est.tech>2021-09-20 09:11:32 +0100
commit58787cbda5ab57260d792ac4921b368bb78e4025 (patch)
treed74094181ef2c0c6e49d0f346e295d7d2400baf3 /openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml
parent0ef5f83fbe6f68cbde5530b5d58d96cac285cfa7 (diff)
Updated SDC version to 1.9.2-SNAPSHOT1.9.2
Updated to release bug fixes on 1.9.1 for I release Signed-off-by: MichaelMorris <michael.morris@est.tech> Issue-ID: SDC-3694 Change-Id: Ifda88730a17f2ecabab0ac29128aaa23618bc4f8
Diffstat (limited to 'openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml')
-rw-r--r--openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml b/openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml
index 997ee4c063..ab72925227 100644
--- a/openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml
+++ b/openecomp-be/lib/openecomp-core-lib/openecomp-config-lib/pom.xml
@@ -24,7 +24,7 @@
<parent>
<groupId>org.openecomp.sdc.core</groupId>
<artifactId>openecomp-core-lib</artifactId>
- <version>1.9.1-SNAPSHOT</version>
+ <version>1.9.2-SNAPSHOT</version>
</parent>
ight">
---
# 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 kud variables
      include_vars:
        file: kud-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
  pre_tasks:
    - name: Load kud variables
      include_vars:
        file: kud-vars.yml
  roles:
    - role: andrewrothstein.kubectl
      kubectl_ver: "v{{ kubectl_version }}"
  tasks:
    - name: create service accounts
      command: "/usr/local/bin/kubectl apply -f /tmp/{{ item }}"
      with_items:
        - rbac.yaml
        - node-feature-discovery-daemonset.json.template