<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Infrastructure on Derek's Guides</title><link>https://guides.derekleeds.cloud/categories/infrastructure/</link><description>Recent content in Infrastructure on Derek's Guides</description><generator>Hugo</generator><language>en</language><lastBuildDate>Sat, 13 Jun 2026 13:38:27 -0500</lastBuildDate><atom:link href="https://guides.derekleeds.cloud/categories/infrastructure/index.xml" rel="self" type="application/rss+xml"/><item><title>Hermes as a GitOps SRE Assistant</title><link>https://guides.derekleeds.cloud/docs/hermes/hermes-gitops-sre-assistant/</link><pubDate>Sat, 13 Jun 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/hermes/hermes-gitops-sre-assistant/</guid><description>&lt;p&gt;Hermes is most useful when it acts like an SRE assistant, not a magic production
button. The workflow is simple: investigate, plan, change the source of truth,
validate the result, and document what happened.&lt;/p&gt;
&lt;p&gt;That order matters.&lt;/p&gt;
&lt;h2 id="operating-principles"&gt;Operating Principles&lt;/h2&gt;
&lt;p&gt;My homelab has a few rules for Hermes-driven work:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Forgejo is the source of truth&lt;/strong&gt; for private infrastructure state.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;GitHub is the source of truth&lt;/strong&gt; for public guides like this site.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Komodo manages Docker Compose infrastructure and management-plane stacks.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ArgoCD manages Kubernetes application workloads.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Talos nodes are immutable.&lt;/strong&gt; No SSH archaeology, no hand-edited snowflakes.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Secrets stay out of chat and docs.&lt;/strong&gt; Use 1Password, environment references,
or SOPS-encrypted files.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Documentation is part of the task.&lt;/strong&gt; If it is not documented, it did not
happen.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Hermes can help with every part of that flow, but it does not get to invent a
new source of truth because it found a convenient command.&lt;/p&gt;</description></item><item><title>OpenClaw Secrets Management with 1Password</title><link>https://guides.derekleeds.cloud/docs/security/1password-secrets-management/</link><pubDate>Sat, 14 Mar 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/security/1password-secrets-management/</guid><description>&lt;p&gt;This guide walks through setting up 1Password as a centralized secret provider for OpenClaw. By the end, every API key, token, and credential in your OpenClaw config will resolve at runtime through 1Password — nothing sensitive stored in plaintext.&lt;/p&gt;
&lt;h2 id="prerequisites"&gt;Prerequisites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;OpenClaw installed and running&lt;/li&gt;
&lt;li&gt;1Password account (personal or business)&lt;/li&gt;
&lt;li&gt;1Password CLI (&lt;code&gt;op&lt;/code&gt;) installed&lt;/li&gt;
&lt;li&gt;Basic familiarity with OpenClaw&amp;rsquo;s &lt;code&gt;openclaw.json&lt;/code&gt; config&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="part-1-install-and-configure-1password-cli"&gt;Part 1: Install and Configure 1Password CLI&lt;/h2&gt;
&lt;h3 id="install-the-cli"&gt;Install the CLI&lt;/h3&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# Ubuntu/Debian&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;curl -sS https://downloads.1password.com/linux/keys/1password.asc &lt;span class="p"&gt;|&lt;/span&gt; &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; sudo gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;deb [arch=&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;dpkg --print-architecture&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="s2"&gt; signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/&lt;/span&gt;&lt;span class="k"&gt;$(&lt;/span&gt;dpkg --print-architecture&lt;span class="k"&gt;)&lt;/span&gt;&lt;span class="s2"&gt; stable main&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;|&lt;/span&gt; &lt;span class="se"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; sudo tee /etc/apt/sources.list.d/1password.list
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;sudo apt update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; sudo apt install 1password-cli
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# Verify&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;op --version
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id="create-a-service-account"&gt;Create a Service Account&lt;/h3&gt;
&lt;p&gt;For non-interactive (agent) access, you need a service account — not a personal sign-in.&lt;/p&gt;</description></item><item><title>OpenClaw + Hermes: Multi-Agent Infrastructure</title><link>https://guides.derekleeds.cloud/docs/openclaw/openclaw-hermes-integration/</link><pubDate>Tue, 14 Apr 2026 00:00:00 +0000</pubDate><guid>https://guides.derekleeds.cloud/docs/openclaw/openclaw-hermes-integration/</guid><description>&lt;p&gt;Connect OpenClaw (Clawdia) to Hermes Agent for delegating infrastructure tasks via HTTP API. This lets you manage Docker, Kubernetes, and GitOps operations through conversational commands.&lt;/p&gt;
&lt;h2 id="what-youll-learn"&gt;What You&amp;rsquo;ll Learn&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;When to use multi-agent architecture for infrastructure tasks&lt;/li&gt;
&lt;li&gt;How to connect OpenClaw to Hermes via HTTP API&lt;/li&gt;
&lt;li&gt;Configuring the Hermes integration skill&lt;/li&gt;
&lt;li&gt;Querying Docker, deploying stacks, and managing GitOps&lt;/li&gt;
&lt;li&gt;Security considerations for agent-to-agent communication&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="why-multi-agent"&gt;Why Multi-Agent?&lt;/h2&gt;
&lt;p&gt;Running everything in one agent creates a security problem. Infrastructure tasks need terminal and Docker access—capabilities you don&amp;rsquo;t want tied to your general-purpose assistant.&lt;/p&gt;</description></item></channel></rss>