One way of exposing Pods on CKS to the public Internet is to use aDocumentation Index
Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt
Use this file to discover all available pages before exploring further.
LoadBalancer Service. These Services expose Pods to the Internet via public IPv4 addresses. Additionally, public DNS names can also optionally be assigned to them.
Create a Load Balancer Service
Create the manifest
A Service oftype: LoadBalancer is created by deploying a Service manifest onto CKS. Here is a sample manifest:
loadbalancer-example.yaml
- The Service (
example-sshd) is configured astype: LoadBalancer. - The
coreweave-load-balancer-typeannotation ispublic.
The address assigned to the Service is the next available address from CoreWeave’s default egress IP addresses for each Region.
Deploy the manifest
Apply the manifest usingkubectl. For example:
Locate the IPv4 address
After the manifest is applied, usedescribe to see the deployed Service, for example:
LoadBalancer Ingress field.
For more information, see the official Kubernetes documentation.