initial commit

main
Dex 2024-05-01 02:41:10 -04:00
commit 459662a486
3 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,23 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: kx3dex-radio-site
namespace: argocd
spec:
project: kx3dex-radio
source:
repoURL: https://gitea.simplysyncedllc.com/Dex/argocd-configs.git
targetRevision: HEAD
path: prod
destination:
server: https://kubernetes.default.svc
namespace: kx3dex-radio
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
selfHeal: true
prune: true

View File

@ -0,0 +1,19 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: kx3dex-radio-deployment
spec:
selector:
matchLabels:
app: KX3DEX_Radio
replicas: 2
template:
metadata:
labels:
app: KX3DEX_Radio
spec:
containers:
- name: kx3dex-radio-site
image: gitea.simplysyncedllc.com/dex/kx3dex_radio:latest
ports:
- containerPort: 3000

View File

@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: kx3dex-radio-service
spec:
selector:
app: myapp
ports:
- port: 3000
protocol: TCP
targetPort: 3000