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

Commit

Permalink
camelCase path variables
Browse files Browse the repository at this point in the history
Signed-off-by: grameshtwilio <gramesh@twilio.com>
  • Loading branch information
grameshtwilio committed Sep 8, 2023
1 parent 678ff33 commit e027db1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions charts/spire/charts/spire-agent/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ agent:
{{- end }}
trust_domain: {{ include "spire-lib.trust-domain" . | quote }}
sds:
default_svid_name: {{ .Values.sds.default_svid_name | quote }}
default_bundle_name: {{ .Values.sds.default_bundle_name | quote }}
default_all_bundles_name: {{ .Values.sds.default_all_bundles_name | quote }}
disable_spiffe_cert_validation: {{ .Values.sds.disable_spiffe_cert_validation }}
default_svid_name: {{ .Values.sds.defaultSvidName | quote }}
default_bundle_name: {{ .Values.sds.defaultBundleName | quote }}
default_all_bundles_name: {{ .Values.sds.defaultAllBundlesName | quote }}
disable_spiffe_cert_validation: {{ .Values.sds.disableSpiffeCertValidation }}

plugins:
NodeAttestor:
Expand Down
16 changes: 8 additions & 8 deletions charts/spire/charts/spire-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,14 @@ workloadAttestors:

# Optional SDS configuration section.
sds:
## @param sds.default_svid_name The TLS Certificate resource name to use for the default X509-SVID with Envoy SDS
default_svid_name: "default"
## @param sds.default_bundle_name The Validation Context resource name to use for the default X.509 bundle with Envoy SDS
default_bundle_name: "ROOTCA"
## @param sds.default_all_bundles_name The Validation Context resource name to use for all bundles (including federated) with Envoy SDS
default_all_bundles_name: "ALL"
## @param sds.disable_spiffe_cert_validation Disable Envoy SDS custom validation
disable_spiffe_cert_validation: false
## @param sds.defaultSvidName The TLS Certificate resource name to use for the default X509-SVID with Envoy SDS
defaultSvidName: "default"
## @param sds.defaultBundleName The Validation Context resource name to use for the default X.509 bundle with Envoy SDS
defaultBundleName: "ROOTCA"
## @param sds.defaultAllBundlesName The Validation Context resource name to use for all bundles (including federated) with Envoy SDS
defaultAllBundlesName: "ALL"
## @param sds.disableSpiffeCertValidation Disable Envoy SDS custom validation
disableSpiffeCertValidation: false

telemetry:
prometheus:
Expand Down

0 comments on commit e027db1

Please sign in to comment.