Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug Alert in Logs #6385

Closed
Daxcor69 opened this issue Apr 28, 2024 · 6 comments
Closed

Bug Alert in Logs #6385

Daxcor69 opened this issue Apr 28, 2024 · 6 comments
Labels
kind/bug Categorizes issue or PR as related to a bug. lifecycle/needs-triage Indicates that an issue needs to be triaged by a project contributor.

Comments

@Daxcor69
Copy link

[2024-04-28 13:34:08.862][1][error][envoy_bug] [source/common/runtime/runtime_impl.cc:501] envoy bug failure: false. Details: Using a removed guard envoy.reloadable_features.sanitize_te. In future version of Envoy this will be treated as invalid configuration
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:38] stacktrace for envoy bug
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #0 UNKNOWN [0x55d70b98c09b]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #1 UNKNOWN [0x55d70b990059]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #2 UNKNOWN [0x55d70b98de43]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #3 UNKNOWN [0x55d70b98f4ba]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #4 UNKNOWN [0x55d70b06046d]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #5 UNKNOWN [0x55d70b060b02]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #6 UNKNOWN [0x55d70b065e8a]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #7 UNKNOWN [0x55d70b067baa]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #8 UNKNOWN [0x55d70b069b91]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #9 UNKNOWN [0x55d70b595585]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #10 UNKNOWN [0x55d70b59c5dd]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #11 UNKNOWN [0x55d70b781b0d]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #12 UNKNOWN [0x55d70b806233]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #13 UNKNOWN [0x55d70b4d52f2]
[2024-04-28 13:34:08.862][1][error][envoy_bug] [./source/common/common/assert.h:45] #14 UNKNOWN [0x55d70b6fe280]
[2024-04-28 13:34:08.863][1][error][envoy_bug] [./source/common/common/assert.h:45] #15 UNKNOWN [0x55d70b70a2fb]

kubernetes 1.29.1
contour:
envoy:
os: ubuntu 22.04
kubeadm install
helm: 17.0.7

Do I need to be concerned with this error. Here is the over ride values to helm I used.

contour:
  nodeSelector:
envoy:
  kind: daemonset
  nodeSelector:
    node-role.kubernetes.io/proxy: ""
  logLevel: info
  service:
    type: LoadBalancer
    externalTrafficPolicy: Local
    loadBalancerIP: "x.x.x.x"
@Daxcor69 Daxcor69 added kind/bug Categorizes issue or PR as related to a bug. lifecycle/needs-triage Indicates that an issue needs to be triaged by a project contributor. labels Apr 28, 2024
@skriss
Copy link
Member

skriss commented Apr 29, 2024

Which versions of contour + envoy are you running? Contour 1.28.2 and 1.28.3 set this runtime setting (see https://github.com/projectcontour/contour/blob/main/changelogs/CHANGELOG-v1.28.2.md for info), but should be using Envoy 1.29.2 and 1.29.3, respectively, which both support the runtime flag. My guess is you have an unsupported Contour + Envoy version combo. See https://projectcontour.io/resources/compatibility-matrix/ for supported version combinations.

@Daxcor69
Copy link
Author

CHART NAME: contour
CHART VERSION: 17.0.7
APP VERSION: 1.28.3

This is from the helm chart. I will looks to see if there is a newer version of the helm chart

@Daxcor69
Copy link
Author

image

This is the version on docker hub published 6days ago. So I am not sure how to get your version

@tsaarni
Copy link
Member

tsaarni commented Apr 30, 2024

You can run:

helm install my-release oci://registry-1.docker.io/bitnamicharts/contour --set envoy.image.tag=1.29.3-debian-12-r1

to avoid the log about the bug.

Personally I do not know how the versions end up in the bitnami helm chart bitnami/charts#25117

@skriss
Copy link
Member

skriss commented Apr 30, 2024

Personally I do not know how the versions end up in the bitnami helm chart bitnami/charts#25117

Huh yeah looks like there have been unsupported version combos in there for quite awhile (we do try to maintain compatibility so probably not usually an issue), possibly worth filing an issue in that repo about it.

@tsaarni
Copy link
Member

tsaarni commented May 2, 2024

Fixed in chart version 17.0.8
bitnami/charts#25494

@tsaarni tsaarni closed this as completed May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Categorizes issue or PR as related to a bug. lifecycle/needs-triage Indicates that an issue needs to be triaged by a project contributor.
Projects
None yet
Development

No branches or pull requests

3 participants