Skip to content

Commit

Permalink
V0.24 include v3 (#485)
Browse files Browse the repository at this point in the history
* add V3 Cluster (#481)

* add V3 Cluster

* add in changelog

* commit for changelog
  • Loading branch information
jackstine authored Jun 21, 2022
1 parent c9d3b16 commit 5d9f53d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelog/v0.24.5/envoy-ordering-fix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
changelog:
- type: FIX
issueLink: https://github.com/solo-io/gloo/issues/6337
resolvesIssue: false
description: |
Ordering left out V3Cluster.
2 changes: 1 addition & 1 deletion pkg/api/v1/control-plane/cache/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

// priority set for Envoy as listed here in Docs https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#resource-warming
var DefaultPrioritySet = map[int][]string{
0: {types.ClusterTypeV1, types.ListenerTypeV3, types.ClusterTypeV1, types.ClusterTypeV2, types.ListenerTypeV2, types.ListenerTypeV3},
0: {types.ClusterTypeV1, types.ClusterTypeV2, types.ClusterTypeV3, types.ListenerTypeV1, types.ListenerTypeV2, types.ListenerTypeV3},
}

// NodeHash computes string identifiers for Envoy nodes.
Expand Down

0 comments on commit 5d9f53d

Please sign in to comment.