Skip to content

Commit

Permalink
Change params in ConfigMap
Browse files Browse the repository at this point in the history
  • Loading branch information
cant-code committed Mar 25, 2024
1 parent 3bdd8c2 commit ac4a2fa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,7 @@ USER appuser
# Expose the port that the application listens on.
EXPOSE 8080

WORKDIR /bin

# What the container should run when it is started.
ENTRYPOINT [ "/bin/app" ]
10 changes: 5 additions & 5 deletions charts/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ metadata:
data:
config.yml: |
mq:
host: localhost
host: artemis-service.artemis-dev.svc.cluster.local
port: 61616
user: artemis
password: artemis
jobs:
transcodingQueue: jms/transcoderQueue
managementQueue: jms/managementQueue
aws:
baseUrl: http://localhost:9000
baseUrl: http://minio-service.minio-dev.svc.cluster.local:9000
region: ap-south-1
buckets:
rawVideos: raw-videos
transcodedVideos: transcoded-videos
db:
url: localhost:5432
username: postgres
password: pass
url: postgres-postgresql.postgres.svc.cluster.local:5432
username: service_user
password: test_service_user
5 changes: 5 additions & 0 deletions charts/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ spec:
hostPort: 8080
protocol: TCP
name: http
env:
- name: AWS_ACCESS_KEY_ID
value: QGKVpdtxKQwULEXAdCHA
- name: AWS_SECRET_ACCESS_KEY
value: ASDpc89UINueq44CoTKIyqPv3GLvCf5tO4TDOp7N
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
Expand Down

0 comments on commit ac4a2fa

Please sign in to comment.