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/basic-auth.yaml
Views: 1904
1
apiVersion: v1
2
kind: Secret
3
metadata:
4
name: {{ include "secrets.fullname" . }}-basic-auth
5
type: kubernetes.io/basic-auth
6
stringData:
7
username: root
8
password: password123
9
10