diff --git a/charts/connect/README.md b/charts/connect/README.md index a84c18f..9ad691d 100644 --- a/charts/connect/README.md +++ b/charts/connect/README.md @@ -103,7 +103,7 @@ helm install --set connect.applicationName=connect connect ./connect | connect.labels | object | `{}` | Additional labels to be added to the Connect API deployment resource. | | connect.podAnnotations | object | `{}` | Additional annotations to be added to the Connect API pods. | | connect.podLabels | object | `{}` | Additional labels to be added to the Connect API pods. | -| connect.serviceType | string | `NodePort` | The type of Service resource to create for the Connect API and sync services. | +| connect.serviceType | string | `ClusterIP` | The type of Service resource to create for the Connect API and sync services. | | connect.serviceAnnotations | object | `{}` | Additional annotations to be added to the service. | | connect.sync.imageRepository | string | `"1password/connect-sync"` | The 1Password Connect Sync repository | | connect.sync.name | string | `"connect-sync"` | The name of the 1Password Connect Sync container | diff --git a/charts/connect/values.yaml b/charts/connect/values.yaml index 691e2bd..db34772 100644 --- a/charts/connect/values.yaml +++ b/charts/connect/values.yaml @@ -62,10 +62,10 @@ connect: # The type of Service resource to create for the Connect API and sync services. # See: https://kubernetes.io/docs/concepts/services-networking/service - # This by default is NodePort and can also be defined as LoadBalancer. + # This by default is ClusterIP and can also be defined as NodePort or LoadBalancer. # If serviceType is LoadBalancer then loadBalancerSourceRanges and loadBalancerIP should be defined. # See: https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer - serviceType: NodePort + serviceType: ClusterIP # Additional annotations to be added to the service resource serviceAnnotations: {}