Skip to content

Commit

Permalink
fix(chart): bad default values
Browse files Browse the repository at this point in the history
  • Loading branch information
awlayton committed Jun 22, 2022
1 parent 9edc446 commit dfc75e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 23 deletions.
22 changes: 2 additions & 20 deletions charts/oada/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,6 @@ icon: https://avatars.githubusercontent.com/u/6750653
maintainers:
- name: awlayton
email: alex@layton.in

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
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: 1.2.0

# 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: '3.4.0'
version: 1.2.1
appVersion: '3.4.1'
4 changes: 2 additions & 2 deletions charts/oada/templates/init.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
restartPolicy: OnFailure
serviceAccountName: service-account-{{ .Release.Name }}
initContainers:
{{- if eq (include "oada.arango.deploy" .) "true" -}}
{{ if eq (include "oada.arango.deploy" .) "true" -}}
- name: wait-for-arangodb
image: {{ .Values.k8sWaitFor.image }}:{{ .Values.k8sWaitFor.tag }}
args:
- service
- arangodb-{{ .Release.Name }}
{{- end }}
{{- if eq (include "oada.kafka.deploy" .) "true" -}}
{{ if eq (include "oada.kafka.deploy" .) "true" -}}
- name: wait-for-redpanda
image: {{ .Values.k8sWaitFor.image }}:{{ .Values.k8sWaitFor.tag }}
args:
Expand Down
2 changes: 1 addition & 1 deletion charts/oada/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ arangodb:
# arangodb.image is the Docker image to use for arangodb
image: arangodb/arangodb
# arangodb.tag is the Docker tag for the ArangoDB images
tag: 3.9.2
tag: 3.9.1

kafka:
# kafka.brokers is an array of an external Kafka brokers.
Expand Down

0 comments on commit dfc75e3

Please sign in to comment.