forked from open-webui/open-webui
fix types
This commit is contained in:
parent
f5ac3a1ebf
commit
7d947c2988
3 changed files with 6 additions and 6 deletions
|
@ -16,6 +16,6 @@ spec:
|
||||||
ports:
|
ports:
|
||||||
- protocol: TCP
|
- protocol: TCP
|
||||||
name: http
|
name: http
|
||||||
port: http
|
port: {{ .port }}
|
||||||
targetPort: {{ .port }}
|
targetPort: http
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -70,7 +70,7 @@ spec:
|
||||||
- name: data
|
- name: data
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- else if and .Values.ollama.persistence.enabled (not .Values.ollama.persistence.existingClaim) }}
|
{{- else if and .Values.ollama.persistence.enabled (not .Values.ollama.persistence.existingClaim) }}
|
||||||
{}
|
[]
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
- metadata:
|
- metadata:
|
||||||
name: data
|
name: data
|
||||||
|
|
|
@ -11,9 +11,9 @@ spec:
|
||||||
type: {{ .type }}
|
type: {{ .type }}
|
||||||
ports:
|
ports:
|
||||||
- protocol: TCP
|
- protocol: TCP
|
||||||
port: http
|
port: {{ .port }}
|
||||||
targetPort: {{ .port }}
|
targetPort: http
|
||||||
{{- if .nodePort }}
|
{{- if .nodePort }}
|
||||||
nodePort: {{ .nodePort }}
|
nodePort: {{ .nodePort | int }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
Loading…
Reference in a new issue