We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ead9ee commit cc05121Copy full SHA for cc05121
charts/templates/fqdnnetpol.yaml
@@ -0,0 +1,25 @@
1
+apiVersion: networking.gke.io/v1alpha3
2
+kind: FQDNNetworkPolicy
3
+metadata:
4
+ name: "{{ .Release.Name }}-fqdn"
5
+ labels:
6
+ {{ include "v13s.labels" . | nindent 4 }}
7
+spec:
8
+ egress:
9
+ - ports:
10
+ - port: 80
11
+ protocol: TCP
12
+ to:
13
+ - fqdns:
14
+ - metadata.google.internal
15
16
+ - port: 443
17
18
19
20
+ - private.googleapis.com
21
+ podSelector:
22
+ matchLabels:
23
+ {{ include "v13s.selectorLabels" . | nindent 6 }}
24
+ policyTypes:
25
+ - Egress
0 commit comments