Skip to content
Snippets Groups Projects
Verified Commit c5f80c48 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

feat(uptime-kuma): Add SMTP support

parent 357aad72
Branches
No related tags found
No related merge requests found
...@@ -8,3 +8,6 @@ resources: ...@@ -8,3 +8,6 @@ resources:
- slo.yaml - slo.yaml
- oauth2.yaml - oauth2.yaml
- ../../../shared/resourcequotas/default.yaml - ../../../shared/resourcequotas/default.yaml
- ../../../shared/networkpolicies/allow-to-mailbox-org.yaml
patchesStrategicMerge:
- networkpolicy.yaml
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-to-mailbox-org
spec:
podSelector:
matchLabels:
app.kubernetes.io/name: uptime-kuma
\ No newline at end of file
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-to-mailbox-org
spec:
egress:
- to:
- ipBlock:
cidr: 185.97.174.196/32
ports:
- protocol: TCP
port: 80
- protocol: TCP
port: 443
policyTypes:
- Egress
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment