Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions helm-charts/medcat-service-helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ spec:
securityContext:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
{{- with .Values.securityContext }}
Expand Down
5 changes: 5 additions & 0 deletions helm-charts/medcat-service-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,11 @@ tolerations: []

affinity: {}

# Host aliases for the pod
hostAliases: []
# - ip: "127.0.0.1"
# hostnames:
# - "foo.local"
networkPolicy:
# Choose to create a default network policy blocking all ingress other than to the service port.
enabled: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ spec:
securityContext:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: medcat-trainer
{{- with .Values.securityContext }}
Expand Down
6 changes: 6 additions & 0 deletions helm-charts/medcat-trainer-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -319,3 +319,9 @@ affinity: {}

# Runtime class name for the pod (e.g., "nvidia" for GPU workloads)
runtimeClassName: ""

# Host aliases for the pod
hostAliases: []
# - ip: "127.0.0.1"
# hostnames:
# - "foo.local"
Loading