From 673966bae445905d05a4eab367a89f7edf4a308a Mon Sep 17 00:00:00 2001 From: Piaras Hoban Date: Mon, 11 Apr 2022 10:44:30 +0100 Subject: [PATCH] cue: remove linkerd ServiceProfile resource Signed-off-by: Piaras Hoban --- cue/podinfo/linkerd.cue | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 cue/podinfo/linkerd.cue 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: "/" - }, -]