Last active
December 12, 2025 22:54
-
-
Save badnetmask/792219ef731bb3daf97f865bd5c7e528 to your computer and use it in GitHub Desktop.
Supporting material for my blog post: https://mteixeira.wordpress.com/2025/12/12/running-ollama-and-llama-cpp-on-talos-linux-on-an-amd-strix-halo-cpu/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # DO NOT install NFD (already deployed independently) | |
| node-feature-discovery: | |
| enabled: false | |
| # Enable KMM but we won't use it for driver installation (using Talos built-in driver) | |
| # KMM CRDs are required by the operator even if not managing drivers | |
| kmm: | |
| enabled: true | |
| # DeviceConfig - configure driver and metrics | |
| deviceConfig: | |
| spec: | |
| # DO NOT install driver (already in Talos via amdgpu extension) | |
| driver: | |
| enable: false | |
| # Enable metrics exporter | |
| # ServiceMonitor is disabled - using manual VMServiceScrape in amd-gpu-metrics-scrape.yaml instead | |
| # to maintain control over relabeling (cluster_name=talos) | |
| metricsExporter: | |
| enable: true | |
| prometheus: | |
| serviceMonitor: | |
| enable: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment