Skip to content

Commit cfda58b

Browse files
committed
chore: bump gatway dep to v0.33.0
Signed-off-by: Fredi Raspall <fredi@githedgehog.com>
1 parent dc218fa commit cfda58b

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

k8s-intf/src/bolero/expose.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ impl ValueGenerator for LegalValueExposeGenerator<'_> {
5757
.map(|p| GatewayAgentPeeringsPeeringExposeIps {
5858
cidr: Some(p),
5959
not: None,
60+
ports: None,
6061
vpc_subnet: None,
6162
})
6263
.collect::<Vec<_>>();
@@ -65,6 +66,7 @@ impl ValueGenerator for LegalValueExposeGenerator<'_> {
6566
.map(|p| GatewayAgentPeeringsPeeringExposeIps {
6667
cidr: None,
6768
not: Some(p),
69+
ports: None,
6870
vpc_subnet: None,
6971
})
7072
.collect::<Vec<_>>();
@@ -73,12 +75,14 @@ impl ValueGenerator for LegalValueExposeGenerator<'_> {
7375
.map(|p| GatewayAgentPeeringsPeeringExposeAs {
7476
cidr: Some(p),
7577
not: None,
78+
ports: None,
7679
});
7780
let not_as = generate_prefixes(d, num_v4_not_as, num_v6_not_as)?
7881
.into_iter()
7982
.map(|p| GatewayAgentPeeringsPeeringExposeAs {
8083
cidr: None,
8184
not: Some(p),
85+
ports: None,
8286
});
8387

8488
let mut subnets = Vec::new();
@@ -90,6 +94,7 @@ impl ValueGenerator for LegalValueExposeGenerator<'_> {
9094
subnets.push(GatewayAgentPeeringsPeeringExposeIps {
9195
cidr: None,
9296
not: None,
97+
ports: None,
9398
vpc_subnet: Some(name.clone()),
9499
});
95100
}

k8s-intf/src/generated/gateway_agent_crd.rs

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/k8s-crd.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
K8S_GATEWAY_AGENT_REF=v0.32.1
1+
K8S_GATEWAY_AGENT_REF=v0.33.0
22
K8S_GATEWAY_AGENT_CRD_URL="https://raw.githubusercontent.com/githedgehog/gateway/${K8S_GATEWAY_AGENT_REF}/config/crd/bases/gwint.githedgehog.com_gatewayagents.yaml"

0 commit comments

Comments
 (0)