审查视图

deploy/k8s/dev/allied-creation-gateway.yaml 3.7 KB
Administrator authored
1 2 3 4 5 6 7 8 9
apiVersion: v1
kind: Service
metadata:
  name: allied-creation-gateway
  namespace: mmm-suplus-dev
  labels:
    k8s-app: allied-creation-gateway
spec:
  ports:
tangxuhui authored
10 11 12
    - name: "http"
      port: 80
      targetPort: 8082
Administrator authored
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
  selector:
    k8s-app: allied-creation-gateway
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: allied-creation-gateway
  namespace: mmm-suplus-dev
  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:
tangxuhui authored
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
        - name: allied-creation-gateway
          image: 192.168.0.243:5000/mmm/allied-creation-gateway:dev
          imagePullPolicy: Always
          ports:
            - containerPort: 8082
          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: ERROR_BASE_CODE
              value: "1"
            - name: ERROR_BASE_CODE_MULTIPLE
              value: "1000"
            - name: ENABLE_KAFKA_LOG
              value: "true"
            - name: HTTP_PORT
              value: "8082"
            - name: ALLIED_CREATION_USER_HOST
              value: "http://allied-creation-user-dev.fjmaimaimai.com"
            - name: ALLIED_CREATION_COOPERATION_HOST
tangxuhui authored
105
              value: "http://allied-creation-cooperation-dev.fjmaimaimai.com"
tangxuhui authored
106 107 108 109 110 111 112 113 114 115 116 117
            - name: SMS_SERVE_HOST
              value: "https://sms.fjmaimaimai.com:9897"
      #        - name: REDIS_HOST
      #          valueFrom:
      #            configMapKeyRef:
      #              name: suplus-config
      #              key: redis.ip
      #        - name: REDIS_PORT
      #          valueFrom:
      #            configMapKeyRef:
      #              name: suplus-config
      #              key: redis.port
Administrator authored
118
      volumes:
tangxuhui authored
119 120
        - name: accesslogs
          emptyDir: {}