kubernecces
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-11-24 17:08:59 +01:00
parent 0b2901ec3b
commit f54d752657
2 changed files with 65 additions and 1 deletions

64
k8s/videon-backend.yml Normal file
View File

@ -0,0 +1,64 @@
---
apiVersion: v1
kind: ConfigMap
metadata:
name: input-service
labels:
app: input-service
namespace: birbnetes
data:
SENTRY_DSN: https://58bd309272c642d884ff2332c336b977@sentry.kmlabz.com/21
RELEASE_ID: kmlabz-k8s
VIDEON_RELEASEMODE: release
VIDEON_POSTGRES_HOSTNAME: videon
VIDEON_POSTGRES_USERNAME: videon
VIDEON_POSTGRES_PASSWORD: videon-verszeklet
VIDEON_POSTGRES_DB: videon
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: backend
namespace: videon
labels:
app: backend
spec:
replicas: 1
selector:
matchLabels:
app: backend
strategy:
type: Recreate
template:
metadata:
labels:
app: backend
spec:
containers:
- name: backend
image: registry.kmlabz.com/videon/backend
imagePullPolicy: Always
envFrom:
- configMapRef:
name: backend
ports:
- containerPort: 8080
imagePullSecrets:
- name: regcred
---
apiVersion: v1
kind: Service
metadata:
name: backend
namespace: videon
labels:
app: backend
spec:
ports:
- name: backend
port: 80
targetPort: 8080
protocol: TCP
selector:
app: backend
type: ClusterIP

View File

@ -43,7 +43,7 @@ ma.init_app(app)
with app.app_context():
db.create_all()
""
formatter = logging.Formatter(
fmt="%(asctime)s - %(levelname)s - %(module)s - %(message)s"
)