Prathamesh Musale
2e0fbd82f1
Part of [Service Provider setup](https://www.notion.so/Service-provider-setup-a09e2207e1f34f3a847f7ce9713b7ac5) and [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75) - Configure laconicd chain id - Configure whether deployer should handle auctions and amount to bid - Update playbook to issue wildcard cert on deploying k8s Co-authored-by: Adw8 <adwaitgharpure@gmail.com> Co-authored-by: Shreerang Kale <shreerangkale@gmail.com> Reviewed-on: #12 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
16 lines
362 B
Django/Jinja
16 lines
362 B
Django/Jinja
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: pwa.{{ full_domain }}
|
|
namespace: default
|
|
spec:
|
|
secretName: pwa.{{ full_domain }}
|
|
issuerRef:
|
|
name: letsencrypt-prod-wild
|
|
kind: ClusterIssuer
|
|
group: cert-manager.io
|
|
commonName: "*.pwa.{{ full_domain }}"
|
|
dnsNames:
|
|
- "pwa.{{ full_domain }}"
|
|
- "*.pwa.{{ full_domain }}"
|