infra/clusters/k3s/portal/deployment.yml
2023-04-30 13:56:22 -05:00

36 lines
926 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: portal-deployment
namespace: portal
spec:
selector:
matchLabels:
app: portal
replicas: 1
template:
metadata:
labels:
app: portal
spec:
containers:
- name: portal
image: sonarsoftware/customerportal:stable
ports:
- name: http
containerPort: 80
protocol: TCP
env:
- name: NGINX_HOST
value: portaltest.vntx.net
- name: API_USERNAME
value: api
- name: API_PASSWORD
value: MlgGynhWD20uoMdt4eaeomryVXW
- name: SONAR_URL
value: https://vntx.sonar.software
- name: REDIS_HOST
value: redis-
- name: APP_KEY
value: base64:O+Bxk/ww7D35liT3tWjwJmpf3gecrxZYd62rRAn7/XA=
imagePullPolicy: Always