Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/kubernetes/secrets/templates/opaque.yaml
24768 views
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