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

Use default imagePullPolicy to force pull latest tags #145

Merged
merged 1 commit into from
Nov 15, 2019
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
3 changes: 0 additions & 3 deletions deploy/internal/statefulset-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ spec:
#----------------#
- name: init
image: NOOBAA_CORE_IMAGE
imagePullPolicy: IfNotPresent
command:
- /noobaa_init_files/noobaa_init.sh
- init_mongo
Expand All @@ -62,7 +61,6 @@ spec:
#----------------#
- name: core
image: NOOBAA_CORE_IMAGE
imagePullPolicy: IfNotPresent
volumeMounts:
- name: logs
mountPath: /log
Expand Down Expand Up @@ -142,7 +140,6 @@ spec:
#--------------------#
- name: db
image: NOOBAA_DB_IMAGE
imagePullPolicy: IfNotPresent
command:
- bash
- -c
Expand Down
1 change: 0 additions & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ spec:
containers:
- name: noobaa-operator
image: noobaa/noobaa-operator:2.0.7
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: "250m"
Expand Down
1 change: 0 additions & 1 deletion doc/backing-store-crd.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ spec:
spec:
containers:
- name: noobaa-agent
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: "100m"
Expand Down
8 changes: 2 additions & 6 deletions pkg/bundle/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ spec:
name: s3-https
`

const Sha256_deploy_internal_statefulset_core_yaml = "effdb488acaf67b4cfbb2e1120f17a9d7283206f4a65f1cc1e687473d2bd96fd"
const Sha256_deploy_internal_statefulset_core_yaml = "e358c0cbd92be099dcea3f032b9ba780b2d6ed4ad9257a4e13902aa640a3c1f2"

const File_deploy_internal_statefulset_core_yaml = `apiVersion: apps/v1
kind: StatefulSet
Expand Down Expand Up @@ -1090,7 +1090,6 @@ spec:
#----------------#
- name: init
image: NOOBAA_CORE_IMAGE
imagePullPolicy: IfNotPresent
command:
- /noobaa_init_files/noobaa_init.sh
- init_mongo
Expand All @@ -1103,7 +1102,6 @@ spec:
#----------------#
- name: core
image: NOOBAA_CORE_IMAGE
imagePullPolicy: IfNotPresent
volumeMounts:
- name: logs
mountPath: /log
Expand Down Expand Up @@ -1183,7 +1181,6 @@ spec:
#--------------------#
- name: db
image: NOOBAA_DB_IMAGE
imagePullPolicy: IfNotPresent
command:
- bash
- -c
Expand Down Expand Up @@ -1811,7 +1808,7 @@ spec:
sourceNamespace: marketplace
`

const Sha256_deploy_operator_yaml = "bead9e44ebb85a2684e1d17f3c20c02ad8fedb461041db0c61305655538f79c0"
const Sha256_deploy_operator_yaml = "1ae40b1d77b51126d95632a9d28cc8302bf978ecde799868472531eb7758cb3a"

const File_deploy_operator_yaml = `apiVersion: apps/v1
kind: Deployment
Expand All @@ -1832,7 +1829,6 @@ spec:
containers:
- name: noobaa-operator
image: noobaa/noobaa-operator:2.0.7
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: "250m"
Expand Down