# qms-server apiVersion: apps/v1 kind: Deployment metadata: namespace: ns-f16a3067ca7b434aad127d15eac82503 name: qms-server labels: app: qms-server annotations: version: "VERSION_PLACEHOLDER" description: DESC_PLACEHOLDER rollout.kubernetes.io/change-cause: "DESC_PLACEHOLDER:VERSION_PLACEHOLDER" spec: replicas: 1 selector: matchLabels: app: qms-server template: metadata: labels: app: qms-server spec: containers: - name: qms-server image: 172.16.46.66:10043/yudao/qms-server:VERSION_PLACEHOLDER env: - name: TZ value: Asia/Shanghai readinessProbe: httpGet: path: /actuator/health port: 48104 initialDelaySeconds: 10 periodSeconds: 5 failureThreshold: 3 livenessProbe: httpGet: path: /actuator/health port: 48104 initialDelaySeconds: 30 periodSeconds: 10 failureThreshold: 5 resources: requests: cpu: "1000m" memory: "1024Mi" limits: cpu: "1000m" memory: "2048Mi" terminationGracePeriodSeconds: 30 strategy: type: RollingUpdate rollingUpdate: maxSurge: 1 maxUnavailable: 0 --- apiVersion: v1 kind: Service metadata: namespace: ns-f16a3067ca7b434aad127d15eac82503 name: qms-server spec: type: NodePort selector: app: qms-server ports: - name: http-health protocol: TCP port: 48104 targetPort: 48104 nodePort: 30100 - name: tcp-9999 protocol: TCP port: 9999 targetPort: 9999 nodePort: 30194