Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ spec:
akeyless:
# Public SaaS API
akeylessGWApiURL: "https://api.akeyless.io"
# ignoreCache: true # bypass Gateway cache when using an Akeyless Gateway URL
authSecretRef:
secretRef:
accessID:
Expand Down Expand Up @@ -352,6 +353,7 @@ spec:
* `target.name`: Name of the Kubernetes Secret created.
* `data[*].secretKey`: Key name inside the Kubernetes Secret.
* `data[*].remoteRef.key`: Full path of the item in Akeyless.
* `ignoreCache`: Fetch the secret directly from SaaS without cache involved.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Locate all references to ignoreCache in the relevant docs
rg -n "ignoreCache|AkeylessProvider|SecretStore|ExternalSecret" "docs/Integrations & Plugins/plugins-overview/kubernetes-plugins/external-secrets-operator.md"

# Show the relevant surrounding lines around the reported location and the earlier example
sed -n '210,235p' "docs/Integrations & Plugins/plugins-overview/kubernetes-plugins/external-secrets-operator.md"
echo "-----"
sed -n '345,365p' "docs/Integrations & Plugins/plugins-overview/kubernetes-plugins/external-secrets-operator.md"

Repository: akeylesslabs/technical-documentation

Length of output: 5371


Move ignoreCache to the SecretStore provider docs.

ignoreCache is an Akeyless provider setting under spec.provider.akeyless, not an ExternalSecret.spec field. The bullet at line 356 points to the wrong resource boundary; the example at line 221 is the correct placement.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docs/Integrations` &
Plugins/plugins-overview/kubernetes-plugins/external-secrets-operator.md at line
356, Remove the ignoreCache bullet from the ExternalSecret fields documentation
and retain its description under the SecretStore Akeyless provider settings
alongside the existing example. Ensure the documentation identifies it as
spec.provider.akeyless.ignoreCache rather than an ExternalSecret.spec field.


Retrieve values:

Expand Down