mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-26 01:15:00 +00:00
Allow HTTP01 challenge for ingresses
Signed-off-by: Gaëtan Ars <gaetanars@users.noreply.github.com>
This commit is contained in:
parent
4581c99a81
commit
524320c9b2
1 changed files with 16 additions and 0 deletions
16
manifests/policies/allow-acme.yaml
Normal file
16
manifests/policies/allow-acme.yaml
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: NetworkPolicy
|
||||||
|
metadata:
|
||||||
|
name: allow-acme
|
||||||
|
spec:
|
||||||
|
ingress:
|
||||||
|
- from:
|
||||||
|
- namespaceSelector: {}
|
||||||
|
ports:
|
||||||
|
- protocol: TCP
|
||||||
|
port: 8089
|
||||||
|
podSelector:
|
||||||
|
matchLabels:
|
||||||
|
acme.cert-manager.io/http01-solver: 'true'
|
||||||
|
policyTypes:
|
||||||
|
- Ingress
|
||||||
Loading…
Reference in a new issue