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

imagePullPolicy changed from IfNotPresent to Always #2721

Merged
Merged
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
1 change: 1 addition & 0 deletions hack/run-e2e-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ function install-volcano {

echo "Install volcano chart with crd version $crd_version"
helm install ${CLUSTER_NAME} installer/helm/chart/volcano --namespace volcano-system --kubeconfig ${KUBECONFIG} \
--set basic.image_pull_policy=IfNotPresent \
--set basic.image_tag_version=${TAG} \
--set basic.scheduler_config_file=config/volcano-scheduler-ci.conf \
--set basic.crd_version=${crd_version} \
Expand Down
2 changes: 1 addition & 1 deletion installer/helm/chart/volcano/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ basic:
admission_config_file: "config/volcano-admission.conf"
scheduler_config_file: "config/volcano-scheduler.conf"
image_pull_secret: ""
image_pull_policy: "IfNotPresent"
image_pull_policy: "Always"
image_tag_version: "latest"
admission_port: 8443
custom:
Expand Down
8 changes: 4 additions & 4 deletions installer/volcano-development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ spec:
- -v=4
- 2>&1
image: volcanosh/vc-webhook-manager:latest
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
name: admission
volumeMounts:
- mountPath: /admission.local.config/certificates
Expand Down Expand Up @@ -186,7 +186,7 @@ spec:
containers:
- name: main
image: volcanosh/vc-webhook-manager:latest
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
command: ["./gen-admission-secret.sh", "--service", "volcano-admission-service", "--namespace",
"volcano-system", "--secret", "volcano-admission-secret"]
---
Expand Down Expand Up @@ -8616,7 +8616,7 @@ spec:
- --enable-healthz=true
- -v=4
- 2>&1
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
---
# Source: volcano/templates/scheduler.yaml
apiVersion: v1
Expand Down Expand Up @@ -8779,7 +8779,7 @@ spec:
- --enable-metrics=true
- -v=3
- 2>&1
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
volumeMounts:
- name: scheduler-config
mountPath: /volcano.scheduler
Expand Down
2 changes: 1 addition & 1 deletion installer/volcano-monitoring-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ spec:
spec:
containers:
- image: quay.io/coreos/kube-state-metrics:v1.9.7
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
name: kube-state-metrics
ports:
- name: http-metrics
Expand Down