github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/syz-cluster/overlays/common/network-policy-git-access.yaml (about)

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