Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates ImagePullPolicy to ifNotPresent #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/jitsi-shard/jicofo-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
memory: 400Mi
cpu: 400m
image: jitsi/jicofo:stable-4548-1
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
readinessProbe:
# caution: this readinessProbe tries to create a new conference and hence also fails if
# dependencies (jvb, prosody) are not available
Expand Down
4 changes: 2 additions & 2 deletions base/jitsi-shard/jvb/jvb-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
# sidecar container that exports stats for prometheus
# values are scraped by ../ops/monitoring/jvb-pod-monitor.yaml
image: systemli/prometheus-jitsi-meet-exporter:1.1.1
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- name: metrics
containerPort: 9888
Expand All @@ -48,7 +48,7 @@ spec:
- "http://localhost:8080/colibri/stats"
- name: jvb
image: jitsi/jvb:stable-4548-1
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
exec:
Expand Down
2 changes: 1 addition & 1 deletion base/jitsi-shard/prosody-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
memory: 300Mi
cpu: 300m
image: jitsi/prosody:stable-4548-1
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- name: metrics
containerPort: 5280
Expand Down
2 changes: 1 addition & 1 deletion base/jitsi-shard/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
memory: 300Mi
cpu: 400m
image: jitsi/web:stable-4548-1
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
readinessProbe:
httpGet:
port: 80
Expand Down
2 changes: 1 addition & 1 deletion base/ops/dashboard/kubernetes-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ spec:
containers:
- name: kubernetes-dashboard
image: kubernetesui/dashboard:v2.0.0
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8443
protocol: TCP
Expand Down
2 changes: 1 addition & 1 deletion base/ops/metacontroller/service-per-pod-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: hooks
image: metacontroller/jsonnetd:0.1
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
workingDir: /hooks
volumeMounts:
- name: hooks
Expand Down