mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-08-23 22:26:34 +00:00
* Add sensitiveContainerEnvVar and sensitiveConfigMapContent checks * Update full example configfile
12 lines
250 B
YAML
12 lines
250 B
YAML
# This fails because a value contains a private key.
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: test-config
|
|
data:
|
|
a_key: and value that are ok
|
|
ssh_access: |
|
|
-----BEGIN PRIVATE KEY-----
|
|
xxxxxxxx
|
|
-----END OPENSSH PRIVATE KEY-----
|