Skip to content

Commit 33e0518

Browse files
committed
chore: Update repository name references throughout codebase
Signed-off-by: Aaron Lippold <[email protected]>
1 parent fd6f5e6 commit 33e0518

15 files changed

+30
-30
lines changed

docs/contributing/documentation-tools.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ To start working on documentation:
4141
1. Clone the repository
4242

4343
```bash
44-
git clone https://github.com/mitre/kube-cinc-secure-scanner.git
44+
git clone https://github.com/mitre/kube-secure-scanner.git
4545
```
4646

4747
2. Navigate to the project root directory
4848

4949
```bash
50-
cd kube-cinc-secure-scanner
50+
cd kube-secure-scanner
5151
```
5252

5353
3. Run initial setup to install dependencies:

docs/contributing/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ To set up your local development environment:
2727

2828
```bash
2929
# Clone the repository
30-
git clone https://github.com/mitre/kube-cinc-secure-scanner
31-
cd kube-cinc-secure-scanner
30+
git clone https://github.com/mitre/kube-secure-scanner
31+
cd kube-secure-scanner
3232

3333
# Install dependencies
3434
cd docs

docs/helm-charts/inventory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ The Helm charts follow a hierarchical relationship:
7272
## Related Resources
7373

7474
- [Main Project Documentation](../index.md)
75-
- [GitHub Helm Chart Source](https://github.com/mitre/kube-cinc-secure-scanner/tree/main/helm-charts)
75+
- [GitHub Helm Chart Source](https://github.com/mitre/kube-secure-scanner/tree/main/helm-charts)
7676
- [Scanning Approaches](../approaches/index.md)

docs/kubernetes-setup/existing-cluster-requirements.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ Run this validation script to check if your cluster meets the requirements:
111111
112112
```bash
113113
# Clone the repository if you haven't already
114-
git clone https://github.com/mitre/kube-cinc-secure-scanner.git
115-
cd kube-cinc-secure-scanner
114+
git clone https://github.com/mitre/kube-secure-scanner.git
115+
cd kube-secure-scanner
116116

117117
# Run the validation checks
118118
./kubernetes-scripts/validate-cluster.sh

docs/kubernetes-setup/minikube-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The project includes a comprehensive setup script that automates the entire Mini
3737

3838
```bash
3939
# Navigate to the project directory
40-
cd kube-cinc-secure-scanner
40+
cd kube-secure-scanner
4141

4242
# Run the setup script with default options
4343
./kubernetes-scripts/setup-minikube.sh

docs/learning-paths/new-users.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ In this step, you'll set up your environment to run Kube CINC Secure Scanner.
3737
:material-source-repository:{ .lg .middle } **Clone Repository**
3838

3939
```bash
40-
git clone https://github.com/mitre/kube-cinc-secure-scanner.git
41-
cd kube-cinc-secure-scanner
40+
git clone https://github.com/mitre/kube-secure-scanner.git
41+
cd kube-secure-scanner
4242
```
4343

4444
:material-kubernetes:{ .lg .middle } **Set Up Minikube**

docs/overview/inventory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ This directory contains documentation for the technical overview and architectur
1414

1515
The overview section serves as the main technical introduction to the project architecture, scanning approaches, and implementation details.
1616

17-
For the full documentation, visit the [project documentation site](https://github.com/mitre/kube-cinc-secure-scanner).
17+
For the full documentation, visit the [project documentation site](https://github.com/mitre/kube-secure-scanner).

docs/project/documentation-cleanup-plan.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This document outlines our systematic approach to stabilizing the documentation
3636
1. **Create backup directory**
3737

3838
```bash
39-
mkdir -p /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs-backup
39+
mkdir -p /Users/alippold/github/mitre/kube-secure-scanner/docs-backup
4040
```
4141

4242
2. **Create TODO list document**
@@ -227,35 +227,35 @@ This document outlines our systematic approach to stabilizing the documentation
227227

228228
```bash
229229
# Find references to old file paths
230-
grep -r "kubernetes-api\.md" --include="*.md" /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs | grep -v node_modules
230+
grep -r "kubernetes-api\.md" --include="*.md" /Users/alippold/github/mitre/kube-secure-scanner/docs | grep -v node_modules
231231

232232
# Find all markdown files in a directory
233-
find /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs/approaches -type f -name "*.md" | sort
233+
find /Users/alippold/github/mitre/kube-secure-scanner/docs/approaches -type f -name "*.md" | sort
234234

235235
# List reorganization summary files
236-
ls -la /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs/project/*reorganization*
236+
ls -la /Users/alippold/github/mitre/kube-secure-scanner/docs/project/*reorganization*
237237
```
238238

239239
### Viewing Directory Structure
240240

241241
```bash
242242
# View directory structure with tree command
243-
tree -L 2 /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs/approaches
243+
tree -L 2 /Users/alippold/github/mitre/kube-secure-scanner/docs/approaches
244244

245245
# View directory structure with limited depth
246-
tree -L 1 /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs
247-
tree -L 3 /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs/approaches
246+
tree -L 1 /Users/alippold/github/mitre/kube-secure-scanner/docs
247+
tree -L 3 /Users/alippold/github/mitre/kube-secure-scanner/docs/approaches
248248
```
249249

250250
### Backup Operations
251251

252252
```bash
253253
# Create backup directory
254-
mkdir -p /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs-backup
254+
mkdir -p /Users/alippold/github/mitre/kube-secure-scanner/docs-backup
255255

256256
# Move a file to backup (preserving directory structure)
257-
mkdir -p /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs-backup/approaches
258-
mv /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs/approaches/kubernetes-api.md /Users/alippold/github/mitre/kube-cinc-secure-scanner/docs-backup/approaches/
257+
mkdir -p /Users/alippold/github/mitre/kube-secure-scanner/docs-backup/approaches
258+
mv /Users/alippold/github/mitre/kube-secure-scanner/docs/approaches/kubernetes-api.md /Users/alippold/github/mitre/kube-secure-scanner/docs-backup/approaches/
259259
```
260260

261261
### Documentation Tools

docs/tasks/distroless-container-scan.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ kubectl api-resources | grep ephemeralcontainers
7777
```bash
7878
# Example for using the built-in container baseline profile
7979
# The project includes sample profiles in examples/cinc-profiles/
80-
cd /path/to/kube-cinc-secure-scanner
80+
cd /path/to/kube-secure-scanner
8181
ls examples/cinc-profiles/container-baseline
8282
```
8383

docs/tasks/script-deployment.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ This task guides you through the hands-on approach of deploying and using Kube C
5454
1. Clone the repository to access the scripts:
5555

5656
```bash
57-
git clone https://github.com/mitre/kube-cinc-secure-scanner.git
58-
cd kube-cinc-secure-scanner
57+
git clone https://github.com/mitre/kube-secure-scanner.git
58+
cd kube-secure-scanner
5959
```
6060

6161
2. Navigate to the scripts directory:

docs/tasks/sidecar-container-scan.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ kubectl auth can-i create pods --namespace=default
7070
```bash
7171
# Example for using the built-in container baseline profile
7272
# The project includes sample profiles in examples/cinc-profiles/
73-
cd /path/to/kube-cinc-secure-scanner
73+
cd /path/to/kube-secure-scanner
7474
ls examples/cinc-profiles/container-baseline
7575
```
7676

docs/tasks/standard-container-scan.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ kubectl get nodes
8787
```bash
8888
# Example for using the built-in container baseline profile
8989
# The project includes sample profiles in examples/cinc-profiles/
90-
cd /path/to/kube-cinc-secure-scanner
90+
cd /path/to/kube-secure-scanner
9191
ls examples/cinc-profiles/container-baseline
9292
```
9393

scripts/project-maintenance/update-repo-name.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/bash
22

3-
# Script to update repository name references from kube-cinc-secure-scanner to kube-secure-scanner
3+
# Script to update repository name references from kube-secure-scanner to kube-secure-scanner
44
# This script will update all documentation and configuration files with the new repository name
55

66
set -e
77

8-
OLD_NAME="kube-cinc-secure-scanner"
8+
OLD_NAME="kube-secure-scanner"
99
NEW_NAME="kube-secure-scanner"
1010

1111
# Count total references before changes

scripts/project-maintenance/update-script-references.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script updates references to ./scripts/scan-*.sh to ./kubernetes-scripts/scan-*.sh
44
# It also updates setup-minikube.sh and generate-kubeconfig.sh
55

6-
DOCS_DIR="/Users/alippold/github/mitre/kube-cinc-secure-scanner/docs"
6+
DOCS_DIR="/Users/alippold/github/mitre/kube-secure-scanner/docs"
77

88
# Process markdown files only
99
find "$DOCS_DIR" -name "*.md" -type f -print0 | while IFS= read -r -d '' file; do

scripts/test-scripts/test-link-detection.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
set -e
55

66
# Default to architecture/index.md if no file specified
7-
TARGET_FILE="${1:-/Users/alippold/github/mitre/kube-cinc-secure-scanner/docs/architecture/index.md}"
7+
TARGET_FILE="${1:-/Users/alippold/github/mitre/kube-secure-scanner/docs/architecture/index.md}"
88

99
# Also create a test file with known patterns for verification
1010
TEST_FILE="/tmp/test-links.md"

0 commit comments

Comments
 (0)