blob: 9fb34d86c0ed597c7cf2e979f4c81d931f931224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 2025 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
# Allow all outbound internet access for the steps that might need to pull repos.
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: series-tracker-git-access
spec:
podSelector:
matchLabels:
app: series-tracker
policyTypes:
- Egress
egress:
- {}
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: kernel-fetcher-git-access
spec:
podSelector:
matchLabels:
app: kernel-repo-update
policyTypes:
- Egress
egress:
- {}
|