|
|
apiVersion: v1
|
|
|
kind: Service
|
|
|
metadata:
|
|
|
name: yishujia-open-api
|
|
|
namespace: mmm-suplus-prd
|
|
|
labels:
|
|
|
k8s-app: yishujia-open-api
|
|
|
spec:
|
|
|
ports:
|
|
|
- name: "http"
|
|
|
port: 80
|
|
|
targetPort: 8080
|
|
|
- name: "https"
|
|
|
port: 443
|
|
|
targetPort: 443
|
|
|
selector:
|
|
|
k8s-app: yishujia-open-api
|
|
|
---
|
|
|
apiVersion: extensions/v1beta1
|
|
|
kind: Deployment
|
|
|
metadata:
|
|
|
name: yishujia-open-api
|
|
|
namespace: mmm-suplus-prd
|
|
|
labels:
|
|
|
k8s-app: yishujia-open-api
|
|
|
spec:
|
|
|
replicas: 1
|
|
|
template:
|
|
|
metadata:
|
|
|
labels:
|
|
|
k8s-app: yishujia-open-api
|
|
|
spec:
|
|
|
affinity:
|
|
|
nodeAffinity:
|
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
|
- preference: {}
|
|
|
weight: 100
|
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
|
nodeSelectorTerms:
|
|
|
- matchExpressions:
|
|
|
- key: kubernetes.io/hostname
|
|
|
operator: In
|
|
|
values:
|
|
|
- cn-hangzhou.i-bp1inovcdp9uwwfusslx
|
|
|
containers:
|
|
|
- name: yishujia-open-api
|
|
|
image: 192.168.0.243:5000/mmm/yishujia-open-api:master
|
|
|
imagePullPolicy: Always
|
|
|
ports:
|
|
|
- containerPort: 8080
|
|
|
- containerPort: 443
|
|
|
env:
|
|
|
- name: MYSQL_HOST
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: mysql.host
|
|
|
- name: MYSQL_PORT
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: mysql.port
|
|
|
- name: REDIS_HOST
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: redis.ip
|
|
|
- name: REDIS_PORT
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: redis.port
|
|
|
- name: MYSQL_USER
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: mysql.user
|
|
|
- name: MYSQL_PASSWORD
|
|
|
valueFrom:
|
|
|
configMapKeyRef:
|
|
|
name: suplus-config
|
|
|
key: mysql.password
|
|
|
- name: MYSQL_DB_NAME
|
|
|
value: "mmm_open"
|
|
|
- name: RUN_MODE
|
|
|
value: "prod"
|
|
|
- name: LOG_LEVEL
|
|
|
value: "debug"
|
|
|
- name: aliyun_logs_suplusfile
|
|
|
value: "stdout"
|
|
|
- name: aliyun_logs_access
|
|
|
value: " /opt/logs/app.log" |
|
|
\ No newline at end of file |
...
|
...
|
|