Skip to content

Commit

Permalink
style: Use fully qualified image names
Browse files Browse the repository at this point in the history
  • Loading branch information
levaitamas committed Jul 23, 2024
1 parent 8d06b82 commit 3c137f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helm/stunner-gateway-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -41,4 +41,4 @@ spec:
- key: tls.key
path: server.key
{{- end}}
---
---
2 changes: 1 addition & 1 deletion helm/stunner/templates/stunner-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 3c137f5

Please sign in to comment.