46 lines
991 B
YAML
46 lines
991 B
YAML
|
apiVersion: extensions/v1beta1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: bbb-apps-akka
|
||
|
version: latest
|
||
|
name: bbb-apps-akka
|
||
|
namespace: bigbluebutton
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: bbb-apps-akka
|
||
|
version: latest
|
||
|
strategy:
|
||
|
rollingUpdate:
|
||
|
maxSurge: 1
|
||
|
maxUnavailable: 1
|
||
|
type: RollingUpdate
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: bbb-apps-akka
|
||
|
version: latest
|
||
|
name: bbb-apps-akka
|
||
|
spec:
|
||
|
containers:
|
||
|
- env:
|
||
|
- name: JAVA_OPTS
|
||
|
value: -Dredis.host=redis
|
||
|
image: fcecagno/bigbluebutton:bbb-apps-akka
|
||
|
imagePullPolicy: Always
|
||
|
name: bbb-apps-akka
|
||
|
ports:
|
||
|
- containerPort: 8080
|
||
|
protocol: TCP
|
||
|
restartPolicy: Always
|
||
|
terminationGracePeriodSeconds: 30
|
||
|
nodeSelector:
|
||
|
role: 'bigbluebutton'
|
||
|
tolerations:
|
||
|
- key: role
|
||
|
operator: Equal
|
||
|
value: 'bigbluebutton'
|
||
|
effect: NoSchedule
|