--- apiVersion: apps/v1 kind: Deployment metadata: name: cmii-uav-platform-renyike namespace: uavcloud-devoperation labels: cmii.type: frontend cmii.app: cmii-uav-platform-renyike octopus.control: frontend-app-wdd app.kubernetes.io/app-version: 5.7.0 spec: replicas: 1 strategy: rollingUpdate: maxUnavailable: 1 selector: matchLabels: cmii.type: frontend cmii.app: cmii-uav-platform-renyike template: metadata: labels: cmii.type: frontend cmii.app: cmii-uav-platform-renyike spec: imagePullSecrets: - name: harborsecret containers: - name: cmii-uav-platform-renyike image: harbor.cdcyy.com.cn/cmii/cmii-uav-platform-renyike:6.0.0-20241202 imagePullPolicy: Always env: - name: K8S_NAMESPACE value: uavcloud-devoperation - name: APPLICATION_NAME value: cmii-uav-platform-renyike ports: - name: platform-9528 containerPort: 9528 protocol: TCP resources: limits: cpu: "1" memory: 1Gi requests: cpu: 50m memory: 50Mi volumeMounts: - name: nginx-conf mountPath: /etc/nginx/conf.d/nginx.conf subPath: nginx.conf - name: tenant-prefix subPath: ingress-config.js mountPath: /home/cmii-platform/dist/ingress-config.js volumes: - name: nginx-conf configMap: name: nginx-cm items: - key: nginx.conf path: nginx.conf - name: tenant-prefix configMap: name: tenant-prefix-splice items: - key: ingress-config.js path: ingress-config.js --- apiVersion: v1 kind: Service metadata: name: cmii-uav-platform-renyike namespace: uavcloud-devoperation labels: cmii.type: frontend cmii.app: cmii-uav-platform-renyike octopus.control: frontend-app-wdd app.kubernetes.io/version: 5.7.0 spec: type: NodePort selector: cmii.type: frontend cmii.app: cmii-uav-platform-renyike ports: - name: web-svc-port port: 9528 protocol: TCP targetPort: 9528 nodePort: 33333 ---