mirror of https://github.com/helm/helm
parent
5abcf74227
commit
6418ded8a4
@ -0,0 +1,6 @@
|
||||
NAME: with-values
|
||||
LAST DEPLOYED: Fri Sep 2 22:04:05 1977
|
||||
NAMESPACE: default
|
||||
STATUS: deployed
|
||||
REVISION: 1
|
||||
TEST SUITE: None
|
@ -0,0 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: Chart with values
|
||||
home: https://helm.sh/helm
|
||||
name: with-values
|
||||
sources:
|
||||
- https://github.com/helm/helm
|
||||
version: 0.1.0
|
@ -0,0 +1,71 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: secret-sample
|
||||
data:
|
||||
test: YmFyCg==
|
||||
password: bXktcGFzc3dvcmQ=
|
||||
complex.key: Y29tcGxleAo=
|
||||
fromFile.json: |
|
||||
ewogICJteS1jb25maWcta2V5IjogIm15IHZhbHVlIiwgCiAgImFnZSI6IDI0LAogICJhcnJheSI6IFsidmFsdWUiLCAidmFsdWUyIl0sCiAgIm9iamVjdCI6IHsKICAgICJrZXkiOiAidmFsdWUiCiAgfQp9Cg==
|
||||
stringData:
|
||||
string: super-secret
|
||||
string.complex: complex
|
||||
stringFile.json: |
|
||||
{
|
||||
"my-config-key": "my value",
|
||||
"age": 24,
|
||||
"array": ["value", "value2"],
|
||||
"object": {
|
||||
"key": "value"
|
||||
}
|
||||
}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: empty-secret
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: empty-data-secret
|
||||
data:
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: different-indent-secret
|
||||
data:
|
||||
password: cGFzc3dvcmQK
|
||||
stringData:
|
||||
stringPassword: password
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
# This is name
|
||||
name: secret-with-comments
|
||||
data:
|
||||
# Comment
|
||||
password: cGFzc3dvcmQK
|
||||
# Multi
|
||||
# Line
|
||||
# Comment
|
||||
anotherPassword: cGFzc3dvcmQK # Inline comment
|
||||
# End comment
|
||||
stringData: # Contains string data
|
||||
stringPassword: password
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
stringData:
|
||||
stringPassword: password
|
||||
data:
|
||||
password: cGFzc3dvcmQK
|
||||
metadata:
|
||||
name: different-order-secret
|
Loading…
Reference in new issue