CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/kubernetes/secrets/templates/basic-auth.yaml
Views: 11784
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