mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-18 02:51:15 +02:00
fix: correctly define example for extraMounts
The type was changed, but the example wasn't updated accordingly. Signed-off-by: Artem Chernyshev <artem.chernyshev@talos-systems.com>
This commit is contained in:
parent
01cca099f4
commit
bd5b9c96e2
@ -6,7 +6,7 @@ github_repo = "talos-systems/talos"
|
|||||||
match_deps = "^github.com/(talos-systems/[a-zA-Z0-9-]+)$"
|
match_deps = "^github.com/(talos-systems/[a-zA-Z0-9-]+)$"
|
||||||
|
|
||||||
# previous release
|
# previous release
|
||||||
previous = "v0.11.0"
|
previous = "v0.12.0"
|
||||||
|
|
||||||
pre_release = true
|
pre_release = true
|
||||||
|
|
||||||
|
@ -356,14 +356,16 @@ var (
|
|||||||
mustParseURL("https://cluster1.internal:6443"),
|
mustParseURL("https://cluster1.internal:6443"),
|
||||||
}
|
}
|
||||||
|
|
||||||
kubeletExtraMountsExample = []specs.Mount{
|
kubeletExtraMountsExample = []ExtraMount{
|
||||||
{
|
{
|
||||||
Source: "/var/lib/example",
|
specs.Mount{
|
||||||
Destination: "/var/lib/example",
|
Source: "/var/lib/example",
|
||||||
Type: "bind",
|
Destination: "/var/lib/example",
|
||||||
Options: []string{
|
Type: "bind",
|
||||||
"rshared",
|
Options: []string{
|
||||||
"rw",
|
"rshared",
|
||||||
|
"rw",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user