Skip to content

Commit

Permalink
fix: add service definition
Browse files Browse the repository at this point in the history
  • Loading branch information
daniejoh committed Nov 27, 2024
1 parent 1faec8c commit 889b7d4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions deployment/kubernetes/service.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
apiVersion: 'v1',
kind: 'Service',
metadata: {
name: 'developer-portal',
},
spec: {
ports: [{
port: 80,
targetPort: 3000,
}],
selector: {
app: 'developer-portal',
},
},
}

0 comments on commit 889b7d4

Please sign in to comment.