Spaces:
Sleeping
Sleeping
File size: 565 Bytes
287a0bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# These kubernetes manifests are UNDER ACTIVE DEVELOPMENT and are not yet ready for production use.
# They will be used for the upcoming distributed version of chroma. They are not even ready
# for testing yet. Please do not use them unless you are working on the distributed version of chroma.
apiVersion: v1
kind: Service
metadata:
name: pulsar-lb
namespace: chroma
spec:
ports:
- name: pulsar-port
port: 6650
targetPort: 6650
- name: admin-port
port: 8080
targetPort: 8080
selector:
app: pulsar
type: LoadBalancer
|