Skip to content

Commit

Permalink
Stop errors if solr service is not in helm values (#109)
Browse files Browse the repository at this point in the history
Technically not a bug as it's always there, but helps with testing helm
without creating a test environment
  • Loading branch information
andytson-inviqa authored Sep 15, 2023
1 parent 20ce0ac commit add713b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/app/templates/service/solr/headless-service.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.services.solr.enabled }}
{{- if .Values.services | dig "solr" "enabled" false }}
apiVersion: v1
kind: Service
metadata:
Expand Down
2 changes: 1 addition & 1 deletion helm/app/templates/service/solr/service.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.services.solr.enabled }}
{{- if .Values.services | dig "solr" "enabled" false }}
apiVersion: v1
kind: Service
metadata:
Expand Down

0 comments on commit add713b

Please sign in to comment.