Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CRS Conversion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Reference and Helper Services
CRS Conversion
Commits
e4604cfe
Commit
e4604cfe
authored
4 years ago
by
Sumra Zafar
Browse files
Options
Downloads
Patches
Plain Diff
Adding presistant storage
parent
f7d4ff7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!18
Resolve "Azure Test Failing"
Pipeline
#21092
failed
4 years ago
Stage: .pre
Stage: review
Stage: build
Stage: containerize
Stage: scan
Stage: deploy
Stage: integration
Stage: attribution
Changes
3
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+2
-1
2 additions, 1 deletion
.gitlab-ci.yml
devops/azure/chart/templates/crs-conversion-pvc.yml
+43
-0
43 additions, 0 deletions
devops/azure/chart/templates/crs-conversion-pvc.yml
devops/azure/chart/templates/deployment.yaml
+3
-0
3 additions, 0 deletions
devops/azure/chart/templates/deployment.yaml
with
48 additions
and
1 deletion
.gitlab-ci.yml
+
2
−
1
View file @
e4604cfe
...
...
@@ -5,7 +5,8 @@ variables:
AZURE_BUILD_SUBDIR
:
provider/crs-converter-azure/crs-converter-aks
AZURE_TEST_SUBDIR
:
testing/crs_converter_test_azure
AZURE_TEST_TYPE
:
python
ESRI_DATA_PATH
:
provider/crs-converter-azure/crs-converter-aks
ESRI_DATA_PATH
:
/crs
SHARE_NAME
:
crs
AWS_BUILD_SUBDIR
:
provider/crs-converter-aws/build-aws
AWS_TEST_SUBDIR
:
testing/crs_converter_test_aws
...
...
This diff is collapsed.
Click to expand it.
devops/azure/chart/templates/crs-conversion-pvc.yml
0 → 100644
+
43
−
0
View file @
e4604cfe
apiVersion
:
v1
kind
:
PersistentVolume
metadata
:
name
:
crs-pv
namespace
:
osdu
labels
:
usage
:
crs-pv
spec
:
capacity
:
storage
:
5Gi
accessModes
:
-
ReadOnlyMany
azureFile
:
secretName
:
airflow
shareName
:
crs
volumeMode
:
Filesystem
mountOptions
:
-
dir_mode=0777
-
file_mode=0777
-
uid=1000
-
gid=1000
-
mfsymlinks
-
nobrl
---
apiVersion
:
v1
kind
:
PersistentVolumeClaim
metadata
:
name
:
crs-pvc
namespace
:
osdu
# Set this annotation to NOT let Kubernetes automatically create
# a persistent volume for this volume claim.
annotations
:
volume.beta.kubernetes.io/storage-class
:
"
"
spec
:
accessModes
:
-
ReadOnlyMany
resources
:
requests
:
storage
:
5Gi
selector
:
matchLabels
:
usage
:
crs-pv
This diff is collapsed.
Click to expand it.
devops/azure/chart/templates/deployment.yaml
+
3
−
0
View file @
e4604cfe
...
...
@@ -43,6 +43,9 @@ spec:
readOnly
:
true
volumeAttributes
:
secretProviderClass
:
azure-keyvault
-
name
:
shared-data
persistentVolumeClaim
:
claimName
:
crs-pvc
containers
:
-
name
:
{{
.Chart.Name
}}
image
:
"
{{
.Values.image.repository
}}/{{
.Chart.Name
}}-{{
.Values.image.branch
}}:{{
.Values.image.tag
|
default
.Chart.AppVersion
}}"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment