审查视图

deploy/k8s/dev/partner.yaml 2.5 KB
tangxvhui authored
1 2 3
apiVersion: v1
kind: Service
metadata:
Administrator authored
4
  name: mmm-partnermg
tangxvhui authored
5 6
  namespace: mmm-suplus-dev
  labels:
Administrator authored
7
    k8s-app: mmm-partnermg
tangxvhui authored
8 9 10 11 12 13
spec:
  ports:
    - name: "http"
      port: 80
      targetPort: 8082
  selector:
Administrator authored
14
    k8s-app: mmm-partnermg
tangxvhui authored
15 16 17 18
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
Administrator authored
19
  name: mmm-partnermg
tangxvhui authored
20 21
  namespace: mmm-suplus-dev
  labels:
Administrator authored
22
    k8s-app: mmm-partnermg
tangxvhui authored
23 24 25 26 27
spec:
  replicas: 1
  template:
    metadata:
      labels:
Administrator authored
28
        k8s-app: mmm-partnermg
tangxvhui authored
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
    spec:
      affinity:
        nodeAffinity:
          preferredDuringSchedulingIgnoredDuringExecution:
            - preference: {}
              weight: 100
          requiredDuringSchedulingIgnoredDuringExecution:
            nodeSelectorTerms:
              - matchExpressions:
                  - key: kubernetes.io/hostname
                    operator: In
                    values:
                      - cn-hangzhou.i-bp1djh1xn7taumbue1ze
                      - cn-hangzhou.i-bp1djh1xn7taumbue1zd
                      - cn-hangzhou.i-bp1euf5u1ph9kbhtndhb
                      - cn-hangzhou.i-bp1hyp5oips9cdwxxgxy
      containers:
Administrator authored
46
        - name: mmm-partnermg
tangxvhui authored
47
          image: 192.168.0.243:5000/mmm/partnermg:dev
tangxvhui authored
48 49 50 51 52 53 54 55 56 57 58 59
          imagePullPolicy: Always
          ports:
            - containerPort: 8082
          volumeMounts:
            - mountPath: /opt/logs
              name: accesslogs
          env:
            - name: POSTGRESQL_DB_NAME
              value: "partner_dev"
            - name: POSTGRESQL_USER
              value: "postgres"
            - name: POSTGRESQL_PASSWORD
Administrator authored
60
              value: "eagle1010"
tangxvhui authored
61
            - name: POSTGRESQL_HOST
Administrator authored
62
              value: "114.55.200.59"
tangxvhui authored
63
            - name: POSTGRESQL_PORT
Administrator authored
64
              value: "31543"
tangxvhui authored
65 66 67 68 69 70
            - name: LOG_LEVEL
              value: "debug"
            - name: ERROR_BASE_CODE
              value: "1"
            - name: ERROR_BASE_CODE_MULTIPLE
              value: "1000"
71
            - name: UCENTER_HOST
唐旭辉 authored
72
              value: "https://suplus-ucenter-dev.fjmaimaimai.com"
73 74 75 76 77 78
            - name: UCENTER_SECRET
              value: "cykbjnfqgctn"
            - name: UCENTER_APP_KEY
              value: "39aefef9e22744a3b2d2d3791824ae7b"
            - name: UCENTER_CHECK_ALT
              value: "6DwjBO735"
唐旭辉 authored
79 80
            - name: BUSINESS_ADMIN_HOST
              value: "http://suplus-business-admin-dev.fjmaimaimai.com"
唐旭辉 authored
81
            - name: KAFKA_HOST
唐旭辉 authored
82
              value: "192.168.0.250:9092"
唐旭辉 authored
83 84
            - name: KAFKA_CONSUMER_ID
              value: "partnermg_dev"
tangxvhui authored
85 86
      volumes:
        - name: accesslogs
tangxvhui authored
87
          emptyDir: {}