作者 Administrator

合并分支 'test' 到 'master'

Test



查看合并请求 !1
apiVersion: v1
kind: Service
metadata:
name: allied-creation-basic
namespace: mmm-suplus-test
labels:
k8s-app: allied-creation-basic
spec:
ports:
- name: "http"
port: 80
targetPort: 8080
- name: "https"
port: 443
targetPort: 443
selector:
k8s-app: allied-creation-basic
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: allied-creation-basic
namespace: mmm-suplus-test
labels:
k8s-app: allied-creation-basic
spec:
replicas: 1
template:
metadata:
labels:
k8s-app: allied-creation-basic
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-basic
image: 192.168.0.243:5000/mmm/allied-creation-basic:dev
imagePullPolicy: Always
ports:
- containerPort: 8080
- containerPort: 443
volumeMounts:
- mountPath: /opt/logs
name: accesslogs
env:
- name: LOG_LEVEL
value: "debug"
- name: ERROR_BASE_CODE
value: "1"
- name: ERROR_BASE_CODE_MULTIPLE
value: "1000"
- 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: postgresqlalliedcreationbasic.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
... ...
#!/bin/bash
export PATH=/root/local/bin:$PATH
kubectl -n mmm-suplus-test get pods | grep -q allied-creation-basic
if [ "$?" == "1" ];then
kubectl create -f /tmp/test/allied-creation-basic/allied-creation-basic.yaml --record
kubectl -n mmm-suplus-test get svc | grep -q allied-creation-basic
if [ "$?" == "0" ];then
echo "allied-creation-basic service install success!"
else
echo "allied-creation-basic service install fail!"
fi
kubectl -n mmm-suplus-test get pods | grep -q allied-creation-basic
if [ "$?" == "0" ];then
echo "allied-creation-basic deployment install success!"
else
echo "allied-creation-basic deployment install fail!"
fi
else
kubectl delete -f /tmp/test/allied-creation-basic/allied-creation-basic.yaml
kubectl -n mmm-suplus-test get svc | grep -q allied-creation-basic
while [ "$?" == "0" ]
do
kubectl -n mmm-suplus-test get svc | grep -q allied-creation-basic
done
kubectl -n mmm-suplus-test get pods | grep -q allied-creation-basic
while [ "$?" == "0" ]
do
kubectl -n mmm-suplus-test get pods | grep -q allied-creation-basic
done
kubectl create -f /tmp/test/allied-creation-basic/allied-creation-basic.yaml --record
kubectl -n mmm-suplus-test get svc | grep -q allied-creation-basic
if [ "$?" == "0" ];then
echo "allied-creation-basic service update success!"
else
echo "allied-creation-basic service update fail!"
fi
kubectl -n mmm-suplus-test get pods | grep -q allied-creation-basic
if [ "$?" == "0" ];then
echo "allied-creation-basic deployment update success!"
else
echo "allied-creation-basic deployment update fail!"
fi
fi
\ No newline at end of file
... ...