github.com/grafana/tanka@v0.26.1-0.20240506093700-c22cfc35c21a/pkg/tanka/testdata/test-export-envs-broken/static-env/main.jsonnet (about)

     1  {
     2    deployment: {
     3      apiVersion: 'apps/v1',
     4      kind: 'Deployment',
     5      metadata: {
     6        name: 'foo',
     7      },
     8    },
     9    service: {
    10      apiVersion: 'v1',
    11      kind: 'Service',
    12      metadata: {
    13        // Error, this should be a string
    14        name: true,
    15      },
    16    },
    17  }