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/opaque.yaml
Views: 11784
1
apiVersion: v1
2
kind: Secret
3
type: Opaque
4
metadata:
5
name: {{ include "secrets.fullname" . }}-empty
6
7
---
8
9
apiVersion: v1
10
kind: Secret
11
type: Opaque
12
metadata:
13
name: {{ include "secrets.fullname" . }}-user-password
14
stringData:
15
username: root
16
password: password123
17
18