{"id":23530164,"url":"https://github.com/jay7x/puppet-sfboot","last_synced_at":"2026-04-29T00:31:29.454Z","repository":{"id":269644789,"uuid":"908082034","full_name":"jay7x/puppet-sfboot","owner":"jay7x","description":"Puppet module to manage Solarflare NIC Boot ROM parameters using sfboot tool","archived":false,"fork":false,"pushed_at":"2025-05-05T05:01:48.000Z","size":55,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T20:42:08.801Z","etag":null,"topics":["puppet","puppet-module","solarflare"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jay7x.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-25T04:42:05.000Z","updated_at":"2025-05-05T05:58:25.000Z","dependencies_parsed_at":"2024-12-25T06:17:46.838Z","dependency_job_id":"45d7495c-6ed0-4a62-bfcf-3cd60aab828c","html_url":"https://github.com/jay7x/puppet-sfboot","commit_stats":null,"previous_names":["jay7x/puppet-sfboot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jay7x/puppet-sfboot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jay7x%2Fpuppet-sfboot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jay7x%2Fpuppet-sfboot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jay7x%2Fpuppet-sfboot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jay7x%2Fpuppet-sfboot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jay7x","download_url":"https://codeload.github.com/jay7x/puppet-sfboot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jay7x%2Fpuppet-sfboot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32405901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["puppet","puppet-module","solarflare"],"created_at":"2024-12-25T21:16:04.627Z","updated_at":"2026-04-29T00:31:29.429Z","avatar_url":"https://github.com/jay7x.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Puppet sfboot module\n\n## Table of Contents\n\n1. [Description](#description)\n1. [Setup](#setup)\n    * [Setup requirements](#setup-requirements)\n1. [Usage - Configuration options and additional functionality](#usage)\n1. [Limitations - OS compatibility, etc.](#limitations)\n1. [Links](#limitations)\n\n## Description\n\nThis module contains Puppet resource types and classes to manage\nSolarflare NIC Boot ROM parameters using `sfboot` tool.\n\nPlease check the [Limitations](#limitations) section below.\n\n## Setup\n\n### Setup Requirements\n\n`sfboot` tool must be present on the nodes you'd like to use this module on.\n\nSee [Drivers and Software download page](https://www.xilinx.com/support/download/nic-software-and-drivers.html#drivers-software)\non how to install the Solarflare utilities.\n\n## Usage\n\nUse `sfboot` class to manage Solarflare global Boot ROM parameters:\n\n```puppet\nclass { 'sfboot':\n  boot_image       =\u003e 'all',\n  port_mode        =\u003e '[2x10/25g][2x10/25g]',\n  firmware_variant =\u003e 'full-feature',\n}\n```\n\nUse `sfboot` class to manage global and per-adapter parameters:\n\n```puppet\nclass { 'sfboot':\n  boot_image       =\u003e 'all',\n  port_mode        =\u003e '[2x10/25g][2x10/25g]',\n  firmware_variant =\u003e 'full-feature',\n\n  adapters =\u003e {\n    'enp123s0f1' =\u003e {\n      boot_type   =\u003e 'disabled',\n      switch_mode =\u003e 'partitioning-with-sriov',\n      vf_count    =\u003e 2,\n      pf_count    =\u003e 4,\n      pf_vlans    =\u003e [0, 100, 110, 120],\n    },\n  }\n}\n```\n\nSame as above, but configured in Hiera:\n\n```puppet\ninclude sfboot\n```\n\n```yaml\nsfboot::boot_image: all\nsfboot::port_mode: \"[2x10/25g][2x10/25g]\"\nsfboot::firmware_variant: \"full-feature\"\nsfboot::adapters:\n  enp123s0f1:\n    boot_type: disabled\n    switch_mode: \"partitioning-with-sriov\"\n    vf_count: 2\n    pf_count: 4\n    pf_vlans:\n      - 0\n      - 100\n      - 110\n      - 120\n```\n\nUse `sfboot_global` Puppet resource type directly to manage global Solaflare\nNIC Boot ROM parameters:\n\n```puppet\nsfboot_global { 'global':\n  boot_image       =\u003e 'all',\n  port_mode        =\u003e '[2x10/25g][2x10/25g]',\n  firmware_variant =\u003e 'full-feature',\n}\n```\n\nPlease note, that `sfboot_global` resource can only accept `global` title.\nIt'll throw an error if any other title is specified.\n\nUse `sfboot_adapter` Puppet resource type directly to manage per-adapter\nSolaflare NIC Boot ROM parameters:\n\n```puppet\nsfboot_adapter { 'enp123s0f1':\n  boot_type   =\u003e 'disabled',\n  switch_mode =\u003e 'partitioning-with-sriov',\n  vf_count    =\u003e 2,\n  pf_count    =\u003e 4,\n  pf_vlans    =\u003e [0, 100, 110, 120],\n}\n```\n\n## Reference\n\nSee [REFERENCE.md](https://github.com/jay7x/puppet-sfboot/blob/main/REFERENCE.md).\n\n## Limitations\n\n* As stated before, Solarflare utilities installation is not implemented (yet).\n* Author is not aware how to read the `permit-fw-downgrade` global parameter\n  value. That's why it's not supported.\n* Rebooting the node after changing Boot ROM parameters is out of the module\n  scope.\n* This module was never tested with multiple Solarflare cards on the same\n  server.\n* This module is tested with `sfboot` tool versions v8.2.4, v8.3.3\n* This module is tested on the following OS list at the moment:\n  * Debian 11, 12\n\n## Links\n\n1. [Drivers and Software download page](https://www.xilinx.com/support/download/nic-software-and-drivers.html#drivers-software)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjay7x%2Fpuppet-sfboot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjay7x%2Fpuppet-sfboot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjay7x%2Fpuppet-sfboot/lists"}