mirror of https://github.com/linkerd/linkerd2.git
Clarification for collectorSvcAccount and collectorSvcAddr in jaeger's values.yaml (#5366)
Moved the `collectorSvcAccount` and `collectorSvcAddr` values in `values.yaml` under the `webhook` section, given it's the injector that will make use of that, and to not confuse with the SA and address for the collector that is provided by default (the injector could point to a different collector than that one).
This commit is contained in:
parent
c19cfd71a1
commit
7ddef6dbeb
|
@ -19,14 +19,14 @@ A Helm chart for the jaeger add-on in Linkerd
|
||||||
| collector.image.name | string | `"omnition/opencensus-collector"` | |
|
| collector.image.name | string | `"omnition/opencensus-collector"` | |
|
||||||
| collector.image.pullPolicy | string | `"Always"` | |
|
| collector.image.pullPolicy | string | `"Always"` | |
|
||||||
| collector.image.version | string | `"0.1.11"` | |
|
| collector.image.version | string | `"0.1.11"` | |
|
||||||
| collectorSvcAccount | string | `"collector"` | |
|
|
||||||
| collectorSvcAddr | string | `"collector.linkerd-jaeger:55678"` | |
|
|
||||||
| jaeger.image.name | string | `"jaegertracing/all-in-one"` | |
|
| jaeger.image.name | string | `"jaegertracing/all-in-one"` | |
|
||||||
| jaeger.image.pullPolicy | string | `"Always"` | |
|
| jaeger.image.pullPolicy | string | `"Always"` | |
|
||||||
| jaeger.image.version | string | `"1.19.2"` | |
|
| jaeger.image.version | string | `"1.19.2"` | |
|
||||||
| linkerdVersion | string | `"linkerdVersionValue"` | |
|
| linkerdVersion | string | `"linkerdVersionValue"` | |
|
||||||
| namespace | string | `"linkerd-jaeger"` | |
|
| namespace | string | `"linkerd-jaeger"` | |
|
||||||
| webhook.caBundle | string | `""` | if empty, Helm will auto-generate this field, unless externalSecret is set to true. |
|
| webhook.caBundle | string | `""` | if empty, Helm will auto-generate this field, unless externalSecret is set to true. |
|
||||||
|
| webhook.collectorSvcAccount | string | `"collector"` | service account associated with the collector instance |
|
||||||
|
| webhook.collectorSvcAddr | string | `"collector.linkerd-jaeger:55678"` | collector service address for the proxies to send trace data. Points by default to the the linkerd-jaeger collector |
|
||||||
| webhook.crtPEM | string | `""` | if empty, Helm will auto-generate these fields |
|
| webhook.crtPEM | string | `""` | if empty, Helm will auto-generate these fields |
|
||||||
| webhook.externalSecret | bool | `false` | |
|
| webhook.externalSecret | bool | `false` | |
|
||||||
| webhook.failurePolicy | string | `"Ignore"` | |
|
| webhook.failurePolicy | string | `"Ignore"` | |
|
||||||
|
|
|
@ -26,8 +26,8 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- args:
|
- args:
|
||||||
- -collector-svc-addr={{.Values.collectorSvcAddr}}
|
- -collector-svc-addr={{.Values.webhook.collectorSvcAddr}}
|
||||||
- -collector-svc-account={{.Values.collectorSvcAccount}}
|
- -collector-svc-account={{.Values.webhook.collectorSvcAccount}}
|
||||||
- -log-level={{.Values.webhook.logLevel}}
|
- -log-level={{.Values.webhook.logLevel}}
|
||||||
image: {{.Values.webhook.image.name}}:{{default .Values.webhook.image.version .Values.cliVersion}}
|
image: {{.Values.webhook.image.name}}:{{default .Values.webhook.image.version .Values.cliVersion}}
|
||||||
imagePullPolicy: {{.Values.webhook.image.pullPolicy}}
|
imagePullPolicy: {{.Values.webhook.image.pullPolicy}}
|
||||||
|
|
|
@ -9,9 +9,6 @@ collector:
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
# resources:
|
# resources:
|
||||||
|
|
||||||
collectorSvcAddr: collector.linkerd-jaeger:55678
|
|
||||||
collectorSvcAccount: collector
|
|
||||||
|
|
||||||
jaeger:
|
jaeger:
|
||||||
image:
|
image:
|
||||||
name: jaegertracing/all-in-one
|
name: jaegertracing/all-in-one
|
||||||
|
@ -30,6 +27,12 @@ webhook:
|
||||||
# -- if empty, Helm will auto-generate this field, unless externalSecret is set to true.
|
# -- if empty, Helm will auto-generate this field, unless externalSecret is set to true.
|
||||||
caBundle: |
|
caBundle: |
|
||||||
|
|
||||||
|
# -- collector service address for the proxies to send trace data.
|
||||||
|
# Points by default to the the linkerd-jaeger collector
|
||||||
|
collectorSvcAddr: collector.linkerd-jaeger:55678
|
||||||
|
# -- service account associated with the collector instance
|
||||||
|
collectorSvcAccount: collector
|
||||||
|
|
||||||
failurePolicy: Ignore
|
failurePolicy: Ignore
|
||||||
image:
|
image:
|
||||||
name: ghcr.io/linkerd/jaeger-webhook
|
name: ghcr.io/linkerd/jaeger-webhook
|
||||||
|
|
|
@ -18,8 +18,6 @@ type Values struct {
|
||||||
Namespace string `json:"namespace"`
|
Namespace string `json:"namespace"`
|
||||||
CliVersion string `json:"cliVersion"`
|
CliVersion string `json:"cliVersion"`
|
||||||
Collector collector `json:"collector"`
|
Collector collector `json:"collector"`
|
||||||
CollectorSvcAddr string `json:"collectorSvcAddr"`
|
|
||||||
CollectorSvcAccount string `json:"collectorSvcAccount"`
|
|
||||||
Jaeger jaeger `json:"jaeger"`
|
Jaeger jaeger `json:"jaeger"`
|
||||||
LinkerdVersion string `json:"linkerdVersion"`
|
LinkerdVersion string `json:"linkerdVersion"`
|
||||||
Webhook webhook `json:"webhook"`
|
Webhook webhook `json:"webhook"`
|
||||||
|
@ -40,6 +38,8 @@ type webhook struct {
|
||||||
CrtPEM string `json:"crtPEM"`
|
CrtPEM string `json:"crtPEM"`
|
||||||
KeyPEM string `json:"keyPEM"`
|
KeyPEM string `json:"keyPEM"`
|
||||||
CaBundle string `json:"caBundle"`
|
CaBundle string `json:"caBundle"`
|
||||||
|
CollectorSvcAddr string `json:"collectorSvcAddr"`
|
||||||
|
CollectorSvcAccount string `json:"collectorSvcAccount"`
|
||||||
FailurePolicy string `json:"failurePolicy"`
|
FailurePolicy string `json:"failurePolicy"`
|
||||||
Image l5dcharts.Image `json:"image"`
|
Image l5dcharts.Image `json:"image"`
|
||||||
LogLevel string `json:"logLevel"`
|
LogLevel string `json:"logLevel"`
|
||||||
|
|
Loading…
Reference in New Issue