Skip to content

Commit

Permalink
fix omeka deploy namespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
orangewolf committed Nov 24, 2024
1 parent e2a4f81 commit d5ac81c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
export DEPLOY_IMAGE=ghcr.io/${REPO_LOWER};
export WORKER_IMAGE=ghcr.io/${REPO_LOWER}/worker;
export SOLR_IMAGE=ghcr.io/${REPO_LOWER}/solr;
./bin/helm_deploy ${{ inputs.environment || format('{0}-{1}', github.event.repository.name, inputs.environment) }} ${{ inputs.environment || format('{0}-{1}', github.event.repository.name, inputs.environment) }}
./bin/helm_deploy ${{ format('{0}-{1}', github.event.repository.name, inputs.environment) }} ${{ format('{0}-{1}', github.event.repository.name, inputs.environment) }}
- name: Do deploy
if: ${{ inputs.deploy-solr-image }} == 'false'
run: |
Expand All @@ -108,4 +108,4 @@ jobs:
export DEPLOY_TAG=${TAG};
export DEPLOY_IMAGE=ghcr.io/${REPO_LOWER};
export WORKER_IMAGE=ghcr.io/${REPO_LOWER}/worker;
./bin/helm_deploy ${{ inputs.environment || format('{0}-{1}', github.event.repository.name, inputs.environment) }} ${{ inputs.environment || format('{0}-{1}', github.event.repository.name, inputs.environment) }}
./bin/helm_deploy ${{ format('{0}-{1}', github.event.repository.name, inputs.environment) }} ${{ format('{0}-{1}', github.event.repository.name, inputs.environment) }}
2 changes: 1 addition & 1 deletion ops/production-deploy.tmpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ingress:

env:
configmap:
DB_HOST: production-mariadb
DB_HOST: atla-omeka-production-mariadb
DB_NAME: omeka
DB_PASSWORD: $DB_PASSWORD
DB_PORT: 3306
Expand Down

0 comments on commit d5ac81c

Please sign in to comment.