apiVersion: apps/v1 kind: Deployment metadata: name: springboot-app spec: replicas: 2 #副本数 selector: matchLabels: app: springboot-app template: metadata: labels: app: springboot-app spec: containers: - name: springboot-app image: swr.cn-south-1.myhuaweicloud.com/zzzili/zzapi:latest ports: - containerPort: 8080 imagePullSecrets: - name: zzsercret #私有镜像库凭据 --- apiVersion: v1 kind: Service metadata: name: springboot-app spec: type: NodePort selector: app: springboot-app ports: - port: 8080 nodePort: 30090 #公网访问端口