Skip to content

Instantly share code, notes, and snippets.

@mkmik
Created August 2, 2019 15:04
Show Gist options
  • Save mkmik/425aa54bfc83fa6486c97d65938187ef to your computer and use it in GitHub Desktop.
Save mkmik/425aa54bfc83fa6486c97d65938187ef to your computer and use it in GitHub Desktop.
{
kube:: import 'https://github.com/bitnami-labs/kube-libsonnet/raw/52ba963ca44f7a4960aeae9ee0fbee44726e481f/kube.libsonnet',
local kube = self.kube,
foo: kube.Deployment('foo') {
spec+: {
template+: {
spec+: {
containers_+: {
controller: kube.Container('foo') {
image: 'foo',
},
},
},
},
},
},
bar: $.foo,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment