added repo

This commit is contained in:
Your Name
2026-08-26 03:39:42 +05:30
parent 45c25a95af
commit b8575bb8b9
6889 changed files with 1217125 additions and 0 deletions
@@ -0,0 +1,30 @@
{{- /*
Envoy client leaf certificate.
Signed by Root CA directly.
Used for Envoy's mTLS client identity when connecting to Contour's xDS server.
*/}}
{{- if .Values.useCertManager }}
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: {{ printf "%s-envoy-cert" (include "common.names.fullname" .) }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: envoy
spec:
secretName: envoycert
commonName: "envoy"
duration: {{ .Values.certManager.leafCerts.duration }}
renewBefore: {{ .Values.certManager.leafCerts.renewBefore }}
usages:
- client auth
- digital signature
- key encipherment
privateKey:
algorithm: {{ .Values.certManager.leafCerts.algorithm }}
size: {{ .Values.certManager.leafCerts.size }}
issuerRef:
name: {{ printf "%s-root-ca-issuer" (include "common.names.fullname" .) }}
kind: Issuer
{{- end }}