initial commit

This commit is contained in:
2024-10-13 14:02:02 +00:00
commit a3cabb6229
33 changed files with 18981 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: amane-frontend
namespace: amane-tanikaze
labels:
app: amane-frontend
spec:
replicas: 1
selector:
matchLabels:
app: amane-frontend
template:
metadata:
labels:
app: amane-frontend
spec:
containers:
- name: dcbot
image: 'gitea.konchin.com/services/amane-tanikaze-frontend:latest'
ports:
- name: http
containerPort: 3000
env:
- name: WDS_SOCKET_PORT
value: 0
imagePullSecrets:
- name: regcred

View File

@@ -0,0 +1,16 @@
---
apiVersion: v1
kind: Service
metadata:
namespace: amane-tanikaze
name: amane-frontend
labels:
app: amane-frontend
spec:
type: ClusterIP
selector:
app: amane-frontend
ports:
- name: http
port: 80
targetPort: 3000