Skip to content

Commit

Permalink
Minor changes to README
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaynard committed Jul 8, 2020
1 parent a5b9d6c commit e6e4319
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kubevol

This is an application to audit all your Kubernetes pods for an attached volume or see all the volumes attached to each pod by specific type (eg: ConfigMap, Secret).
Kubevol allows you to audit all your Kubernetes pods for an attached volume or see all the volumes attached to each pod by a specific type (eg: ConfigMap, Secret).

Features:

Expand All @@ -16,7 +16,7 @@ You can download the latest release from [Releases](https://github.com/bmaynard/

## Watch And Record Changes

Since Kubernetes doesn't keep track of when a `Secret` or `Configmap` was updated, `kubevol` has Kubernetes controller that will watch for all changes and will record the last modified date. This then gives `kubevol` the ability to detect if an attached `Secret` or `Configmap` is outdated.
Since Kubernetes doesn't keep track of when a `Secret` or `Configmap` was updated, `kubevol` has a Kubernetes controller that will watch for all changes and will record the last modified date. This then gives `kubevol` the ability to detect if an attached `Secret` or `Configmap` is outdated.

To install the watch controller, run:

Expand Down Expand Up @@ -44,7 +44,7 @@ Searching for pods that have a Secret attached
+------------------+----------+-----------------------+-----------------------+-------------+
| NAMESPACE | POD NAME | SECRET NAME | VOLUME NAME | OUT OF DATE |
+------------------+----------+-----------------------+-----------------------+-------------+
| kubevol-test-run | redis | redis-secret | redis-secret | Unknown |
| kubevol-test-run | redis | redis-secret | redis-secret | No |
| kubevol-test-run | redis | redis-secret-outdated | redis-secret-outdated | Yes |
+------------------+----------+-----------------------+-----------------------+-------------+
```

0 comments on commit e6e4319

Please sign in to comment.