Skip to content

Commit

Permalink
fix: correct values to inject
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Jun 10, 2022
1 parent 8c8b389 commit bcc5de9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,11 @@ jobs:
-f ./.pipeline/deploy/as-k8s/dependencies.schema.yml \
-f ./.pipeline/deploy/as-k8s/dependencies.yml \
-f ./manifests/dependencies/dev.yml \
--data-value postgres.helm.auth.database=${{steps.deploy_setup.outputs.deploy_repository}} \
--data-value postgres.helm.auth.username=${{steps.deploy_setup.outputs.deploy_repository}} \
--data-value mysql.values.auth.database=${{steps.deploy_setup.outputs.deploy_repository}} \
--data-value mysql.values.auth.username=${{steps.deploy_setup.outputs.deploy_repository}} \
--data-value postgres.values.auth.database=${{steps.deploy_setup.outputs.deploy_repository}} \
--data-value postgres.values.auth.username=${{steps.deploy_setup.outputs.deploy_repository}} \
--data-value rabbitmq.values.auth.username=${{steps.deploy_setup.outputs.deploy_repository}} \
> ./manifests/k8s-dependencies.yml
- name: Docs | Dependencies
Expand Down
8 changes: 4 additions & 4 deletions test/concerns/dependencies-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ mysql:
values:
primary:
persistence:
size: 1Gi
size: 12Gi

postgres:
enabled: true
values:
primary:
persistence:
size: 1Gi
size: 23Gi

rabbitmq:
enabled: true
values:
persistence:
size: 1Gi
size: 34Gi

elasticsearch:
enabled: true
values:
master:
persistence:
size: 1Gi
size: 45Gi

redis:
enabled: true

0 comments on commit bcc5de9

Please sign in to comment.