<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Installation on Component Operator</title><link>https://sap.github.io/component-operator/docs/installation/</link><description>Recent content in Installation on Component Operator</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://sap.github.io/component-operator/docs/installation/index.xml" rel="self" type="application/rss+xml"/><item><title>Prerequisites</title><link>https://sap.github.io/component-operator/docs/installation/prerequisites/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://sap.github.io/component-operator/docs/installation/prerequisites/</guid><description>&lt;p&gt;Component-operator requires the &lt;a href="https://fluxcd.io/flux/components/source/"&gt;Flux source controller&lt;/a&gt; to be installed in the cluster. It relies on Flux&amp;rsquo;s &lt;code&gt;GitRepository&lt;/code&gt;, &lt;code&gt;OCIRepository&lt;/code&gt;, &lt;code&gt;Bucket&lt;/code&gt;, and &lt;code&gt;HelmChart&lt;/code&gt; source types to fetch manifest artifacts. You can install just the source controller without the full Flux stack:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;flux install --components source-controller
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Alternatively, install the complete Flux toolkit if you plan to use other Flux features alongside component-operator:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;flux install
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description></item><item><title>Container Images</title><link>https://sap.github.io/component-operator/docs/installation/images/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://sap.github.io/component-operator/docs/installation/images/</guid><description>&lt;p&gt;OCI images for component-operator are published to the GitHub Container Registry alongside each release. You can browse all available images and versions on the &lt;a href="https://github.com/orgs/SAP/packages?repo_name=component-operator"&gt;GitHub Packages page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The image reference is:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;ghcr.io/sap/component-operator:&amp;lt;version&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Custom Resource Definitions can be downloaded separately as:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;ghcr.io/sap/component-operator/crds:&amp;lt;version&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Replace &lt;code&gt;&amp;lt;version&amp;gt;&lt;/code&gt; with the desired release tag (e.g. &lt;code&gt;v0.12.0&lt;/code&gt;). Using &lt;code&gt;latest&lt;/code&gt; is not recommended for production deployments.&lt;/p&gt;</description></item><item><title>Helm Chart</title><link>https://sap.github.io/component-operator/docs/installation/helm/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://sap.github.io/component-operator/docs/installation/helm/</guid><description>&lt;p&gt;The recommended way to install component-operator is via the official Helm chart. The chart source is hosted at &lt;a href="https://github.com/SAP/component-operator/tree/main/chart"&gt;&lt;code&gt;github.com/SAP/component-operator/tree/main/chart&lt;/code&gt;&lt;/a&gt; and published to the GitHub OCI registry.&lt;/p&gt;
&lt;h2 id="installation"&gt;Installation&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;helm upgrade --install component-operator &lt;span style="color:#a31515"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; oci://ghcr.io/sap/component-operator/charts/component-operator &lt;span style="color:#a31515"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; --namespace flux-system
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To pin to a specific version:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;helm upgrade --install component-operator &lt;span style="color:#a31515"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; oci://ghcr.io/sap/component-operator/charts/component-operator &lt;span style="color:#a31515"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; --version &amp;lt;version&amp;gt; &lt;span style="color:#a31515"&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; --namespace flux-system
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Refer to the &lt;a href="https://github.com/SAP/component-operator/tree/main/chart"&gt;chart documentation&lt;/a&gt; for the full list of available Helm values.&lt;/p&gt;
&lt;p&gt;Note: if you want to deploy component-operator into a different namespace (instead of flux-system), then you have to allow the component-operator pod to access the source-controller running flux-system.&lt;/p&gt;</description></item></channel></rss>