Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
CI-CD Pipelines
Commits
449368ec
Commit
449368ec
authored
Jan 12, 2021
by
David Diederich
Browse files
Merge branch 'cherry-pick-
889d7161
' into 'release/0.4'
Merge branch 'azure-copy-sis-data' into 'master' See merge request
!155
parents
d07877cd
79a69b2a
Pipeline
#21399
passed with stage
in 15 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
cloud-providers/azure.yml
View file @
449368ec
...
...
@@ -181,6 +181,18 @@ azure_deploy:
-
az login --service-principal -u $AZURE_PRINCIPAL_ID -p $AZURE_PRINCIPAL_SECRET --tenant $AZURE_TENANT_ID
-
az aks get-credentials -g $AZURE_UNIQUE-rg -n $AZURE_UNIQUE-aks
script
:
#Update Crs Conversion Service Copy Dataset
-
|
search_dir="apachesis_setup/SIS_DATA"
if [ -d "$search_dir" ]; then
echo "Starting to upload files for CRS Conversion Service"
accountKey=$(kubectl get secret airflow -n osdu -o jsonpath='{.data.azurestorageaccountkey}' | base64 -d)
accountName=$(kubectl get secret airflow -n osdu -o jsonpath='{.data.azurestorageaccountname}' | base64 -d)
find "$search_dir/" -type f -print0 | while read -d $'\0' file; do
az storage file upload --account-name $accountName --account-key $accountKey --share-name $SHARE_NAME --source $file
done
echo "File upload successfully completed for CRS Conversion Service"
fi
-
cd devops/azure
-
echo "--set image.branch=$BRANCH --set image.tag=$TAG"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment