Skip to content

Commit

Permalink
ph-eye
Browse files Browse the repository at this point in the history
  • Loading branch information
JessieAMorris committed Dec 6, 2024
1 parent b23027c commit a190091
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/philter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.7
version: 0.1.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
86 changes: 86 additions & 0 deletions charts/philter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,89 @@ ui:
# whenUnsatisfiable: ScheduleAnyway

affinity: {}

phEye:
enabled: true

replicaCount: 1

image:
repository: philterd/ph-eye
pullPolicy: IfNotPresent
tag: "1.2.1"

podAnnotations: {}
podLabels: {}

podSecurityContext: {}
# fsGroup: 2000

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000

env: []

apiEndpointOverride:

service:
type: ClusterIP
port: 5000

resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
livenessProbe:
httpGet:
path: /status
port: http
readinessProbe:
httpGet:
path: /status
port: http

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

# Additional volumes on the Deployment definition.
volumes: []
# - name: foo
# secret:
# secretName: mysecret
# optional: false

# Additional volumeMounts on the output Deployment definition.
volumeMounts: []
# - name: foo
# mountPath: "/etc/foo"
# readOnly: true

nodeSelector: {}

tolerations: []

topologySpread: {}
# zone:
# enabled: false
# maxSkew: 1
# whenUnsatisfiable: ScheduleAnyway
# node:
# enabled: false
# maxSkew: 3
# whenUnsatisfiable: ScheduleAnyway

affinity: {}

0 comments on commit a190091

Please sign in to comment.