Skip to content

Commit 25c33cf

Browse files
committed
Add k8s yaml for deploying adash in-cluster
1 parent cf2e7b8 commit 25c33cf

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

adash-incluster.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
kind: Deployment
3+
apiVersion: apps/v1
4+
metadata:
5+
name: altinity-dashboard
6+
labels:
7+
app: altinity-dashboard
8+
spec:
9+
replicas: 1
10+
selector:
11+
matchLabels:
12+
app: altinity-dashboard
13+
template:
14+
metadata:
15+
labels:
16+
app: altinity-dashboard
17+
spec:
18+
containers:
19+
- name: altinity-dashboard
20+
image: ghcr.io/altinity/altinity-dashboard:main
21+
imagePullPolicy: Always
22+
args: ["adash", "--notoken", "--debug", "--bindhost", "0.0.0.0"]
23+
ports:
24+
- containerPort: 8080
25+
---
26+
kind: Service
27+
apiVersion: v1
28+
metadata:
29+
name: altinity-dashboard
30+
labels:
31+
app: altinity-dashboard
32+
spec:
33+
type: NodePort
34+
ports:
35+
- port: 8080
36+
name: altinity-dashboard
37+
protocol: TCP
38+
selector:
39+
app: altinity-dashboard

0 commit comments

Comments
 (0)