Upgrade coturn
This commit is contained in:
parent
22f5aaecda
commit
63f41b7b25
|
|
@ -16,19 +16,19 @@ spec:
|
||||||
annotations:
|
annotations:
|
||||||
prometheus.io/scrape: "true"
|
prometheus.io/scrape: "true"
|
||||||
prometheus.io/path: "/metrics"
|
prometheus.io/path: "/metrics"
|
||||||
prometheus.io/port: "9643"
|
prometheus.io/port: "9641"
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
- name: gcr-json-key
|
{{- toYaml .Values.imagePullSecrets | nindent 8 }}
|
||||||
volumes:
|
volumes:
|
||||||
- name: coturn-config-volume
|
- name: coturn-config-volume
|
||||||
configMap:
|
configMap:
|
||||||
name: coturn-config
|
name: coturn-config
|
||||||
containers:
|
containers:
|
||||||
- name: coturn
|
- name: coturn
|
||||||
image: gcr.io/tough-craft-276813/coturn:latest
|
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
command: ["turnserver", "-c", "/etc/coturn/turnserver.conf"]
|
command: ["turnserver", "-c", "/etc/coturn/turnserver.conf"]
|
||||||
env:
|
env:
|
||||||
- name: MY_POD_IP
|
- name: MY_POD_IP
|
||||||
|
|
@ -42,14 +42,3 @@ spec:
|
||||||
- name: coturn-config-volume
|
- name: coturn-config-volume
|
||||||
mountPath: /etc/coturn/turnserver.conf
|
mountPath: /etc/coturn/turnserver.conf
|
||||||
subPath: turnserver.conf
|
subPath: turnserver.conf
|
||||||
- name: exporter
|
|
||||||
image: "{{ .Values.exporter.image.repository }}:{{ .Values.exporter.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.exporter.image.pullPolicy }}
|
|
||||||
env:
|
|
||||||
- name: REDIS_URL
|
|
||||||
value: "redis://coturn-redis-master:6379"
|
|
||||||
- name: LOG_LEVEL
|
|
||||||
value: "info"
|
|
||||||
ports:
|
|
||||||
- containerPort: 9643
|
|
||||||
name: metrics
|
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,12 @@
|
||||||
# Declare variables to be passed into your templates.
|
# Declare variables to be passed into your templates.
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: gcr.io/tough-craft-276813/coturn
|
repository: coturn/coturn
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: "latest"
|
tag: "4.7.0"
|
||||||
|
|
||||||
imagePullSecrets:
|
imagePullSecrets: []
|
||||||
- name: gcr-json-key
|
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue