fix: correct deployment kind in load.yaml

- Change kind from DaemonSet to Deployment
- Uncomment replicas setting to ensure proper scaling

This change corrects the resource type for the application
in the Kubernetes configuration, ensuring it is deployed as a
Deployment instead of a DaemonSet. This allows for better
management of replicas and scaling capabilities.
This commit is contained in:
songtianlun 2025-04-23 20:53:04 +08:00
parent 00fc0c74ab
commit 50cf9d40e7

View File

@ -1,13 +1,13 @@
apiVersion: apps/v1
#kind: Deployment
kind: DaemonSet
kind: Deployment
#kind: DaemonSet
metadata:
name: app
namespace: taw
labels:
app: taw
spec:
#replicas: 1
replicas: 1
selector:
matchLabels:
app: taw