--- # Source: cmii-live-services/templates/cmii-live-helper-deployment.yaml apiVersion: v1 kind: Service metadata: namespace: cq-uas-260427 name: cmii-live-live-helper labels: app: live-helper chart: cmii-live-services-1.0.0 release: cmii-live spec: type: NodePort ports: - name: http port: 7080 targetPort: http nodePort: 31080 protocol: TCP selector: app: live-helper release: cmii-live --- # Source: cmii-live-services/templates/cmii-live-helper-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: namespace: cq-uas-260427 name: cmii-live-live-helper labels: app: live-helper chart: cmii-live-services-1.0.0 release: cmii-live spec: replicas: 1 selector: matchLabels: app: live-helper release: cmii-live template: metadata: labels: app: live-helper release: cmii-live spec: containers: - name: live-helper image: "chongqingshcis-a189ec98.ecis.chongqing-1.cmecloud.cn/cmii/cmii-hls-downloader:v2.7.4" imagePullPolicy: IfNotPresent ports: - name: http containerPort: 7080 protocol: TCP env: - name: ALLOW_DOWNLOAD value: "all" volumeMounts: - name: config mountPath: /cmii/live-helper/config.yaml subPath: config.yaml resources: limits: cpu: "1" memory: 1Gi requests: cpu: 500m memory: 512Mi volumes: - name: config configMap: name: cmii-live-live-helper-config imagePullSecrets: - name: harborsecret