Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/guides/druid/rotate-auth/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ spec:
authentication:
secretRef:
kind: Secret
name: sample-druid-auth-user
name: druid-quickstart-auth-user

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify the YAML artifact file contains the correct Secret name
if grep -q "sample-druid-auth-user" docs/guides/druid/rotate-auth/yamls/Druid-rotate-auth-user.yaml; then
  echo "❌ FOUND: YAML artifact still references old Secret name 'sample-druid-auth-user'"
  grep -n "sample-druid-auth-user" docs/guides/druid/rotate-auth/yamls/Druid-rotate-auth-user.yaml
else
  echo "✓ YAML artifact correctly updated to 'druid-quickstart-auth-user'"
  grep -n "druid-quickstart-auth-user" docs/guides/druid/rotate-auth/yamls/Druid-rotate-auth-user.yaml
fi

Repository: kubedb/docs

Length of output: 174


Update YAML artifact to use correct Secret name.

The YAML file docs/guides/druid/rotate-auth/yamls/Druid-rotate-auth-user.yaml still references sample-druid-auth-user (line 13), but the guide instructs users to create a secret named druid-quickstart-auth-user. When users execute the kubectl apply command, they will reference a non-existent Secret, causing the DruidOpsRequest to fail.

Update line 13 in the YAML file from name: sample-druid-auth-user to name: druid-quickstart-auth-user.

🤖 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/guides/druid/rotate-auth/guide.md` at line 377, The YAML file
`docs/guides/druid/rotate-auth/yamls/Druid-rotate-auth-user.yaml` contains an
incorrect Secret name reference at line 13. Update the Secret name from
`sample-druid-auth-user` to `druid-quickstart-auth-user` to match the Secret
creation instructions provided in the guide, ensuring the DruidOpsRequest will
correctly reference an existing Secret when users apply the manifest.

timeout: 5m
apply: IfReady
```
Expand Down Expand Up @@ -417,7 +417,7 @@ Spec:
Apply: IfReady
Authentication:
Secret Ref:
Name: sample-druid-auth-user
Name: druid-quickstart-auth-user
Database Ref:
Name: druid-quickstart
Timeout: 5m
Expand Down
8 changes: 3 additions & 5 deletions docs/guides/elasticsearch/gitops/gitops.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,15 +345,13 @@ At first, we will create a secret containing `user.conf` file with required conf
To know more about this configuration file, check [here](/docs/guides/elasticsearch/configuration/combined-cluster/index.md)
```yaml
apiVersion: v1
stringData:
user.conf: |
max_connections=200
shared_buffers=256MB
kind: Secret
metadata:
name: es-configuration
namespace: demo
type: Opaque
stringData:
elasticsearch.yml: |-
indices.query.bool.max_clause_count: 2048
```

Now, we will add this file to `kubedb/es-configuration.yaml`.
Expand Down
10 changes: 10 additions & 0 deletions docs/guides/elasticsearch/reconfigure/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Reconfigure
menu:
docs_{{ .version }}:
identifier: es-reconfigure
name: Reconfigure
parent: es-elasticsearch-guides
weight: 55
menu_name: docs_{{ .version }}
---
Loading
Loading