Skip to content

Commit 15e474b

Browse files
committed
Added ImagePullPolicy to all
scanner and parser images Signed-off-by: Robert Seedorff <Robert.Seedorff@iteratec.com>
1 parent 88e8b9b commit 15e474b

70 files changed

Lines changed: 273 additions & 49 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

auto-discovery/kubernetes/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
image:
66
repository: securecodebox/auto-discovery-kubernetes
77
tag: null
8-
pullPolicy: Always
8+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
9+
pullPolicy: IfNotPresent
910

1011
config:
1112
# config is using kubebuilder config framework, it may look like this is a crd but its not, see https://book.kubebuilder.io/component-config-tutorial/tutorial.html

demo-targets/bodgeit/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ image:
1414
# image.tag -- The image tag
1515
# @default -- defaults to the "latest" version because the appVersion tag is not available at docker.io
1616
tag: latest
17+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
1718
pullPolicy: IfNotPresent
1819

1920
imagePullSecrets: []

demo-targets/dummy-ssh/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ image:
1414
# image.tag -- The image tag
1515
# @default -- defaults to the appVersion
1616
tag: null
17+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
1718
pullPolicy: IfNotPresent
1819

1920
imagePullSecrets: []

demo-targets/http-webhook/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ image:
1414
# image.tag -- The image tag
1515
# @default -- defaults to the latest version because the appVersion tag is not available at docker.io
1616
tag: latest
17+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
1718
pullPolicy: IfNotPresent
1819

1920
imagePullSecrets: []

demo-targets/juice-shop/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ image:
1414
# image.tag -- The image tag
1515
# @default -- defaults to the appVersion
1616
tag: null
17+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
1718
pullPolicy: IfNotPresent
1819

1920
imagePullSecrets: []

demo-targets/old-wordpress/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ image:
1414
# image.tag -- The image tag
1515
# @default -- defaults to the appVersion
1616
tag: null
17+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
1718
pullPolicy: IfNotPresent
1819

1920
imagePullSecrets: []

demo-targets/swagger-petstore/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ image:
1414
# image.tag -- The image tag
1515
# @default -- defaults to the appVersion
1616
tag: null
17+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
1718
pullPolicy: IfNotPresent
1819

1920
# If you want to expose the petstore under a url different to the default service name address use the override to specify a the full host with protocol

demo-targets/unsafe-https/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ image:
1414
#image.tag: latest
1515
# @default -- defaults to the appVersion
1616
tag: null
17+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
1718
pullPolicy: IfNotPresent
1819

1920
imagePullSecrets: []

hooks/notification/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ hook:
1313
# hook.image.tag -- Image tag
1414
# @default -- defaults to the charts version
1515
tag: null
16-
pullPolicy: Always
16+
# -- Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
17+
pullPolicy: IfNotPresent
1718

1819
# hook.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the hook will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
1920
ttlSecondsAfterFinished: null

hooks/persistence-elastic/templates/import-dashboard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
containers:
1616
- name: dasboard-importer
1717
image: "{{ .Values.dashboardImporter.image.repository }}:{{ .Values.dashboardImporter.image.tag | default .Chart.Version }}"
18-
imagePullPolicy: Always
18+
imagePullPolicy: IfNotPresent
1919
env:
2020
{{- if .Values.externalElasticStack.enabled }}
2121
- name: KIBANA_URL

0 commit comments

Comments
 (0)