github.com/octohelm/cuemod@v0.9.4/pkg/cuemod/testdata/a/defs.cue (about)

     1  package a
     2  
     3  import (
     4  	"k8s.io/api/core/v1"
     5  
     6  	v0 "github.com/octohelm/cuemod-versioned-example/cuepkg"
     7  	v2 "github.com/octohelm/cuemod-versioned-example/v2/cuepkg"
     8  
     9  	root "github.com/octohelm/cuemod-versioned-example:example"
    10  )
    11  
    12  services: [Name=_]: v1.#Service & {
    13  	metadata: name: Name
    14  	metadata: labels: app:     Name
    15  	metadata: labels: version: "\(v0.#Version) \(v2.#Version) \(root.#Version)"
    16  }