File tree Expand file tree Collapse file tree 4 files changed +23
-0
lines changed
Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ annotations:
1616 links:
1717 - name: Ollama release v0.13.0
1818 url: https://github.com/ollama/ollama/releases/tag/v0.13.0
19+ - kind: added
20+ description: add ipFamilies and ipFamilyPolicy to the service
1921
2022kubeVersion : " ^1.16.0-0"
2123home : https://ollama.ai/
Original file line number Diff line number Diff line change @@ -241,6 +241,8 @@ ollama:
241241| runtimeClassName | string | `""` | Specify runtime class |
242242| securityContext | object | `{}` | Container Security Context |
243243| service.annotations | object | `{}` | Annotations to add to the service |
244+ | service.ipFamilies | object | `[]` | The IP families supported by the service |
245+ | service.ipFamilyPolicy | string | `""` | Allows configuring Dual-stack service |
244246| service.labels | object | `{}` | Labels to add to the service |
245247| service.loadBalancerIP | string | `nil` | Load Balancer IP address |
246248| service.nodePort | int | `31434` | Service node port when service type is 'NodePort' |
Original file line number Diff line number Diff line change 3030 selector :
3131 {{- include "ollama.selectorLabels" . | nindent 4 }}
3232{{- end }}
33+ {{- with .Values.service.ipFamilies }}
34+ ipFamilies :
35+ {{- toYaml . | nindent 4 }}
36+ {{- end }}
37+ {{- with .Values.service.ipFamilyPolicy }}
38+ ipFamilyPolicy : {{ . }}
39+ {{- end }}
40+
Original file line number Diff line number Diff line change @@ -186,6 +186,17 @@ service:
186186 # -- Labels to add to the service
187187 labels : {}
188188
189+ # -- IP Families for the service
190+ ipFamilies : []
191+ # - IPv4
192+ # - IPv6
193+
194+ # -- IP Family Policy for the service
195+ ipFamilyPolicy : " "
196+ # SingleStack
197+ # PreferDualStack
198+ # RequireDualStack
199+
189200# Configure Deployment
190201deployment :
191202
You can’t perform that action at this time.
0 commit comments