Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into prometheus
Browse files Browse the repository at this point in the history
  • Loading branch information
kfox1111 committed Feb 23, 2023
2 parents 2c5aff1 + 8a3ae10 commit b160dac
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/spire/Chart.yaml
Expand Up @@ -29,3 +29,6 @@ dependencies:
condition: spiffe-oidc-discovery-provider.enabled
repository: file://./charts/spiffe-oidc-discovery-provider
version: 0.1.0
annotations:
artifacthub.io/category: security
artifacthub.io/license: Apache-2.0
1 change: 1 addition & 0 deletions charts/spire/charts/spire-agent/README.md
Expand Up @@ -38,5 +38,6 @@ A Helm chart to install the SPIRE agent.
| waitForIt.image.repository | string | `"chainguard/wait-for-it"` | |
| waitForIt.image.version | string | `"latest-20230113"` | |
| waitForIt.resources | object | `{}` | |
| workloadAttestors.unix.enabled | bool | `false` | enables the Unix workload attestor |

----------------------------------------------
2 changes: 2 additions & 0 deletions charts/spire/charts/spire-agent/templates/configmap.yaml
Expand Up @@ -36,10 +36,12 @@ data:
}
}
{{- if .Values.workloadAttestors.unix.enabled }}
WorkloadAttestor "unix" {
plugin_data {
}
}
{{- end }}
}
health_checks {
Expand Down
7 changes: 7 additions & 0 deletions charts/spire/charts/spire-agent/values.yaml
Expand Up @@ -77,3 +77,10 @@ telemetry:
prometheus:
enabled: false
port: 9988

# workloadAttestors determine a workload's properties and then generate a set of selectors associated with it.
workloadAttestors:
# unix is a workload attestor which generates unix-based selectors like 'uid' and 'gid'.
unix:
# -- enables the Unix workload attestor
enabled: false

0 comments on commit b160dac

Please sign in to comment.