Skip to content

Commit

Permalink
force add vendor folder in testdata which is gitignored by default
Browse files Browse the repository at this point in the history
Signed-off-by: shuai-zh <shuaiz8023@gmail.com>
  • Loading branch information
shuai-zh committed Oct 31, 2022
1 parent 1e27146 commit 203d3e2
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
local new(params) = {
apiVersion: 'v1',
kind: 'Service',
metadata: {
name: params.name,
},
spec: {
ports: [
{
port: params.servicePort,
targetPort: params.containerPort,
},
],
selector: {
app: params.name,
},
type: params.type,
},
};

{
new:: new,
}

0 comments on commit 203d3e2

Please sign in to comment.