mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-09 19:58:07 +03:00
registry: service add clusterIP, nodePort, loadBalancer support (#8291)
* registry: service add clusterIP, nodePort, loadBalancer support * modify camelcase name to underscore * Add registry service type compatibility check
This commit is contained in:
@@ -5,6 +5,18 @@ registry_storage_access_mode: "ReadWriteOnce"
|
||||
registry_disk_size: "10Gi"
|
||||
registry_port: 5000
|
||||
registry_replica_count: 1
|
||||
|
||||
# type of service: ClusterIP, LoadBalancer or NodePort
|
||||
registry_service_type: "ClusterIP"
|
||||
# you can specify your cluster IP address when registry_service_type is ClusterIP
|
||||
registry_service_cluster_ip: ""
|
||||
# you can specify your cloud provider assigned loadBalancerIP when registry_service_type is LoadBalancer
|
||||
registry_service_loadbalancer_ip: ""
|
||||
# annotations for managing Cloud Load Balancers
|
||||
registry_service_annotations: {}
|
||||
# you can specify the node port when registry_service_type is NodePort
|
||||
registry_service_nodeport: ""
|
||||
|
||||
# name of kubernetes secret for registry TLS certs
|
||||
registry_tls_secret: ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user