...
|
...
|
@@ -2,7 +2,7 @@ apiVersion: v1 |
|
|
kind: Service
|
|
|
metadata:
|
|
|
name: allied-creation-cooperation
|
|
|
namespace: <replace-your-k8s-namespace>
|
|
|
namespace: mmm-suplus-prd
|
|
|
labels:
|
|
|
k8s-app: allied-creation-cooperation
|
|
|
spec:
|
...
|
...
|
@@ -10,6 +10,9 @@ spec: |
|
|
- name: "http"
|
|
|
port: 80
|
|
|
targetPort: 8082
|
|
|
- name: "https"
|
|
|
port: 443
|
|
|
targetPort: 443
|
|
|
selector:
|
|
|
k8s-app: allied-creation-cooperation
|
|
|
---
|
...
|
...
|
@@ -17,7 +20,7 @@ apiVersion: extensions/v1beta1 |
|
|
kind: Deployment
|
|
|
metadata:
|
|
|
name: allied-creation-cooperation
|
|
|
namespace: <replace-your-k8s-namespace>
|
|
|
namespace: mmm-suplus-prd
|
|
|
labels:
|
|
|
k8s-app: allied-creation-cooperation
|
|
|
spec:
|
...
|
...
|
@@ -44,20 +47,64 @@ spec: |
|
|
- cn-hangzhou.i-bp1hyp5oips9cdwxxgxy
|
|
|
containers:
|
|
|
- name: allied-creation-cooperation
|
|
|
image: 192.168.0.243:5000/mmm/allied-creation-cooperation:dev
|
|
|
image: 192.168.0.243:5000/mmm/allied-creation-cooperation:master
|
|
|
imagePullPolicy: Always
|
|
|
ports:
|
|
|
- containerPort: 8082
|
|
|
- containerPort: 443
|
|
|
volumeMounts:
|
|
|
- mountPath: /opt/logs
|
|
|
name: accesslogs
|
|
|
env:
|
|
|
- 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: USER_MODULE_HOST
|
|
|
value: "https://allied-creation-user-prd.fjmaimaimai.com"
|
|
|
- name: REDIS_HOST
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: redis.ip
|
|
|
- name: REDIS_PORT
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: redis.port
|
|
|
- name: POSTGRESQL_DB_NAME
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: postgresqlalliedcreationcooperation.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
|
|
|
volumes:
|
|
|
- name: accesslogs
|
|
|
emptyDir: {} |
|
|
\ No newline at end of file |
...
|
...
|
|