Home

cuesonnet @main - refs - log -
-
https://git.jolheiser.com/cuesonnet.git
CUE + Jsonnet
cuesonnet / testdata / jsonnet / inheritance / data.jsonnet
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
local base = {
  kind: 'Deployment',
  version: 'v1',
  replicas: 1,
};

local production = base + {
  name: 'my-app',
  replicas: 3,
  image: 'myapp:latest',
};

production