We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67bf363 commit aa61ee7Copy full SHA for aa61ee7
doc/tutorial/kubernetes/manual/services/k8s.cue
@@ -114,7 +114,7 @@ _k8sSpec: X: kubernetes: {
114
for v in X.volume {
115
name: v.name
116
mountPath: v.mountPath
117
- if v.subPath != null | true {
+ if v.subPath != null {
118
subPath: v.subPath
119
}
120
if v.readOnly {
doc/tutorial/kubernetes/manual/services/ls_tool.cue
@@ -5,7 +5,7 @@ import "strings"
5
command: ls: {
6
task: print: {
7
kind: "print"
8
- Lines = [
+ let Lines = [
9
for x in objects {
10
"\(x.kind) \t\(x.metadata.labels.component) \t\(x.metadata.name)"
11
0 commit comments