mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-14 06:15:45 +00:00
Fix representation of v1beta3 pod in secrets doc
This commit is contained in:
parent
9fd8cbae64
commit
dd51882b4f
@ -32,7 +32,7 @@ The values are arbitrary data, encoded using base64.
|
|||||||
This is an example of a pod that uses a secret, in json format:
|
This is an example of a pod that uses a secret, in json format:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"apiVersion":"v1beta3",
|
"apiVersion": "v1beta3",
|
||||||
"name": "mypod",
|
"name": "mypod",
|
||||||
"kind": "Pod",
|
"kind": "Pod",
|
||||||
"spec": {
|
"spec": {
|
||||||
@ -48,10 +48,8 @@ This is an example of a pod that uses a secret, in json format:
|
|||||||
}],
|
}],
|
||||||
"volumes": [{
|
"volumes": [{
|
||||||
"name": "foo",
|
"name": "foo",
|
||||||
"source": {
|
"secret": {
|
||||||
"secret": {
|
"secretName": "mysecret"
|
||||||
"secretName": "mysecret"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user