Merge pull request #39 from sirius0xdev/feat/add-paaas-landing-deployment

feat: add PAaaS landing page deployment
This commit is contained in:
sirius0xdev 2026-04-20 02:13:51 -04:00 committed by GitHub
commit 32731edfc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 47 additions and 0 deletions

View file

@ -13,3 +13,4 @@ resources:
- customer1-db-credentials.yaml
- apigateway.yaml
- backup-cronjob.yaml
- paaas-landing/kustomization.yaml

View file

@ -0,0 +1,42 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: paaas-landing
namespace: customer1
spec:
replicas: 1
selector:
matchLabels:
app: paaas-landing
template:
metadata:
labels:
app: paaas-landing
spec:
containers:
- name: web
image: ghcr.io/sirius0xdev/openclaw-projects-landing-page:main
imagePullPolicy: Always
ports:
- containerPort: 80
resources:
requests:
cpu: 10m
memory: 32Mi
limits:
cpu: 50m
memory: 64Mi
---
apiVersion: v1
kind: Service
metadata:
name: paaas-landing-svc
namespace: customer1
spec:
selector:
app: paaas-landing
ports:
- protocol: TCP
port: 80
targetPort: 80
type: ClusterIP

View file

@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deployment.yaml