From 8897346be53170aaac7d84bec4facd845bf09519 Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Sun, 15 Dec 2019 14:23:30 +0530 Subject: Addition of Intel Pod15 Site Manifest This patch adds site manifest for Intel Pod15 Update the vlan-IDs and interface-names The NIC ens785f0 and ens785f1 have swapped roles. Accordingly, the configuration is changed Signed-off-by: Sridhar K. N. Rao Change-Id: I20960e505361bc00d019ea3800814637b9ef4953 --- .../baremetal/bootactions/ixgbe-dkms-install.yaml | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 site/intel-pod15/baremetal/bootactions/ixgbe-dkms-install.yaml (limited to 'site/intel-pod15/baremetal/bootactions/ixgbe-dkms-install.yaml') diff --git a/site/intel-pod15/baremetal/bootactions/ixgbe-dkms-install.yaml b/site/intel-pod15/baremetal/bootactions/ixgbe-dkms-install.yaml new file mode 100644 index 0000000..49b5329 --- /dev/null +++ b/site/intel-pod15/baremetal/bootactions/ixgbe-dkms-install.yaml @@ -0,0 +1,56 @@ +--- +# This file defines a boot action to install specified version of the ixgbe +# driver and blacklist the ixgbevf driver. +schema: 'drydock/BootAction/v1' +metadata: + schema: 'metadata/Document/v1' + name: ixgbe-dkms-install + storagePolicy: 'cleartext' + layeringDefinition: + abstract: false + layer: site + labels: + application: 'drydock' + substitutions: + - src: + schema: pegleg/Script/v1 + name: ixgbe-dkms-install + path: . + dest: + path: .assets[1].data +data: + signaling: false + assets: + - path: /etc/systemd/system/ixgbe-dkms-install.service + type: unit + permissions: '444' + data: | + [Unit] + Description=Service for Installing ixgbe driver + DefaultDependencies=no + Before=promjoin.service + After=network-online.target local-fs.target cloud-init.target + + [Service] + Type=oneshot + ExecStart=/opt/ixgbe-dkms-install.sh + RemainAfterExit=true + + [Install] + WantedBy=airship.target + + data_pipeline: + - utf8_decode + - path: /opt/ixgbe-dkms-install.sh + type: file + permissions: '700' + data_pipeline: + - utf8_decode + - path: /etc/modprobe.d/sriov_blacklist.conf + type: file + permissions: '644' + data_pipeline: + - utf8_decode + data: | + blacklist ixgbevf +... -- cgit 1.2.3-korg