Skip to content

Instantly share code, notes, and snippets.

View jsmcnair's full-sized avatar

jsmcnair

  • Stroud, United Kingdom
View GitHub Profile
@tombrk
tombrk / main.jsonnet
Created January 15, 2020 19:36
Creating ConfigMaps with Grafana Tanka
(import "ksonnet-util/kausal.libsonnet") + {
local configMap = $.core.v1.configMap,
local deploy = $.apps.v1.deployment,
local container = $.core.v1.container,
// the data for the configMap
myConfigData:: {
"foo.yml": std.manifestYamlDoc({
foo: "bar",
list: [1,2,3],