Skip to content
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 helm/ambassador/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.26
version: 0.1.27

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/ambassador/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "1.4.2"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/audit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.32
version: 0.1.33

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/audit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ image:
# -- (string) When to pull the image. This value should be "Always" to ensure the latest image is used.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/aws-es-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.31
version: 0.1.32

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/aws-es-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: ""
# tag: ""

# -- (list) List of container ports
ports:
Expand Down
2 changes: 1 addition & 1 deletion helm/cedar/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.13
version: 0.1.14

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/cedar/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/datareplicate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.33
version: 0.0.34

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/datareplicate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ image:
# -- (string) Docker repository.
repository: quay.io/cdis/dcf-dataservice
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""
googleBucketReplicateJob:
enabled: true
# -- (bool) Whether to enable the Google bucket replicate job
Expand Down
2 changes: 1 addition & 1 deletion helm/etl/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.17
version: 0.1.18

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions helm/etl/templates/etl-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
defaultMode: 0744
containers:
- name: gen3-spark
image: {{ .Values.image.spark.repository }}:{{ .Values.image.spark.tag }}
image: {{ .Values.image.spark.repository }}:{{ .Values.image.spark.tag | default .Chart.AppVersion }}
ports:
- containerPort: 22
- containerPort: 9000
Expand Down Expand Up @@ -107,7 +107,7 @@ spec:
while true; do [ -f "/usr/share/pod/exit" ] && { exit_code=$(cat /usr/share/pod/exit); [[ "$exit_code" =~ ^[0-9]+$ ]] && echo "Exiting with exit code $exit_code" && exit $exit_code || exit 1; }; sleep 5; done
- name: tube
imagePullPolicy: IfNotPresent
image: {{ .Values.image.tube.repository }}:{{ .Values.image.tube.tag }}
image: {{ .Values.image.tube.repository }}:{{ .Values.image.tube.tag | default .Chart.AppVersion }}
ports:
- containerPort: 80
env:
Expand Down
4 changes: 2 additions & 2 deletions helm/etl/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ image:
# -- (string) When to pull the image. This value should be "Always" to ensure the latest image is used.
pullPolicy: IfNotPresent
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""
spark:
# -- (string) The Docker image repository for the spark service
repository: quay.io/cdis/gen3-spark
# -- (string) When to pull the image. This value should be "Always" to ensure the latest image is used.
pullPolicy: IfNotPresent
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""


# -- (list) Docker image pull secrets.
Expand Down
2 changes: 1 addition & 1 deletion helm/fence/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.62
version: 0.1.63

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/fence/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ image:
# -- (string) When to pull the image. This value should be "Always" to ensure the latest image is used.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
4 changes: 2 additions & 2 deletions helm/frontend-framework/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.14
version: 0.1.15

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "develop"
appVersion: "main"

dependencies:
- name: common
Expand Down
2 changes: 1 addition & 1 deletion helm/frontend-framework/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "main"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
4 changes: 2 additions & 2 deletions helm/gen3-analysis/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.2
version: 0.1.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "master"
appVersion: "main"

dependencies:
- name: common
Expand Down
2 changes: 1 addition & 1 deletion helm/gen3-analysis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "main"
# tag: ""

# Environment Variables
# -- (string) Arborist service URL.
Expand Down
2 changes: 1 addition & 1 deletion helm/guppy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.27
version: 0.1.28

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/guppy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: ""
# tag: ""

# Environment Variables
# -- (string) Elasticsearch endpoint.
Expand Down
2 changes: 1 addition & 1 deletion helm/hatchery/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.55
version: 0.1.56


# This is the version number of the application being deployed. This version number should be
Expand Down
2 changes: 1 addition & 1 deletion helm/hatchery/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: IfNotPresent
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: ""
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/indexd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.34
version: 0.1.35

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/indexd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ image:
# -- (string) When to pull the image.
pullPolicy: IfNotPresent
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: ""
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/manifestservice/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.33
version: 0.1.34

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/manifestservice/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: ""
# tag: ""

# -- (map) Kubernetes service information.
service:
Expand Down
2 changes: 1 addition & 1 deletion helm/metadata/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.32
version: 0.1.33

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/metadata/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "feat_es-7"
# tag: ""

debug: false

Expand Down
2 changes: 1 addition & 1 deletion helm/peregrine/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.32
version: 0.1.33

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/peregrine/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ image:
# -- (string) When to pull the image.
pullPolicy: IfNotPresent
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "feat_jq-audience"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/portal/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.46
version: 0.1.47

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/portal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: IfNotPresent
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/requestor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.25
version: 0.1.26

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/requestor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""

# Environment Variables
# -- (string) Arborist service URL.
Expand Down
2 changes: 1 addition & 1 deletion helm/revproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.46
version: 0.1.47

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/revproxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "master"
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion helm/sheepdog/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.32
version: 0.1.33

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/sheepdog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: "bug_auth-audience"
# tag: ""

# Environment Variables
authNamespace: ""
Expand Down
2 changes: 1 addition & 1 deletion helm/sower/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.35
version: 0.1.36

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm/sower/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ image:
# -- (string) Docker pull policy.
pullPolicy: Always
# -- (string) Overrides the image tag whose default is the chart appVersion.
tag: ""
# tag: ""

# -- (list) Docker image pull secrets.
imagePullSecrets: []
Expand Down
Loading
Loading