Browse Source

deploy pro/offline-process-promotion:r191361 优化ios支付

pmrd 1 năm trước cách đây
mục cha
commit
d422cde057
4 tập tin đã thay đổi với 51 bổ sung62 xóa
  1. 7 9
      .drone.yml
  2. 1 1
      Dockerfile
  3. 41 48
      deploy-tmp.yaml
  4. 2 4
      drone.template.yml

+ 7 - 9
.drone.yml

@@ -15,15 +15,15 @@ steps:
    - git clone $DRONE_GIT_HTTP_URL .
 
 - name: deployment
-  image: hub.evbj.easou.com/dev/drone-agent:v3.0.1-230721
+  image: hub.evbj.easou.com/dev/drone-agent:v3.0.1-230506
   pull: always
   # privileged: true
   environment:
-    JNLP_ENV: qa
-    JNLP_REPLICAS: 1
+    JNLP_ENV: pro
+    JNLP_REPLICAS: 4
     JNLP_TAG: r191361
     JNLP_VERSION: v1  # default v1, v2 for canary
-    DEPLOY_ENV: k8s-4 # 可以选择把应用部署到集群:k8s-1 or k8s-2
+    DEPLOY_ENV: k8s-1 # 可以选择把应用部署到集群:k8s-1 or k8s-2
     JNLP_REPO: hub.evbj.easou.com
     JNLP_CONTAINER_PORT: 80
     JNLP_INGRESS: nginx
@@ -45,8 +45,6 @@ steps:
     - python3 /root/tools.py -b
     # 部署服务到kubernetes上
     - python3 /root/tools.py -a
-    # 检查服务部署状态
-    - python3 /root/tools.py -c
     # 添加dns解析记录,生成访问域名
     - python3 /root/tools.py -d
 
@@ -56,8 +54,8 @@ steps:
     corpid: ww419ee4063735e1c0
     corp_secret: zpiRBLETH9eLwIMQ4eJ_r_dcm3BPSGeLHvTcft8Ot-M
     agent_id: 1000004
-    title: "Pipeline qa/offline-process-promotion:r191361 Success"
-    description: "${DRONE_BUILD_LINK} qa/offline-process-promotion:r191361 部署完成 优化ios支付"
+    title: "Pipeline pro/offline-process-promotion:r191361 Success"
+    description: "${DRONE_BUILD_LINK} pro/offline-process-promotion:r191361 部署完成 优化ios支付"
     msg_url: ${DRONE_BUILD_LINK}
     btn_txt: "否"
   when:
@@ -70,7 +68,7 @@ steps:
     corpid: ww419ee4063735e1c0
     corp_secret: zpiRBLETH9eLwIMQ4eJ_r_dcm3BPSGeLHvTcft8Ot-M
     agent_id: 1000004
-    title: "Pipeline qa/offline-process-promotion:r191361 Failure"
+    title: "Pipeline pro/offline-process-promotion:r191361 Failure"
     description: "${DRONE_BUILD_LINK} 部署失败,请检查配置!优化ios支付"
     msg_url: ${DRONE_BUILD_LINK}
     btn_txt: "否"

+ 1 - 1
Dockerfile

@@ -1 +1 @@
-FROM hub.evbj.easou.com/qa/offline-process-promotion:r191361
+FROM hub.evbj.easou.com/pro/offline-process-promotion:r191361

+ 41 - 48
deploy-tmp.yaml

@@ -3,12 +3,12 @@ apiVersion: apps/v1
 kind: StatefulSet
 metadata:
   name: offline-process-promotion
-  namespace: qa
+  namespace: pro
   labels:
     app: offline-process-promotion
 spec:
   serviceName: offline-process-promotion
-  replicas: 1
+  replicas: 4
   selector:
     matchLabels:
       app: offline-process-promotion
@@ -17,20 +17,13 @@ spec:
       labels:
         app: offline-process-promotion
     spec:
-      terminationGracePeriodSeconds: 180
-      dnsPolicy: "None"
+      terminationGracePeriodSeconds: 30
+      dnsPolicy: None
       dnsConfig:
         nameservers:
           - 223.5.5.5
           - 10.108.30.101
           - 10.26.22.50
-        searches:
-          - pro.svc.cluster.local
-          - svc.cluster.local
-          - cluster.local
-        options:
-          - name: ndots
-            value: "5"
       initContainers:
         - name: init
           image: hub.evbj.easou.com/dev/busybox
@@ -41,21 +34,21 @@ spec:
               mountPath: /data
       #nodeSelector:
       #  app.touchrs: touchrs
-      affinity:
-        podAntiAffinity:
-          preferredDuringSchedulingIgnoredDuringExecution:
-          - weight: 100
-            podAffinityTerm:
-              labelSelector:
-                matchExpressions:
-                - key: app
-                  operator: In
-                  values:
-                  - offline-process-promotion
-              topologyKey: kubernetes.io/hostname
+#      affinity:
+#        podAntiAffinity:
+#          preferredDuringSchedulingIgnoredDuringExecution:
+#          - weight: 100
+#            podAffinityTerm:
+#              labelSelector:
+#                matchExpressions:
+#                - key: app
+#                  operator: In
+#                  values:
+#                  - offline-process-promotion
+#              topologyKey: kubernetes.io/hostname
       containers:
         - name: offline-process-promotion
-          image: hub.evbj.easou.com/qa/offline-process-promotion:r191361
+          image: hub.evbj.easou.com/pro/offline-process-promotion:r191361
           imagePullPolicy: IfNotPresent
           env:
             - name: MY_NODE_NAME
@@ -75,7 +68,7 @@ spec:
                 fieldRef:
                   fieldPath: metadata.namespace
             - name: JAVA_OPTS
-              value: "-server  -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8001,suspend=n  -Xmx2g -Xms2g -Xss512k -Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom -Dspring.profiles.active=test"
+              value: "-server  -Xmx2g -Xms2g -Xss512k -Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom -Dspring.profiles.active=product"
           ports:
             - containerPort: 8080
               name: port
@@ -107,22 +100,22 @@ spec:
               port: 8080
             initialDelaySeconds: 40
             periodSeconds: 15
-        - image: hub.evbj.easou.com/pro/filebeat:7.13.3
-          imagePullPolicy: IfNotPresent
-          name: filebeat
-          volumeMounts:
-            - name: volume #日志同时挂载在nginx和filebeat中
-              mountPath: /data
-            - name: filebeat-config
-              mountPath: /usr/share/filebeat/filebeat.yml
-              subPath: filebeat.yml
-      volumes:
-        - name: filebeat-config
-          configMap:
-            name: filebeat-config-offline-process-promotion
-            items:
-              - key: filebeat.yml
-                path: filebeat.yml
+#        - image: hub.evbj.easou.com/pro/filebeat:7.13.3
+#          imagePullPolicy: IfNotPresent
+#          name: filebeat
+#          volumeMounts:
+#            - name: volume #日志同时挂载在nginx和filebeat中
+#              mountPath: /data
+#            - name: filebeat-config
+#              mountPath: /usr/share/filebeat/filebeat.yml
+#              subPath: filebeat.yml
+#      volumes:
+#        - name: filebeat-config
+#          configMap:
+#            name: filebeat-config-offline-process-promotion
+#            items:
+#              - key: filebeat.yml
+#                path: filebeat.yml
 
   volumeClaimTemplates:
     - metadata:
@@ -138,7 +131,7 @@ apiVersion: v1
 kind: Service
 metadata:
   name: offline-process-promotion-svc
-  namespace: qa
+  namespace: pro
   labels:
     app: offline-process-promotion-svc
 spec:
@@ -154,26 +147,26 @@ apiVersion: networking.k8s.io/v1
 kind: Ingress
 metadata:
   name: offline-process-promotion-ingress
-  namespace: qa
+  namespace: pro
 spec:
-  ingressClassName: nginx
   rules:
-    - host: qa-offline-process-promotion.ieasou.cn
+    - host: pro-offline-process-promotion.ieasou.cn
       http:
         paths:
           - path: /
-            pathType: ImplementationSpecific
+            pathType: Prefix
             backend:
               service:
                 name: offline-process-promotion-svc
                 port:
                   number: 8080
+  ingressClassName: nginx
 ---
 apiVersion: v1
 kind: ConfigMap
 metadata:
   name: filebeat-config-offline-process-promotion
-  namespace: qa
+  namespace: pro
 data:
   filebeat.yml: |
     filebeat.inputs:
@@ -193,7 +186,7 @@ data:
     output.kafka:
       version: 2.0.0
       enable: true
-      hosts: ["kafka-0.kafka-headless.qa.svc.cluster.local:9093", "kafka-1.kafka-headless.qa.svc.cluster.local:9093", "kafka-2.kafka-headless.qa.svc.cluster.local:9093"]
+      hosts: ["kafka-0.kafka-headless.pro.svc.cluster.local:9093", "kafka-1.kafka-headless.pro.svc.cluster.local:9093", "kafka-2.kafka-headless.pro.svc.cluster.local:9093"]
       topic: 'offline-process-topic'
       required_acks: 1
       partition.round_robin:

+ 2 - 4
drone.template.yml

@@ -15,7 +15,7 @@ steps:
    - git clone $DRONE_GIT_HTTP_URL .
 
 - name: deployment
-  image: hub.evbj.easou.com/dev/drone-agent:v3.0.1-230721
+  image: hub.evbj.easou.com/dev/drone-agent:v3.0.1-230506
   pull: always
   # privileged: true
   environment:
@@ -23,7 +23,7 @@ steps:
     JNLP_REPLICAS: [REPLICA]
     JNLP_TAG: [TAG]
     JNLP_VERSION: v1  # default v1, v2 for canary
-    DEPLOY_ENV: k8s-4 # 可以选择把应用部署到集群:k8s-1 or k8s-2
+    DEPLOY_ENV: k8s-1 # 可以选择把应用部署到集群:k8s-1 or k8s-2
     JNLP_REPO: hub.evbj.easou.com
     JNLP_CONTAINER_PORT: 80
     JNLP_INGRESS: nginx
@@ -45,8 +45,6 @@ steps:
     - python3 /root/tools.py -b
     # 部署服务到kubernetes上
     - python3 /root/tools.py -a
-    # 检查服务部署状态
-    - python3 /root/tools.py -c
     # 添加dns解析记录,生成访问域名
     - python3 /root/tools.py -d