feat: ser2sock: use a headless service

Since these generally talk to individual instances of physical hardware, it is unlikely that a user intends load balancing of multiple instances to multiple devices. Using a headless service (`clusterIP: None`) removes the k8s load balancer and allows clients to talk directly to the ser2sock pod via the service name.
This commit is contained in:
Dis 2022-07-23 09:38:12 -04:00
parent ad814f200b
commit 75e383d926
2 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,7 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 4.4.2
version: 4.5.0
annotations:
artifacthub.io/changes: |-
- kind: changed

View File

@ -29,6 +29,8 @@ env:
# @default -- See values.yaml
service:
main:
type: ClusterIP
clusterIP: None
ports:
http:
enabled: false