Skip to content

Commit 5e80874

Browse files
docs(deploy): add ingress and networkpolicy (#104)
Signed-off-by: Sebastian Gaiser <sebastiangaiser@users.noreply.github.com>
1 parent c9b4837 commit 5e80874

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,45 @@ kubectl apply -f https://raw.githubusercontent.com/gimlet-io/capacitor/main/depl
103103
kubectl port-forward svc/capacitor -n flux-system 9000:9000
104104
```
105105

106+
For adding an `Ingress`, a Kubernetes `NetworkPolicy` is required.
107+
An example would be:
108+
109+
```
110+
---
111+
apiVersion: networking.k8s.io/v1
112+
kind: NetworkPolicy
113+
metadata:
114+
name: capacitor-ingress
115+
namespace: flux-system
116+
spec:
117+
policyTypes:
118+
- Ingress
119+
ingress:
120+
- from:
121+
- namespaceSelector: {}
122+
podSelector:
123+
matchLabels:
124+
app.kubernetes.io/instance: capacitor
125+
---
126+
apiVersion: networking.k8s.io/v1
127+
kind: Ingress
128+
metadata:
129+
name: capacitor-ingress
130+
namespace: flux-system
131+
spec:
132+
rules:
133+
- host: gitops.example.com
134+
http:
135+
paths:
136+
- pathType: Prefix
137+
path: /
138+
backend:
139+
service:
140+
name: capacitor
141+
port:
142+
number: 9000
143+
```
144+
106145
### Helm
107146

108147
```

0 commit comments

Comments
 (0)