作者 Your Name

修改配置

#!/bin/bash
export PATH=/root/local/bin:$PATH
kubectl -n mmm-suplus-dev get pods | grep -q sg-local-storage
if [ "$?" == "1" ];then
kubectl create -f /tmp/local/sg-local-storage/sg-storage.yaml --record
kubectl -n mmm-suplus-dev get svc | grep -q sg-local-storage
if [ "$?" == "0" ];then
echo "sg-local-storage service install success!"
else
echo "sg-local-storage service install fail!"
fi
kubectl -n mmm-suplus-dev get pods | grep -q sg-local-storage
if [ "$?" == "0" ];then
echo "sg-local-storage deployment install success!"
else
echo "sg-local-storage deployment install fail!"
fi
else
kubectl delete -f /tmp/local/sg-local-storage/sg-storage.yaml
kubectl -n mmm-suplus-dev get svc | grep -q sg-local-storage
while [ "$?" == "0" ]
do
kubectl -n mmm-suplus-dev get svc | grep -q sg-local-storage
done
kubectl -n mmm-suplus-dev get pods | grep -q sg-local-storage
while [ "$?" == "0" ]
do
kubectl -n mmm-suplus-dev get pods | grep -q sg-local-storage
done
kubectl create -f /tmp/local/sg-local-storage/sg-storage.yaml --record
kubectl -n mmm-suplus-dev get svc | grep -q sg-local-storage
if [ "$?" == "0" ];then
echo "sg-local-storage service update success!"
else
echo "sg-local-storage service update fail!"
fi
kubectl -n mmm-suplus-dev get pods | grep -q sg-local-storage
if [ "$?" == "0" ];then
echo "sg-local-storage deployment update success!"
else
echo "sg-local-storage deployment update fail!"
fi
fi
\ No newline at end of file
apiVersion: v1
kind: Service
metadata:
name: sg-local-storage
namespace: mmm-suplus-dev
labels:
k8s-app: sg-local-storage
spec:
ports:
- name: "http"
port: 80
targetPort: 8080
- name: "https"
port: 443
targetPort: 443
selector:
k8s-app: sg-local-storage
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sg-local-storage
namespace: mmm-suplus-dev
labels:
k8s-app: sg-local-storage
spec:
replicas: 1
template:
metadata:
labels:
k8s-app: sg-local-storage
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: sg-local-storage
image: 192.168.0.243:5000/mmm/sg-storage:local
imagePullPolicy: Always
ports:
- containerPort: 8080
- containerPort: 443
volumeMounts:
- mountPath: /opt/logs
name: accesslogs
- mountPath: /go/src/sg-storage/uploads
name: sgstorage-pvc1
env:
- name: LOG_LEVEL
value: "debug"
- name: LOG_FILE
value: "true"
- name: ERROR_BASE_CODE
value: "1"
- name: ERROR_BASE_CODE_MULTIPLE
value: "1000"
- name: POSTGRESQL_DB_NAME
value: "sg_storage_local"
- name: ENABLE_HTTPS
value: "true"
- 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
volumes:
- name: accesslogs
emptyDir: {}
- name: sgstorage-pvc1
persistentVolumeClaim:
claimName: sgstorage-pvc
\ No newline at end of file