Skip to content

Commit

Permalink
add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyDumaine committed Dec 9, 2024
1 parent 159b1d0 commit ef91604
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions docs/src/topics/firewalling.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,12 @@ spec:
ports: "1-65535"
protocol: "TCP"
addressSetRefs: # Can be used together with .addresses if desired.
- name: example-addrset
- name: vpc-addrset
kind: AddressSet
inboundRuleRefs: # Can be used together with .inboundRules if desired
- name: example-fwrule
- name: example-fwrule-udp
kind: FirewallRule
- name: example-fwrule-icmp
kind: FirewallRule
# outboundRules: []
# outboundRuleRefs: []
Expand All @@ -132,7 +134,7 @@ spec:
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
kind: FirewallRule
metadata:
name: example-fwrule
name: example-fwrule-udp
spec:
action: ACCEPT
label: intra-cluster-udp
Expand All @@ -141,6 +143,18 @@ spec:
addresses:
ipv4:
- "10.0.0.0/8"
---
apiVersion: infrastructure.cluster.x-k8s.io/v1alpha2
kind: FirewallRule
metadata:
name: example-fwrule-icmp
spec:
action: ACCEPT
label: intra-cluster-icmp
protocol: "ICMP"
addressSetRefs: # Can be used together with .addresses if desired.
- name: vpc-addrset
kind: AddressSet
```

### Cloud Firewall Machine Integration
Expand Down

0 comments on commit ef91604

Please sign in to comment.