Skip to content

Commit ade2dee

Browse files
authored
Merge pull request #540 from secureCodeBox/maintenance/rename-lurcher-to-lurker
Add Upgrading Notes for Cleanup
2 parents 92bae12 + 7eba410 commit ade2dee

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ You can find resources to help you get started on our [documentation website](ht
7575

7676
![secureCodeBox Architecture](./docs/resources/scb-architecture.svg)
7777

78+
## Upgrading
79+
80+
For the steps required for upgrading your secureCodeBox installation, see [Upgrading](./UPGRADING.md).
81+
7882
## License
7983

8084
Code of secureCodeBox is licensed under the [Apache License 2.0][scb-license].

UPGRADING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Upgrading
2+
3+
## From 2.X to 3.X
4+
5+
### Renamed `lurcher` to `lurker`
6+
7+
In the 3.0 release, we corrected the misspelling in `lurcher`. To remove the remains after upgrade, delete the old service accounts and roles from the namespaces where you have executed scans in the past:
8+
9+
```bash
10+
# Find relevant namespaces
11+
kubectl get serviceaccounts --all-namespaces | grep lurcher
12+
13+
# Delete role, role binding and service account for the specific namespace
14+
kubectl --namespace <NAMESPACE> delete serviceaccount lurcher
15+
kubectl --namespace <NAMESPACE> delete rolebindings lurcher
16+
kubectl --namespace <NAMESPACE> delete role lurcher
17+
```

0 commit comments

Comments
 (0)