审查视图

deploy/k8s/prd/allied-creation-gateway.yaml 4.5 KB
Administrator authored
1 2 3 4
apiVersion: v1
kind: Service
metadata:
  name: allied-creation-gateway
5
  namespace: mmm-suplus-prd
Administrator authored
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
  labels:
    k8s-app: allied-creation-gateway
spec:
  ports:
    - name: "http"
      port: 80
      targetPort: 8082
    - name: "https"
      port: 443
      targetPort: 443
  selector:
    k8s-app: allied-creation-gateway
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: allied-creation-gateway
23
  namespace: mmm-suplus-prd
Administrator authored
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
  labels:
    k8s-app: allied-creation-gateway
spec:
  replicas: 1
  template:
    metadata:
      labels:
        k8s-app: allied-creation-gateway
    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:
        - name: allied-creation-gateway
          image: 192.168.0.243:5000/mmm/allied-creation-gateway:master
          imagePullPolicy: Always
          ports:
            - containerPort: 8082
            - containerPort: 443
          volumeMounts:
            - mountPath: /opt/logs
              name: accesslogs
          env:
            - name: POSTGRESQL_DB_NAME
              valueFrom:
                configMapKeyRef:
                  name: suplus-config
                  key: postgresqlalliedcreation.dbname
            - name: POSTGRESQL_USER
              valueFrom:
                configMapKeyRef:
                  name: suplus-config
                  key: postgresql.user
            - name: POSTGRESQL_PASSWORD
              valueFrom:
                configMapKeyRef:
                  name: suplus-config
                  key: postgresql.password
            - name: POSTGRESQL_HOST
              valueFrom:
                configMapKeyRef:
                  name: suplus-config
                  key: postgresql.host
            - name: POSTGRESQL_PORT
              valueFrom:
                configMapKeyRef:
                  name: suplus-config
                  key: postgresql.port
            - name: REDIS_HOST
              valueFrom:
                configMapKeyRef:
                  name: suplus-config
                  key: redis.ip
            - name: REDIS_PORT
              valueFrom:
                configMapKeyRef:
                  name: suplus-config
                  key: redis.port
            - name: REDIS_AUTH
              value: ""
            - name: LOG_LEVEL
              value: "debug"
            - name: LOG_FRAMEWORK
              value: "beego"
            - name: LOG_TYPE
              value: "file"
            - name: ERROR_BASE_CODE
              value: "1"
            - name: ERROR_BASE_CODE_MULTIPLE
              value: "1000"
            - name: ENABLE_KAFKA_LOG
              value: "false"
            - name: HTTP_PORT
              value: "8082"
yangfu authored
110 111 112 113
            - name: SUPLUS_ADMIN_BASE_HOST
              value: "http://suplus-admin-base-prd.fjmaimaimai.com"
            - name: ALLIED_CREATION_GATEWAY_HOST
              value: "https://allied-creation-gateway-prd.fjmaimaimai.com"
Administrator authored
114 115 116 117
            - name: ALLIED_CREATION_USER_HOST
              value: "https://allied-creation-user-prd.fjmaimaimai.com"
            - name: ALLIED_CREATION_COOPERATION_HOST
              value: "https://allied-creation-cooperation-prd.fjmaimaimai.com"
118 119
            - name: ALLIED_CREATION_MANUFACTURE_HOST
              value: "https://allied-creation-manufacture-prd.fjmaimaimai.com"
Administrator authored
120 121 122 123
            - name: ALLIED_CREATION_BASIC_HOST
              value: "https://allied-creation-basic-prd.fjmaimaimai.com"
            - name: SMS_SERVE_HOST
              value: "https://sms.fjmaimaimai.com:9897"
陈爱青 authored
124 125
            - name: COST_STRUCTURED
              value: "http://cost-structured-prd.fjmaimaimai.com"
Administrator authored
126 127 128 129 130 131 132 133 134 135 136 137 138
      #        - name: REDIS_HOST
      #          valueFrom:
      #            configMapKeyRef:
      #              name: suplus-config
      #              key: redis.ip
      #        - name: REDIS_PORT
      #          valueFrom:
      #            configMapKeyRef:
      #              name: suplus-config
      #              key: redis.port
      volumes:
        - name: accesslogs
          emptyDir: {}