kiali update to 1.89.7-bb.1
Package Merge Request
Package Changes
https://repo1.dso.mil/big-bang/product/packages/kiali/-/blob/1.89.7-bb.1/CHANGELOG.md
Package MR
big-bang/product/packages/kiali!267 (merged)
For Issue
Closes (big-bang/product/packages/kiali#187 (closed))
Upgrade Notices
This update changes the labels Kiali looks for by default. Instead of it looking for app
and version
, it will now look for the app.kubernetes.io/name
and app.kubernetes.io/version
labels respectively. This change was made to adhere more closely with Kubernetes label recommendations and to clear the majority of the "Missing App"/"Missing Version" errors displayed with a vanilla deployment of Kiali.
Big Bang will be removing the auto-labeling of app
and version
on helm charts in future releases. This functionality is currently found in chart/templates/_helpers.tpl
The kiali defaults can be restored -- if needed -- by specifying the following in your values.yaml file:
kiali:
values:
cr:
spec:
istio_labels:
app_label_name: "app"
version_label_name: "version"
Merge request reports
Activity
added botmr kiali statusdoing labels
assigned to @jimmy.bourque
requested review from @chris.oconnell, @michaelmartin, and @andrewshoell
added statusreview label and removed statusdoing label
mentioned in issue #2376 (closed)
- Resolved by Michael Martin
@jimmy.bourque can we tailor the
Upgrade Notices
for any action/alerts users will need to take ?
- Resolved by Michael Martin
Do we need to update/remove these helper methods in
_helpers.tpl
with this change, or will that come in with future work? This would hit a fair amount of packages, so checking if we need/have an epic defined to clean that up.{{/* App Label for Kiali trace correlation To be used for Kiali-required labels on pods This will: * enable proper linking of Jaeger traces in Kiali * enable full Kiali label tracking of pods */}} {{- define "kialiAppLabel" -}} app: {{ "{{ .Chart.Name }}" | quote }} {{- end -}} {{/* Version label for Kiali trace correlation To be used for Kiali-required labels on pods This will: * enable proper linking of Jaeger traces in Kiali * enable full Kiali label tracking of pods */}} {{- define "kialiVersionLabel" -}} version: {{ "{{ .Chart.AppVersion }}" | quote }} {{- end -}}
changed milestone to %2.38.0