k8src 0.16.0

k8src is the kubernetes rc scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
rc_conf: "
foo_VAR1=variable1\n
"
rc_d: foo
template:
  var1: ${VAR1}
  var2: ${VAR2:?VAR2 is missing}
error: VAR2 is missing
---
rc_conf: "
foo_VAR1=variable1\n
"
rc_d: foo
template:
  ${VAR1}: VAR1
  ${VAR2:?VAR2 is missing}: VAR2
error: VAR2 is missing