Skip to content

Commit

Permalink
Merge pull request #612 from qld-gov-au/QOLDEV-1006-mog-redirects
Browse files Browse the repository at this point in the history
[QOLDEV-1006] update cookbook
  • Loading branch information
ThrawnCA authored Nov 20, 2024
2 parents 8ff4658 + 538bd3e commit ae74558
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test:
strategy:
fail-fast: true
fail-fast: false
matrix:
application: [OpenData, Publications]
python-version: [py3]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
test:
strategy:
fail-fast: true
fail-fast: false
matrix:
application: [OpenData, Publications]
python-version: [py3]
Expand Down
6 changes: 4 additions & 2 deletions bin/init-OpenData.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,7 @@ if (ckan_cli datarequests --help); then
fi
fi

#Initialise the Harvester database tables
ckan_cli harvester initdb
#Initialise the Harvester database tables if applicable
if (ckan_cli harvester initdb --help); then
ckan_cli harvester initdb
fi
2 changes: 1 addition & 1 deletion vars/CKAN-Stack.var.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ common_stack: &common_stack
EnableDataStore: "{{ enable_datastore | default('no') }}"
SSMKey: "{{ SSMKey | default('') }}"
DefaultEC2Key: "{{ lookup('aws_ssm', '/config/CKAN/ec2KeyPair', region=region) }}"
CookbookRevision: "{{ CookbookRevision | default('8.0.0') }}"
CookbookRevision: "{{ CookbookRevision | default('9.0.0') }}"
LogBucketName: "{{ lookup('aws_ssm', '/config/CKAN/s3LogsBucket', region=region) }}"
AttachmentsBucketName: "{{ lookup('aws_ssm', '/config/CKAN/' + Environment + '/app/' + service_name_lower + '/s3AttachmentBucket', region=region) }}" #/config/CKAN/PROD/app/opendata/s3AttachmentBucket
SolrSource: "{{ solr_url }}"
Expand Down

0 comments on commit ae74558

Please sign in to comment.