50 lines
944 B
YAML
50 lines
944 B
YAML
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: bakery-dev-monitoring-tls-cert
|
|
namespace: monitoring
|
|
spec:
|
|
# Self-signed certificate for local development
|
|
secretName: bakery-ia-tls-cert
|
|
|
|
# Certificate duration
|
|
duration: 2160h # 90 days
|
|
renewBefore: 360h # 15 days
|
|
|
|
# Subject configuration
|
|
subject:
|
|
organizations:
|
|
- Bakery IA Development
|
|
|
|
# Common name
|
|
commonName: localhost
|
|
|
|
# DNS names this certificate is valid for
|
|
dnsNames:
|
|
- localhost
|
|
- monitoring.bakery-ia.local
|
|
|
|
# IP addresses (for localhost)
|
|
ipAddresses:
|
|
- 127.0.0.1
|
|
- ::1
|
|
|
|
# Use self-signed issuer for development
|
|
issuerRef:
|
|
name: selfsigned-issuer
|
|
kind: ClusterIssuer
|
|
group: cert-manager.io
|
|
|
|
# Private key configuration
|
|
privateKey:
|
|
algorithm: RSA
|
|
encoding: PKCS1
|
|
size: 2048
|
|
|
|
# Usages
|
|
usages:
|
|
- server auth
|
|
- client auth
|
|
- digital signature
|
|
- key encipherment
|