File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,45 @@ kubectl apply -f https://raw.githubusercontent.com/gimlet-io/capacitor/main/depl
103
103
kubectl port-forward svc/capacitor -n flux-system 9000:9000
104
104
```
105
105
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
+
106
145
### Helm
107
146
108
147
```
You can’t perform that action at this time.
0 commit comments