Skip to content

Commit

Permalink
Sample manifest used for local testing. Thanks @gianlucam76 for the
Browse files Browse the repository at this point in the history
sample.
  • Loading branch information
Gaurav Khatri committed Jun 21, 2024
1 parent d9843a1 commit e87799f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions manifests/dashboard.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: dashboard
namespace: projectsveltos
spec:
replicas: 1
selector:
matchLabels:
app: dashboard
template:
metadata:
labels:
app: dashboard
spec:
containers:
- name: dashboard
image: projectsveltos/dashboard:dev
ports:
- containerPort: 5173
---
apiVersion: v1
kind: Service
metadata:
name: dashboard
namespace: projectsveltos
spec:
selector:
app: dashboard
ports:
- protocol: TCP
port: 80
targetPort: 5173
type: ClusterIP

0 comments on commit e87799f

Please sign in to comment.