Browse Source

command: remove conditional envoy bootstrap generation for versions <=1.10.0 since those are not supported (#8855)

pull/8861/head
R.B. Boyer 4 years ago committed by GitHub
parent
commit
9fbcb2e68d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .changelog/8855.txt
  2. 2
      command/connect/envoy/bootstrap_tpl.go

3
.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
```

2
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 }}
}
}
`

Loading…
Cancel
Save