@@ -62,13 +62,13 @@ The project includes a convenient script that handles the entire sealed secret g
6262
6363``` bash
6464# Generate secrets for development (auto-generated passwords)
65- ./tools/generate-sealed-secrets.sh development
65+ ./tools/k8s/ generate-sealed-secrets.sh development
6666
6767# Generate secrets for production (interactive prompts)
68- ./tools/generate-sealed-secrets.sh production
68+ ./tools/k8s/ generate-sealed-secrets.sh production
6969
7070# Generate secrets for all environments
71- ./tools/generate-sealed-secrets.sh all
71+ ./tools/k8s/ generate-sealed-secrets.sh all
7272```
7373
7474## Environment-Specific Workflows
@@ -78,7 +78,7 @@ The project includes a convenient script that handles the entire sealed secret g
7878Development environments use automatically generated secure passwords for convenience:
7979
8080``` bash
81- ./tools/generate-sealed-secrets.sh development
81+ ./tools/k8s/ generate-sealed-secrets.sh development
8282```
8383
8484This will:
@@ -92,7 +92,7 @@ This will:
9292Production and staging environments require interactive credential input for security:
9393
9494``` bash
95- ./tools/generate-sealed-secrets.sh production
95+ ./tools/k8s/ generate-sealed-secrets.sh production
9696```
9797
9898You'll be prompted to provide:
@@ -147,7 +147,7 @@ Regular secret rotation is essential for security. Follow these steps to rotate
147147
148148``` bash
149149# Use the generation script with new credentials
150- ./tools/generate-sealed-secrets.sh production
150+ ./tools/k8s/ generate-sealed-secrets.sh production
151151```
152152
153153### 2. Apply Updated Secrets
@@ -274,7 +274,7 @@ For issues with the generation script:
274274
275275``` bash
276276# Run with verbose output
277- bash -x ./tools/generate-sealed-secrets.sh development
277+ bash -x ./tools/k8s/ generate-sealed-secrets.sh development
278278
279279# Check prerequisites manually
280280kubectl cluster-info
@@ -326,7 +326,7 @@ For complex applications requiring multiple secret sources:
326326
327327``` bash
328328# Database secrets
329- ./tools/generate-sealed-secrets.sh production
329+ ./tools/k8s/ generate-sealed-secrets.sh production
330330
331331# Additional API secrets
332332kubectl create secret generic api-secrets \
@@ -355,7 +355,7 @@ rm plain-secret.yaml
355355## Files and Structure
356356
357357```
358- ├── tools/generate-sealed-secrets.sh # Main secret generation script
358+ ├── tools/k8s/ generate-sealed-secrets.sh # Main secret generation script
359359├── k8s/environments/
360360│ ├── development/
361361│ │ ├── secrets.yaml # Development sealed secrets
0 commit comments