CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/kubernetes/secrets/templates/tls.yaml
Views: 1904
1
apiVersion: v1
2
kind: Secret
3
type: kubernetes.io/tls
4
metadata:
5
name: {{ include "secrets.fullname" . }}-tls
6
data:
7
tls.crt:
8
{{ ($.Files.Get "files/tls/ca.crt") | b64enc | indent 2 }}
9
tls.key:
10
{{ ($.Files.Get "files/tls/ca.key") | b64enc | indent 2 }}
11
12