add coturn
This commit is contained in:
parent
c99182cee9
commit
2cba5d2479
|
|
@ -0,0 +1,26 @@
|
|||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: coturn
|
||||
spec:
|
||||
destination:
|
||||
name: ''
|
||||
namespace: coturn
|
||||
server: 'https://kubernetes.default.svc'
|
||||
source:
|
||||
path: k8s/coturn
|
||||
repoURL: 'git@bitbucket.org:jamkazam/video-iac.git'
|
||||
targetRevision: HEAD
|
||||
project: default
|
||||
syncPolicy:
|
||||
syncOptions:
|
||||
- CreateNamespace=true
|
||||
automated:
|
||||
prune: true
|
||||
allowEmpty: false
|
||||
retry:
|
||||
limit: 5
|
||||
backoff:
|
||||
duration: 5s
|
||||
factor: 2
|
||||
maxDuration: 3m
|
||||
|
|
@ -12,4 +12,5 @@ resources:
|
|||
- external-dns.yaml
|
||||
- ingress-nginx.yaml
|
||||
- monitoring.yaml
|
||||
- alertmanager-slack.yaml
|
||||
- alertmanager-slack.yaml
|
||||
- coturn.yaml
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: coturn-deployment
|
||||
labels:
|
||||
app: coturn
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: coturn
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: coturn
|
||||
spec:
|
||||
hostNetwork: true
|
||||
imagePullSecrets:
|
||||
- name: gcr-json-key
|
||||
containers:
|
||||
- name: coturn
|
||||
image: gcr.io/tough-craft-276813/coturn:prod-0.1.83
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue