Skip to content

Commit

Permalink
ACS-8607: Create Helm chart for live-ingester - adding way to specify…
Browse files Browse the repository at this point in the history
… custom app port
  • Loading branch information
krdabrowski committed Aug 28, 2024
1 parent c5593e0 commit 06897ab
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions charts/alfresco-connector-hxi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ liveIngester:
repository: quay.io/alfresco/alfresco-hxinsight-connector-live-ingester
tag: 1.0.0-A11
pullPolicy: IfNotPresent
internalPort: 8080
internalPort: &appPort 80
replicaCount: 1
strategy:
rollingUpdate:
Expand All @@ -24,21 +24,22 @@ liveIngester:
limits:
cpu: "2"
memory: "2048Mi"
environment:
SERVER_PORT: *appPort
livenessProbe:
initialDelaySeconds: 30
httpGet:
path: /actuator/health/liveness
port: 8080
port: *appPort
readinessProbe:
initialDelaySeconds: 40
httpGet:
path: /actuator/health/liveness
port: 8080
environment: null
port: *appPort
service:
name: hxi-live-ingester-service
type: ClusterIP
externalPort: 8080
externalPort: 80
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
Expand Down

0 comments on commit 06897ab

Please sign in to comment.