Skip to content

Commit

Permalink
SMAR-3012 fix typo, no camel case was used
Browse files Browse the repository at this point in the history
  • Loading branch information
egid-fertal-inno committed Dec 12, 2024
1 parent 778809e commit b34130f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions templates/_matcher.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ spec:
{{- include "smartface.commonEnv" . | nindent 8 }}
{{- include "smartface.rmqConfig" . | nindent 8 }}
{{- include "smartface.dbConfig" . | nindent 8 }}
{{- if .Values.configurations.facetemplate.compatibilityVersion }}
{{- if .Values.configurations.faceTemplate.compatibilityVersion }}
- name: SF_FACE_TEMPLATE_COMPATIBILITY_VERSION
value: {{ .Values.configurations.facetemplate.compatibilityVersion | quote }}
value: {{ .Values.configurations.faceTemplate.compatibilityVersion | quote }}
{{- end }}
{{- with .Values.matcher.extraVars }}
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 2 additions & 2 deletions templates/edge-streams/base-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ spec:
{{- include "smartface.rmqConfig" . | nindent 8 }}
{{- include "smartface.dbConfig" . | nindent 8 }}
{{- include "smartface.s3Config" . | nindent 8 }}
{{- if .Values.configurations.facetemplate.compatibilityVersion }}
{{- if .Values.configurations.faceTemplate.compatibilityVersion }}
- name: SF_FACE_TEMPLATE_COMPATIBILITY_VERSION
value: {{ .Values.configurations.facetemplate.compatibilityVersion | quote }}
value: {{ .Values.configurations.faceTemplate.compatibilityVersion | quote }}
{{- end }}
{{- with .Values.base.extraVars }}
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 2 additions & 2 deletions templates/edge-streams/edge-stream-processor-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ spec:
{{- include "smartface.commonEnv" . | nindent 8 }}
{{- include "smartface.rmqConfig" . | nindent 8 }}
{{- include "smartface.dbConfig" . | nindent 8 }}
{{- if .Values.configurations.facetemplate.compatibilityVersion }}
{{- if .Values.configurations.faceTemplate.compatibilityVersion }}
- name: SF_FACE_TEMPLATE_COMPATIBILITY_VERSION
value: {{ .Values.configurations.facetemplate.compatibilityVersion | quote }}
value: {{ .Values.configurations.faceTemplate.compatibilityVersion | quote }}
{{- end }}
{{- with .Values.edgeStreamProcessor.extraVars }}
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 2 additions & 2 deletions templates/edge-streams/face-matcher-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ spec:
{{- include "smartface.commonEnv" . | nindent 8 }}
{{- include "smartface.rmqConfig" . | nindent 8 }}
{{- include "smartface.dbConfig" . | nindent 8 }}
{{- if .Values.configurations.facetemplate.compatibilityVersion }}
{{- if .Values.configurations.faceTemplate.compatibilityVersion }}
- name: SF_FACE_TEMPLATE_COMPATIBILITY_VERSION
value: {{ .Values.configurations.facetemplate.compatibilityVersion | quote }}
value: {{ .Values.configurations.faceTemplate.compatibilityVersion | quote }}
{{- end }}
{{- with .Values.faceMatcher.extraVars }}
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 2 additions & 2 deletions templates/extractor-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ spec:
env:
{{- include "smartface.commonEnv" . | nindent 8 }}
{{- include "smartface.rmqConfig" . | nindent 8 }}
{{- if .Values.configurations.facetemplate.extractionAlgorithm }}
{{- if .Values.configurations.faceTemplate.extractionAlgorithm }}
- name: Extraction__Algorithm
value: {{ .Values.configurations.facetemplate.extractionAlgorithm | quote }}
value: {{ .Values.configurations.faceTemplate.extractionAlgorithm | quote }}
{{- end }}
{{- with .Values.extractor.extraVars }}
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ configurations:
# Example of possible values: 1.40, 1.39
# It is specifically intended for use during the process of migrating templates
# Use this setting with caution, because it can break functionality
facetemplate:
faceTemplate:
compatibilityVersion: null
extractionAlgorithm: null

Expand Down

0 comments on commit b34130f

Please sign in to comment.