Skip to content

Commit a88ecbd

Browse files
Deploy docs preview for PR #274 a790730
1 parent 607b942 commit a88ecbd

File tree

8 files changed

+79
-24
lines changed

8 files changed

+79
-24
lines changed

pr-274/contribute/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ <h2 id="project-status">Project Status<a class="headerlink" href="#project-statu
971971
<h2 id="technology-stack">Technology Stack<a class="headerlink" href="#technology-stack" title="Anchor link to this section for reference"></a></h2>
972972
<p>The operator is built with <strong>Go</strong> using the <a href="https://github.com/kubernetes-sigs/controller-runtime">controller-runtime</a> framework. Key technologies:</p>
973973
<ul>
974-
<li><strong>Language</strong>: Go 1.23+</li>
974+
<li><strong>Language</strong>: Go 1.24+</li>
975975
<li><strong>Framework</strong>: controller-runtime / Operator SDK</li>
976976
<li><strong>Testing</strong>: envtest, Ginkgo, Kind</li>
977977
<li><strong>Build</strong>: Make, Docker</li>
@@ -1006,7 +1006,7 @@ <h2 id="development-documentation">Development Documentation<a class="headerlink
10061006
<span class="md-icon" title="Last update">
10071007
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
10081008
</span>
1009-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="January 23, 2026 13:11:16 UTC">January 23, 2026</span>
1009+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 21:43:03 UTC">February 10, 2026</span>
10101010
</span>
10111011

10121012

pr-274/getting_started/index.html

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,17 @@
596596
</span>
597597
</a>
598598

599+
</li>
600+
601+
<li class="md-nav__item">
602+
<a href="#step-52-access-the-locust-web-ui" class="md-nav__link">
603+
<span class="md-ellipsis">
604+
605+
Step 5.2: Access the Locust web UI
606+
607+
</span>
608+
</a>
609+
599610
</li>
600611

601612
</ul>
@@ -1160,11 +1171,20 @@ <h5 id="step-by-step-instructions">Step-by-step instructions<a class="headerlink
11601171
</div>
11611172
<h3 id="step-5-start-the-test-by-deploying-the-locusttest-custom-resource"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m-2 14.5 6-4.5-6-4.5z"/></svg></span> Step 5: Start the test by deploying the <em>LocustTest</em> custom resource.<a class="headerlink" href="#step-5-start-the-test-by-deploying-the-locusttest-custom-resource" title="Anchor link to this section for reference"></a></h3>
11621173
<p>Deploying a <em>custom resource</em>, signals to the <em>Operator</em> the desire to start a test and thus the <em>Operator</em> starts creating and scheduling
1163-
all needed resources.<br />
1174+
all needed resources.
11641175
To do that, deploy the custom resource following this template <code>kubectl apply -f &lt;valid_cr&gt;.yaml</code>:</p>
11651176
<ul>
11661177
<li><code>kubectl apply -f locusttest-cr.yaml</code></li>
11671178
</ul>
1179+
<div class="admonition warning">
1180+
<p class="admonition-title">Tests are immutable</p>
1181+
<p>LocustTest CRs are <strong>immutable after creation</strong>. If you need to change test parameters (image, command, replicas, etc.), delete the CR and recreate it:</p>
1182+
<div class="highlight"><pre><span></span><code>kubectl<span class="w"> </span>delete<span class="w"> </span>-f<span class="w"> </span>locusttest-cr.yaml
1183+
<span class="c1"># Edit locusttest-cr.yaml with your changes</span>
1184+
kubectl<span class="w"> </span>apply<span class="w"> </span>-f<span class="w"> </span>locusttest-cr.yaml
1185+
</code></pre></div>
1186+
<p>See <a href="../how_does_it_work/#immutable-tests">How does it work</a> for more details on this design decision.</p>
1187+
</div>
11681188
<h4 id="step-51-check-cluster-for-running-resources">Step 5.1: Check cluster for running resources<a class="headerlink" href="#step-51-check-cluster-for-running-resources" title="Anchor link to this section for reference"></a></h4>
11691189
<p>At this point, it is possible to check the cluster and all required resources will be running based on the passed configuration in the
11701190
custom resource.</p>
@@ -1174,6 +1194,19 @@ <h4 id="step-51-check-cluster-for-running-resources">Step 5.1: Check cluster for
11741194
<li>A kubernetes <em>Job</em> to manage the <em>master</em> node.</li>
11751195
<li>A kubernetes <em>Job</em> to manage the <em>worker</em> node.</li>
11761196
</ul>
1197+
<h4 id="step-52-access-the-locust-web-ui">Step 5.2: Access the Locust web UI<a class="headerlink" href="#step-52-access-the-locust-web-ui" title="Anchor link to this section for reference"></a></h4>
1198+
<p>The Locust web UI allows you to monitor test progress, view statistics, and control test execution in real time.</p>
1199+
<p>The web UI runs on port <strong>8089</strong> of the master pod. To access it, use <code>kubectl port-forward</code>:</p>
1200+
<div class="highlight"><pre><span></span><code>kubectl<span class="w"> </span>port-forward<span class="w"> </span>job/&lt;test-name&gt;-master<span class="w"> </span><span class="m">8089</span>:8089
1201+
</code></pre></div>
1202+
<p>For the example above, this would be:</p>
1203+
<div class="highlight"><pre><span></span><code>kubectl<span class="w"> </span>port-forward<span class="w"> </span>job/demo-test-master<span class="w"> </span><span class="m">8089</span>:8089
1204+
</code></pre></div>
1205+
<p>Then open <a href="http://localhost:8089">http://localhost:8089</a> in your browser.</p>
1206+
<div class="admonition tip">
1207+
<p class="admonition-title">Using autostart</p>
1208+
<p>When <code>master.autostart</code> is enabled (the default), the test begins automatically without interaction via the web UI. The web UI is still useful for monitoring progress and viewing real-time statistics.</p>
1209+
</div>
11771210
<h3 id="step-6-clear-resources-after-test-run"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6zM8 9h8v10H8zm7.5-5-1-1h-5l-1 1H5v2h14V4z"/></svg></span> Step 6: Clear resources after test run<a class="headerlink" href="#step-6-clear-resources-after-test-run" title="Anchor link to this section for reference"></a></h3>
11781211
<p>In order to remove the cluster resources after a test run, simply remove the custom resource and the <em>Operator</em> will react to this event by
11791212
cleaning the cluster of all <strong>related</strong> resources.<br />
@@ -1201,7 +1234,7 @@ <h3 id="step-6-clear-resources-after-test-run"><span class="twemoji"><svg xmlns=
12011234
<span class="md-icon" title="Last update">
12021235
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
12031236
</span>
1204-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 11:45:58 UTC">February 10, 2026</span>
1237+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 21:43:03 UTC">February 10, 2026</span>
12051238
</span>
12061239

12071240

pr-274/helm_deploy/index.html

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1136,11 +1136,6 @@ <h3 id="kubernetes-resources">Kubernetes Resources<a class="headerlink" href="#k
11361136
</thead>
11371137
<tbody>
11381138
<tr>
1139-
<td><code>crd.install</code></td>
1140-
<td>Specifies whether to deploy the <code>LocustTest</code> CRD.</td>
1141-
<td><code>true</code></td>
1142-
</tr>
1143-
<tr>
11441139
<td><code>k8s.clusterRole.enabled</code></td>
11451140
<td>Deploy with a cluster-wide role (<code>true</code>) or a namespaced role (<code>false</code>).</td>
11461141
<td><code>true</code></td>
@@ -1176,7 +1171,7 @@ <h3 id="operator-resources">Operator Resources<a class="headerlink" href="#opera
11761171
<tr>
11771172
<td><code>resources.limits.memory</code></td>
11781173
<td>Operator memory limit.</td>
1179-
<td><code>128Mi</code></td>
1174+
<td><code>256Mi</code></td>
11801175
</tr>
11811176
<tr>
11821177
<td><code>resources.limits.cpu</code></td>
@@ -1599,7 +1594,7 @@ <h2 id="next-steps"><span class="twemoji"><svg xmlns="http://www.w3.org/2000/svg
15991594
<span class="md-icon" title="Last update">
16001595
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
16011596
</span>
1602-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 11:45:58 UTC">February 10, 2026</span>
1597+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 21:43:03 UTC">February 10, 2026</span>
16031598
</span>
16041599

16051600

pr-274/how_does_it_work/index.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -817,10 +817,19 @@ <h2 id="architecture-overview">Architecture Overview<a class="headerlink" href="
817817
</code></pre></div>
818818
<h2 id="key-design-decisions">Key Design Decisions<a class="headerlink" href="#key-design-decisions" title="Anchor link to this section for reference"></a></h2>
819819
<h3 id="immutable-tests">Immutable Tests<a class="headerlink" href="#immutable-tests" title="Anchor link to this section for reference"></a></h3>
820-
<p>Tests are <strong>immutable by design</strong>. Updates to a LocustTest CR after creation are ignored. To change test parameters, delete and recreate the CR. This ensures:</p>
820+
<p>Tests are <strong>immutable by design</strong>. Once a LocustTest CR is created, updates to its <code>spec</code> are <strong>ignored</strong> by the operator. The operator sets a <code>SpecDrifted</code> condition on the CR to indicate when spec changes have been detected but not applied.</p>
821+
<p>To change test parameters (image, commands, replicas, etc.), <strong>delete and recreate</strong> the CR:</p>
822+
<div class="highlight"><pre><span></span><code><span class="c1"># Delete the existing test</span>
823+
kubectl<span class="w"> </span>delete<span class="w"> </span>locusttest<span class="w"> </span>&lt;test-name&gt;
824+
825+
<span class="c1"># Edit your CR YAML with the desired changes, then re-apply</span>
826+
kubectl<span class="w"> </span>apply<span class="w"> </span>-f<span class="w"> </span>locusttest-cr.yaml
827+
</code></pre></div>
828+
<p>This design ensures:</p>
821829
<ul>
822-
<li>Predictable behavior</li>
823-
<li>Clean test isolation</li>
830+
<li><strong>Predictable behavior</strong> — each test run uses exactly the configuration it was created with</li>
831+
<li><strong>Clean test isolation</strong> — no mid-flight configuration drift</li>
832+
<li><strong>Simple lifecycle</strong> — create, run, observe, delete</li>
824833
</ul>
825834
<h3 id="owner-references">Owner References<a class="headerlink" href="#owner-references" title="Anchor link to this section for reference"></a></h3>
826835
<p>All created resources (Jobs, Services) have owner references pointing to the LocustTest CR. This enables:</p>
@@ -873,7 +882,7 @@ <h3 id="steps-performed-in-demo">Steps performed in demo<a class="headerlink" hr
873882
<span class="md-icon" title="Last update">
874883
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
875884
</span>
876-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 11:45:58 UTC">February 10, 2026</span>
885+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 21:43:03 UTC">February 10, 2026</span>
877886
</span>
878887

879888

pr-274/integration-testing/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,7 +1117,7 @@ <h2 id="test-structure">Test Structure<a class="headerlink" href="#test-structur
11171117
</code></pre></div>
11181118
<h2 id="prerequisites">Prerequisites<a class="headerlink" href="#prerequisites" title="Anchor link to this section for reference"></a></h2>
11191119
<ul>
1120-
<li><strong>Go 1.23+</strong>: Required for running tests</li>
1120+
<li><strong>Go 1.24+</strong>: Required for running tests</li>
11211121
<li><strong>Docker</strong>: Required for E2E tests (Kind)</li>
11221122
<li><strong>Kind</strong>: Required for E2E tests</li>
11231123
</ul>
@@ -1248,7 +1248,7 @@ <h2 id="related-documentation">Related Documentation<a class="headerlink" href="
12481248
<span class="md-icon" title="Last update">
12491249
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
12501250
</span>
1251-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 11:45:58 UTC">February 10, 2026</span>
1251+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 21:43:03 UTC">February 10, 2026</span>
12521252
</span>
12531253

12541254

pr-274/local-development/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ <h1 id="local-development-guide">Local Development Guide<a class="headerlink" hr
983983
<h2 id="development-setup">Development Setup<a class="headerlink" href="#development-setup" title="Anchor link to this section for reference"></a></h2>
984984
<h3 id="prerequisites">Prerequisites<a class="headerlink" href="#prerequisites" title="Anchor link to this section for reference"></a></h3>
985985
<ul>
986-
<li><strong>Go 1.23+</strong>: Required for building the operator</li>
986+
<li><strong>Go 1.24+</strong>: Required for building the operator</li>
987987
<li><strong>Docker</strong>: Running Docker daemon for building images</li>
988988
<li><strong>kubectl</strong>: Kubernetes CLI for cluster interaction</li>
989989
<li><strong>Kind</strong> or <strong>Minikube</strong>: Local Kubernetes cluster for testing</li>
@@ -1164,7 +1164,7 @@ <h3 id="preview-documentation-locally">Preview Documentation Locally<a class="he
11641164
<span class="md-icon" title="Last update">
11651165
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
11661166
</span>
1167-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 11:45:58 UTC">February 10, 2026</span>
1167+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 21:43:03 UTC">February 10, 2026</span>
11681168
</span>
11691169

11701170

pr-274/migration/index.html

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,17 +1176,35 @@ <h3 id="backup-recommendations">Backup Recommendations<a class="headerlink" href
11761176
<span class="c1"># Export operator Helm values</span>
11771177
helm<span class="w"> </span>get<span class="w"> </span>values<span class="w"> </span>locust-operator<span class="w"> </span>-n<span class="w"> </span>&lt;namespace&gt;<span class="w"> </span>&gt;<span class="w"> </span>values-backup.yaml
11781178
</code></pre></div>
1179+
<div class="admonition danger">
1180+
<p class="admonition-title">Critical: Webhook Required for v1 API Compatibility</p>
1181+
<p>If you have existing v1 <code>LocustTest</code> CRs, the conversion webhook is <strong>required</strong> for them to continue working after upgrading to v2. Without it, v1 CRs will fail CRD schema validation.</p>
1182+
<p>You <strong>must</strong>:</p>
1183+
<ol>
1184+
<li>Install <a href="https://cert-manager.io/docs/installation/">cert-manager</a> before upgrading</li>
1185+
<li>Enable the webhook during upgrade: <code>--set webhook.enabled=true</code></li>
1186+
<li>Verify the webhook is running after upgrade</li>
1187+
</ol>
1188+
<p>If you only use v2 CRs (or are starting fresh), the webhook is optional.</p>
1189+
</div>
11791190
<hr />
11801191
<h2 id="step-1-update-helm-chart">Step 1: Update Helm Chart<a class="headerlink" href="#step-1-update-helm-chart" title="Anchor link to this section for reference"></a></h2>
11811192
<h3 id="upgrade-command">Upgrade Command<a class="headerlink" href="#upgrade-command" title="Anchor link to this section for reference"></a></h3>
11821193
<div class="highlight"><pre><span></span><code><span class="c1"># Update Helm repository</span>
11831194
helm<span class="w"> </span>repo<span class="w"> </span>update<span class="w"> </span>locust-k8s-operator
11841195

1185-
<span class="c1"># Upgrade to v2</span>
1196+
<span class="c1"># Upgrade to v2 (with webhook for v1 CR compatibility)</span>
11861197
helm<span class="w"> </span>upgrade<span class="w"> </span>locust-operator<span class="w"> </span>locust-k8s-operator/locust-k8s-operator<span class="w"> </span><span class="se">\</span>
11871198
<span class="w"> </span>--namespace<span class="w"> </span>locust-system<span class="w"> </span><span class="se">\</span>
1188-
<span class="w"> </span>--version<span class="w"> </span><span class="m">2</span>.0.0
1199+
<span class="w"> </span>--version<span class="w"> </span><span class="m">2</span>.0.0<span class="w"> </span><span class="se">\</span>
1200+
<span class="w"> </span>--set<span class="w"> </span>webhook.enabled<span class="o">=</span><span class="nb">true</span>
1201+
1202+
<span class="c1"># If you don&#39;t need v1 API compatibility, you can omit --set webhook.enabled=true</span>
11891203
</code></pre></div>
1204+
<div class="admonition note">
1205+
<p class="admonition-title">CRD Upgrade</p>
1206+
<p>Helm automatically upgrades the CRD when using <code>helm upgrade</code>. The v2 CRD includes conversion webhook configuration when webhooks are enabled, allowing the API server to convert between v1 and v2 formats transparently.</p>
1207+
</div>
11901208
<h3 id="new-helm-values">New Helm Values<a class="headerlink" href="#new-helm-values" title="Anchor link to this section for reference"></a></h3>
11911209
<p>The v2 chart introduces a cleaner structure. Key changes:</p>
11921210
<table>
@@ -1239,7 +1257,7 @@ <h3 id="operator-resource-defaults">Operator Resource Defaults<a class="headerli
12391257
<p>The Go operator controller requires significantly fewer resources than the Java version:</p>
12401258
<div class="highlight"><pre><span></span><code><span class="nt">resources</span><span class="p">:</span>
12411259
<span class="w"> </span><span class="nt">limits</span><span class="p">:</span>
1242-
<span class="w"> </span><span class="nt">memory</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">128Mi</span>
1260+
<span class="w"> </span><span class="nt">memory</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">256Mi</span>
12431261
<span class="w"> </span><span class="nt">cpu</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">500m</span>
12441262
<span class="w"> </span><span class="nt">requests</span><span class="p">:</span>
12451263
<span class="w"> </span><span class="nt">memory</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">64Mi</span>
@@ -1588,7 +1606,7 @@ <h2 id="rollback-procedure">Rollback Procedure<a class="headerlink" href="#rollb
15881606
<span class="md-icon" title="Last update">
15891607
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
15901608
</span>
1591-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 11:45:58 UTC">February 10, 2026</span>
1609+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 10, 2026 21:43:03 UTC">February 10, 2026</span>
15921610
</span>
15931611

15941612

pr-274/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)