diff --git a/.changelog/8855.txt b/.changelog/8855.txt new file mode 100644 index 000000000..5820f8049 --- /dev/null +++ b/.changelog/8855.txt @@ -0,0 +1,3 @@ +```release-note:improvement +command: remove conditional envoy bootstrap generation for versions <=1.10.0 since those are not supported +``` diff --git a/command/connect/envoy/bootstrap_tpl.go b/command/connect/envoy/bootstrap_tpl.go index bbd87a23c..cc093b96e 100644 --- a/command/connect/envoy/bootstrap_tpl.go +++ b/command/connect/envoy/bootstrap_tpl.go @@ -200,7 +200,6 @@ const bootstrapTemplate = `{ } } } - {{- if ne .EnvoyVersion "1.10.0"}} }, "layered_runtime":{ "layers": [ @@ -213,7 +212,6 @@ const bootstrapTemplate = `{ } } ] - {{- end }} } } `