diff --git a/cue/podinfo/linkerd.cue b/cue/podinfo/linkerd.cue deleted file mode 100644 index 7e01cec..0000000 --- a/cue/podinfo/linkerd.cue +++ /dev/null @@ -1,23 +0,0 @@ -package podinfo - -#ServiceProfile: { - _config: #Config - apiVersion: "v1alpha2" - kind: "ServiceProfile" - metadata: _config.meta - spec: { - routes: [ for r in routes { - condition: { - method: r.method - pathRegex: r.path - } - }] - } -} - -routes: [ - { - method: "GET" - path: "/" - }, -]