Skip to content

Commit

Permalink
Update values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
barrfalk committed Jul 13, 2024
1 parent 0bf6467 commit dee11ad
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions charts/app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,31 +103,6 @@ backend:
enabled: false # enable it in PRODUCTION for having pod disruption budget.
minAvailable: 1 # the minimum number of pods that must be available during the disruption budget.

#-- the components of the application, backend.
webeoc:
#-- enable or disable backend
enabled: true
#-- the deployment strategy, can be "Recreate" or "RollingUpdate"
deploymentStrategy: Recreate
#-- autoscaling for the component. it is optional and is an object.
autoscaling:
#-- enable or disable autoscaling.
enabled: true
#-- the minimum number of replicas.
minReplicas: 1
#-- the maximum number of replicas.
maxReplicas: 2
#-- the target cpu utilization percentage, is from request cpu and NOT LIMIT CPU.
targetCPUUtilizationPercentage: 80
service:
#-- the type of the service. it can be ClusterIP, NodePort, LoadBalancer, ExternalName. ClusterIP is the default and is recommended.
type: ClusterIP
port: 80 # this is the service port, where it will be exposed internal to the namespace.
targetPort: 3002 # this is container port where app listens on
pdb:
enabled: false # enable it in PRODUCTION for having pod disruption budget.
minAvailable: 1 # the minimum number of pods that must be available during the disruption budget.

frontend:
# -- enable or disable a component deployment.
enabled: true
Expand Down Expand Up @@ -373,3 +348,28 @@ backup:
requests:
cpu: 20m
memory: 128Mi

#-- the components of the application, backend.
webeoc:
#-- enable or disable backend
enabled: true
#-- the deployment strategy, can be "Recreate" or "RollingUpdate"
deploymentStrategy: Recreate
#-- autoscaling for the component. it is optional and is an object.
autoscaling:
#-- enable or disable autoscaling.
enabled: true
#-- the minimum number of replicas.
minReplicas: 1
#-- the maximum number of replicas.
maxReplicas: 2
#-- the target cpu utilization percentage, is from request cpu and NOT LIMIT CPU.
targetCPUUtilizationPercentage: 80
service:
#-- the type of the service. it can be ClusterIP, NodePort, LoadBalancer, ExternalName. ClusterIP is the default and is recommended.
type: ClusterIP
port: 80 # this is the service port, where it will be exposed internal to the namespace.
targetPort: 3002 # this is container port where app listens on
pdb:
enabled: false # enable it in PRODUCTION for having pod disruption budget.
minAvailable: 1 # the minimum number of pods that must be available during the disruption budget.

0 comments on commit dee11ad

Please sign in to comment.