From 3c137f590e481daba1dc51b288deeb8528624be7 Mon Sep 17 00:00:00 2001 From: Tamas Levai Date: Tue, 23 Jul 2024 11:04:37 +0200 Subject: [PATCH] style: Use fully qualified image names --- helm/stunner-gateway-operator/values.yaml | 2 +- .../templates/kurento-deployment.yaml | 2 +- .../templates/webrtc-deployment.yaml | 4 ++-- helm/stunner/templates/stunner-deployment.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/helm/stunner-gateway-operator/values.yaml b/helm/stunner-gateway-operator/values.yaml index e0f2f72..a0eeeb6 100644 --- a/helm/stunner-gateway-operator/values.yaml +++ b/helm/stunner-gateway-operator/values.yaml @@ -41,7 +41,7 @@ stunnerGatewayOperator: mode: managed spec: replicas: 1 - # for dev version set it to l7mp/stunnerd:dev + # for dev version set it to docker.io/l7mp/stunnerd:dev image: docker.io/l7mp/stunnerd:0.19.0 imagePullPolicy: Always command: diff --git a/helm/stunner-kurento-one2one-call/templates/kurento-deployment.yaml b/helm/stunner-kurento-one2one-call/templates/kurento-deployment.yaml index cfd70e5..7d3c603 100644 --- a/helm/stunner-kurento-one2one-call/templates/kurento-deployment.yaml +++ b/helm/stunner-kurento-one2one-call/templates/kurento-deployment.yaml @@ -48,7 +48,7 @@ spec: - containerPort: {{ .Values.mediaServer.deployment.containerPort }} {{- if eq .Values.netdebug "enable"}} - name: net-debug - image: l7mp/net-debug:latest + image: docker.io/l7mp/net-debug:latest command: ["/bin/sh"] args: ["-c", "while true; do echo hello; sleep 10;done"] {{- end}} diff --git a/helm/stunner-kurento-one2one-call/templates/webrtc-deployment.yaml b/helm/stunner-kurento-one2one-call/templates/webrtc-deployment.yaml index c726a19..91b44b1 100644 --- a/helm/stunner-kurento-one2one-call/templates/webrtc-deployment.yaml +++ b/helm/stunner-kurento-one2one-call/templates/webrtc-deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: webrtc-server - image: l7mp/kurento-one2one-call-server:latest + image: docker.io/l7mp/kurento-one2one-call-server:latest command: ["npm"] args: ["start", "--", "--as_uri=https://0.0.0.0:8443", "--ws_uri=ws://kms-control.default.svc.cluster.local:8888/kurento"] imagePullPolicy: {{ .Values.applicationServer.deployment.imagePullPolicy }} @@ -41,4 +41,4 @@ spec: - key: tls.key path: server.key {{- end}} ---- \ No newline at end of file +--- diff --git a/helm/stunner/templates/stunner-deployment.yaml b/helm/stunner/templates/stunner-deployment.yaml index b953913..f4a6657 100644 --- a/helm/stunner/templates/stunner-deployment.yaml +++ b/helm/stunner/templates/stunner-deployment.yaml @@ -48,7 +48,7 @@ spec: {{- end}} {{- if eq .Values.stunner.deployment.container.netdebug.enabled true}} - name: net-debug - image: l7mp/net-debug:latest + image: docker.io/l7mp/net-debug:latest imagePullPolicy: IfNotPresent command: ["/bin/sh"] args: ["-c", "while true; do echo hello; sleep 10;done"]