Skip to content

Commit

Permalink
Fix trustDomain global for oidc discovery provider (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofranssen authored Apr 5, 2023
1 parent 2a2615b commit db148c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data:
workload_api {
socket_path = {{ include "spiffe-oidc-discovery-provider.workload-api-socket-path" . | quote }}
trust_domain = "{{ .Values.trustDomain }}"
trust_domain = {{ include "spiffe-oidc-discovery-provider.trust-domain" . | quote }}
}
health_checks {
Expand Down
6 changes: 3 additions & 3 deletions charts/spire/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
global:
k8s:
# -- This is the value of your clusters `kubeadm init --service-dns-domain` flag
clusterDomain: "cluster.local"
clusterDomain: cluster.local
spire:
# -- Set the name of the Kubernetes cluster
clusterName: "example-cluster"
clusterName: example-cluster
# -- Set the trust domain to use for the spiffe identifiers
trustDomain: "example.org"
trustDomain: example.org
# -- Override all instances of bundleConfigMap
bundleConfigMap: ""

Expand Down

0 comments on commit db148c8

Please sign in to comment.