Skip to content

Commit

Permalink
vendor/backend: update Cilium to v1.14.2
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Hahling <[email protected]>
  • Loading branch information
rolinh authored and kimstacy committed Oct 10, 2023
1 parent 28bd6c8 commit 602c32b
Show file tree
Hide file tree
Showing 13 changed files with 216 additions and 183 deletions.
3 changes: 1 addition & 2 deletions backend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/cilium/hubble-ui/backend
go 1.20

require (
github.com/cilium/cilium v1.14.0-snapshot.6
github.com/cilium/cilium v1.14.2
github.com/cilium/hubble v0.12.0
github.com/google/gops v0.3.28
github.com/improbable-eng/grpc-web v0.15.0
Expand Down Expand Up @@ -68,7 +68,6 @@ require (
// Replace directives from github.com/cilium/cilium. Keep in sync when updating Cilium!
replace (
github.com/miekg/dns => github.com/cilium/dns v1.1.51-0.20220729113855-5b94b11b46fc
github.com/optiopay/kafka => github.com/cilium/kafka v0.0.0-20180809090225-01ce283b732b
go.universe.tf/metallb => github.com/cilium/metallb v0.1.1-0.20220829170633-5d7dfb1129f7
sigs.k8s.io/controller-tools => github.com/cilium/controller-tools v0.6.2
)
4 changes: 2 additions & 2 deletions backend/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ github.com/cenkalti/backoff/v4 v4.1.1/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInq
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/cilium/checkmate v1.0.3 h1:CQC5eOmlAZeEjPrVZY3ZwEBH64lHlx9mXYdUehEwI5w=
github.com/cilium/cilium v1.14.0-snapshot.6 h1:i9u7mWFiTsi8P4zN3m93q31KyHjZCyog/MxYIvOfXQw=
github.com/cilium/cilium v1.14.0-snapshot.6/go.mod h1:wGU07LiyM1zQcuogqnF2TUaoIdyLz4D0ImmK0GoXHVY=
github.com/cilium/cilium v1.14.2 h1:NVz14uSoKB0Y37iFveMQGYH03ZflEuZegmQWpTMf5TM=
github.com/cilium/cilium v1.14.2/go.mod h1:ghd9LkTSbRPtJal0Bsdq1ise+j5Ezy14xgaM2o3XLCI=
github.com/cilium/dns v1.1.51-0.20220729113855-5b94b11b46fc/go.mod h1:e3IlAVfNqAllflbibAZEWOXOQ+Ynzk/dDozDxY7XnME=
github.com/cilium/hubble v0.12.0 h1:0Sc68tCa3jY1x4VqEWp63+r34/e5jmh4p3CWrf5afU8=
github.com/cilium/hubble v0.12.0/go.mod h1:2mXoJZSczBewSVItWblNmCQaAjSr+NVnWTonwuVcrIk=
Expand Down
2 changes: 2 additions & 0 deletions backend/proto/flow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,8 @@ here.
| INVALID_CLUSTER_ID | 192 | |
| UNSUPPORTED_PROTOCOL_FOR_DSR_ENCAP | 193 | |
| NO_EGRESS_GATEWAY | 194 | |
| TTL_EXCEEDED | 196 | |
| NO_NODE_ID | 197 | |



Expand Down
2 changes: 2 additions & 0 deletions backend/proto/flow/flow.proto
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,8 @@ enum DropReason {
INVALID_CLUSTER_ID = 192;
UNSUPPORTED_PROTOCOL_FOR_DSR_ENCAP = 193;
NO_EGRESS_GATEWAY = 194;
TTL_EXCEEDED = 196;
NO_NODE_ID = 197;
}

enum TrafficDirection {
Expand Down
2 changes: 2 additions & 0 deletions backend/proto/flow/flow_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1587,6 +1587,8 @@ export enum DropReason {
INVALID_CLUSTER_ID = 192,
UNSUPPORTED_PROTOCOL_FOR_DSR_ENCAP = 193,
NO_EGRESS_GATEWAY = 194,
TTL_EXCEEDED = 196,
NO_NODE_ID = 197,
}
export enum TrafficDirection {
TRAFFIC_DIRECTION_UNKNOWN = 0,
Expand Down
4 changes: 3 additions & 1 deletion backend/proto/flow/flow_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -12151,7 +12151,9 @@ proto.flow.DropReason = {
SNAT_NO_MAP_FOUND: 191,
INVALID_CLUSTER_ID: 192,
UNSUPPORTED_PROTOCOL_FOR_DSR_ENCAP: 193,
NO_EGRESS_GATEWAY: 194
NO_EGRESS_GATEWAY: 194,
TTL_EXCEEDED: 196,
NO_NODE_ID: 197
};

/**
Expand Down
19 changes: 17 additions & 2 deletions backend/vendor/github.com/cilium/cilium/AUTHORS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions backend/vendor/github.com/cilium/cilium/api/v1/flow/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 602c32b

Please sign in to comment.