Files
wwweww 19cc7a778c Refactor: Remove deprecated gRPC service files and implement new API structure
- Deleted old gRPC service definitions in `game_grpc.pb.go` and `public.go`.
- Added new API server implementations for objectstory, player, and shop services.
- Introduced configuration files for new APIs in `etc/*.yaml`.
- Created main entry points for each service in `objectstory.go`, `player.go`, and `shop.go`.
- Removed unused user update handler and user API files.
- Added utility functions for context management and HTTP header parsing.
- Introduced PostgreSQL backup configuration in `backup/postgreSql.yaml`.
2026-02-28 18:35:56 +08:00

121 lines
2.3 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: s3storge-api
namespace: juwan
labels:
app: s3storge-api
spec:
replicas: 3
revisionHistoryLimit: 5
selector:
matchLabels:
app: s3storge-api
template:
metadata:
labels:
app: s3storge-api
spec:
serviceAccountName: find-endpoints
containers:
- name: s3storge-api
image: s3storge-api:latest
ports:
- containerPort: 8888
- containerPort: 4001 # 暴露端口
readinessProbe:
tcpSocket:
port: 8888
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 8888
initialDelaySeconds: 15
periodSeconds: 20
resources:
requests:
cpu: 500m
memory: 512Mi
limits:
cpu: 1000m
memory: 1024Mi
volumeMounts:
- name: timezone
mountPath: /etc/localtime
volumes:
- name: timezone
hostPath:
path: /usr/share/zoneinfo/Asia/Shanghai
---
apiVersion: v1
kind: Service
metadata:
name: s3storge-api-svc
namespace: juwan
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: "4001"
prometheus.io/path: "/metrics"
spec:
ports:
- name: metrics
port: 4001
targetPort: 4001
- name: http
port: 8888
targetPort: 8888
selector:
app: s3storge-api
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: s3storge-api-hpa-c
namespace: juwan
labels:
app: s3storge-api-hpa-c
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: s3storge-api
minReplicas: 3
maxReplicas: 10
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 80
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: s3storge-api-hpa-m
namespace: juwan
labels:
app: s3storge-api-hpa-m
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: s3storge-api
minReplicas: 3
maxReplicas: 10
metrics:
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: 80