Skip to content

Commit

Permalink
dns01 solver
Browse files Browse the repository at this point in the history
  • Loading branch information
tunacinsoy committed Sep 5, 2024
1 parent 33b3b63 commit 7a1e395
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
22 changes: 19 additions & 3 deletions manifests/blog-app/clusterIssuer.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# apiVersion: cert-manager.io/v1
# kind: ClusterIssuer
# metadata:
# name: letsencrypt-prod-cluster
# namespace: istio-system
# spec:
# acme:
# email: [email protected]
# server: https://acme-v02.api.letsencrypt.org/directory
# privateKeySecretRef:
# name: letsencrypt-prod-cluster
# solvers:
# - http01:
# ingress:
# class: istio


apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
Expand All @@ -10,6 +27,5 @@ spec:
privateKeySecretRef:
name: letsencrypt-prod-cluster
solvers:
- http01:
ingress:
class: istio
- dns01:
manual:
2 changes: 2 additions & 0 deletions manifests/blog-app/istio-gateway-virtualService.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ spec:
# hosts: ["myblog.com"]: Accepts traffic only for myblog.com
hosts:
- "*"
tls:
httpsRedirect: false # Handle redirect in the VirtualService
- port:
number: 443
name: https
Expand Down

0 comments on commit 7a1e395

Please sign in to comment.