Update pilot launch doc

This commit is contained in:
Urtzi Alfaro
2026-01-11 09:18:17 +01:00
parent 5533198cab
commit b66bfda100
3 changed files with 423 additions and 80 deletions

View File

@@ -105,7 +105,7 @@ patches:
version: v1
kind: StatefulSet
name: signoz-clickhouse
namespace: signoz
namespace: bakery-ia
patch: |-
- op: replace
path: /spec/replicas
@@ -125,7 +125,7 @@ patches:
version: v1
kind: StatefulSet
name: signoz
namespace: signoz
namespace: bakery-ia
patch: |-
- op: replace
path: /spec/replicas
@@ -145,7 +145,7 @@ patches:
version: v1
kind: Deployment
name: signoz-alertmanager
namespace: signoz
namespace: bakery-ia
patch: |-
- op: replace
path: /spec/replicas

View File

@@ -0,0 +1,23 @@
#!/bin/bash
# Script to remove imagePullSecrets from all Kubernetes manifests
# Run this from the repository root: ./infrastructure/kubernetes/remove-imagepullsecrets.sh
echo "Removing imagePullSecrets from all Kubernetes manifests..."
# Find all YAML files in base directory and remove imagePullSecrets
find infrastructure/kubernetes/base -name "*.yaml" -type f | while read file; do
# Create backup
cp "$file" "$file.bak"
# Remove imagePullSecrets and the following line (name: dockerhub-creds)
sed -i '/imagePullSecrets:/,+1d' "$file"
echo "Processed: $file"
done
echo ""
echo "✅ Done! Removed imagePullSecrets from all manifests"
echo "Backup files created with .bak extension"
echo ""
echo "Verify removal:"
grep -r "imagePullSecrets" infrastructure/kubernetes/base/ && echo "⚠️ WARNING: Some files still contain imagePullSecrets" || echo "✅ All imagePullSecrets removed successfully"