n3ziniuka5
05/21/2024, 5:16 PMService.type
for clusters deployed with the Kubernetes operator? It defaults to ClusterIP
, I wonder if it's possible to set it to LoadBalancer
. We have some services outside of Kubernetes that will also need to access SpiceDB until we move them to Kubernetes.vroldanbet
05/21/2024, 5:49 PMpatches
in your `SpiceDBCluster.spec`:
spec:
config:
// all your config
patches:
- kind: Service
patch:
spec:
type: "LoadBalancer"
vroldanbet
05/21/2024, 5:50 PMn3ziniuka5
05/21/2024, 6:31 PM