1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
## YAML Template. --- #not work apiVersion: apps/v1 apiVersion: extensions/v1beta1 kind: Deployment metadata: name: oms-deploy-dev spec: replicas: 1 template: metadata: labels: app: oms-dev spec: imagePullSecrets: - name: tencent-sss-docker containers: - name: oms imagePullPolicy: Always image: ccr.ccs.tencentyun.com/sss/oms:latest env: - name: SPRING_PROFILES_ACTIVE value: dev ports: - containerPort: 80 livenessProbe: httpGet: path: /actuator/health port: 80 scheme: HTTP initialDelaySeconds: 60 timeoutSeconds: 2 successThreshold: 1 failureThreshold: 5 readinessProbe: httpGet: path: /actuator/health port: 80 scheme: HTTP initialDelaySeconds: 30 timeoutSeconds: 5 successThreshold: 1 failureThreshold: 5 --- kind: Service apiVersion: v1 metadata: name: oms-service-dev spec: selector: app: oms-dev ports: - protocol: TCP port: 80 targetPort: 80 type: NodePort --- #balancer + ingress ok apiVersion: extensions/v1beta1 kind: Ingress metadata: annotations: description: ddddd kubernetes.io/ingress.class: qcloud ##后台查到的 # qcloud_cert_id: JIUrBtas name: miniapp-dev-ingress namespace: default spec: rules: - host: miniapp-dev.test.com http: paths: - backend: serviceName: oms-service-dev servicePort: 80 path: / tls: - secretName: miniapp-dev-ingress status: loadBalancer: ingress: # - ip: |