Skip to content

Commit

Permalink
queryfrontend: grant jaeger-query access to pki certs (#1051)
Browse files Browse the repository at this point in the history
* queryfrontend: grant jaeer-query access to pki certs

Signed-off-by: Benedikt Bongartz <bongartz@klimlive.de>

* Update .chloggen/fix_jaeger-query-certs.yaml

---------

Signed-off-by: Benedikt Bongartz <bongartz@klimlive.de>
Co-authored-by: Andreas Gerstmayr <andreas@gerstmayr.me>
  • Loading branch information
frzifus and andreasgerstmayr authored Oct 8, 2024
1 parent 5bfe5d8 commit 642fc96
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .chloggen/fix_jaeger-query-certs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: bug_fix

# The name of the component, or a single word describing the area of concern, (e.g. tempostack, tempomonolithic, github action)
component: tempostack

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: grant jaeer-query access to pki certs

# One or more tracking issues related to the change
issues: [1051]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
2 changes: 1 addition & 1 deletion internal/manifests/queryfrontend/query_frontend.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func BuildQueryFrontend(params manifestutils.Params) ([]client.Object, error) {

if gates.HTTPEncryption || gates.GRPCEncryption {
caBundleName := naming.SigningCABundleName(tempo.Name)
targets := []string{containerNameTempo, containerNameTempoQuery}
targets := []string{containerNameTempo, containerNameJaegerQuery, containerNameTempoQuery}
if err := manifestutils.ConfigureServiceCAByContainerName(&d.Spec.Template.Spec, caBundleName, targets...); err != nil {
return nil, err
}
Expand Down

0 comments on commit 642fc96

Please # to comment.