-
Notifications
You must be signed in to change notification settings - Fork 34
Envoy: add envoy-admin volume, update to 1.19.1 #430
Conversation
Adds the envoy-admin emptyDir volume to the Envoy daemon set and updates the Envoy version to 1.19.1 to match projectcontour/contour. Closes projectcontour#423. Signed-off-by: Steve Kriss <krisss@vmware.com>
Codecov Report
@@ Coverage Diff @@
## main #430 +/- ##
==========================================
- Coverage 80.06% 77.67% -2.39%
==========================================
Files 29 29
Lines 2222 2235 +13
==========================================
- Hits 1779 1736 -43
- Misses 329 366 +37
- Partials 114 133 +19
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only other thing i could think of would be to add some detailed checks of the daemonset to the controller tests, but might be overkill, LGTM
VolumeMounts: []corev1.VolumeMount{ | ||
{ | ||
Name: envoyAdminVolName, | ||
MountPath: filepath.Join("/", envoyAdminVolMntDir), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought envoyAdminVolMntDir = "/admin"
instead of using filepath.Join
is fine but using filepath.Join
will be consistent with other VolumeMounts setting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I just left it that way for consistency with other volume mounts. They could all drop the filepath.Join
though.
Adds the envoy-admin emptyDir volume to the Envoy daemon set and updates the Envoy version to 1.19.1 to match projectcontour/contour. Closes projectcontour#423. Signed-off-by: Steve Kriss <krisss@vmware.com>
Cherry-pick of projectcontour#430: Adds the envoy-admin emptyDir volume to the Envoy daemon set and updates the Envoy version to 1.19.1 to match projectcontour/contour. Signed-off-by: Steve Kriss <krisss@vmware.com>
Adds the envoy-admin emptyDir volume to the Envoy
daemon set and updates the Envoy version to 1.19.1
to match projectcontour/contour.
Closes #423.
Signed-off-by: Steve Kriss krisss@vmware.com