Skip to content

Commit

Permalink
Update values.yaml with enhanced service configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdots committed Dec 4, 2024
1 parent 3f3389d commit a17fda7
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions charts/app-template/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,28 @@ application:

## Service configuration
service:
# -- Service type
# -- Service type (ClusterIP, NodePort, LoadBalancer)
type: ClusterIP
# -- Service port
port: 80
# -- Additional service labels
labels: {}
# -- Service annotations
annotations: {}
# -- Service ports configuration
ports:
- port: 80
targetPort: http
protocol: TCP
name: http
# -- LoadBalancer IP (optional)
loadBalancerIP: ""
# -- Load balancer source ranges (optional)
loadBalancerSourceRanges: []
# -- External traffic policy (Local or Cluster)
externalTrafficPolicy: ""
# -- Specific cluster IP (optional)
clusterIP: ""
# -- Additional selector labels (optional)
selector: {}

## Ingress configuration
ingress:
Expand Down

0 comments on commit a17fda7

Please sign in to comment.