Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Legal
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
Security and Compliance
Legal
Merge requests
!47
Added support for Azure AKS Pipelines
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added support for Azure AKS Pipelines
azure-aks
into
master
Overview
0
Commits
1
Pipelines
2
Changes
6
Merged
Daniel Scholl (MS]
requested to merge
azure-aks
into
master
4 years ago
Overview
0
Commits
1
Pipelines
2
Changes
6
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
27eef5a2
1 commit,
4 years ago
6 files
+
360
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
devops/azure/chart/templates/deployment.yaml
0 → 100644
+
120
−
0
Options
# Copyright © Microsoft Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
name
:
{{
.Release.Name
}}
namespace
:
osdu
spec
:
replicas
:
{{
.Values.global.replicaCount
}}
selector
:
matchLabels
:
app
:
{{
.Chart.Name
}}
template
:
metadata
:
labels
:
app
:
{{
.Chart.Name
}}
aadpodidbinding
:
osdu-identity
spec
:
volumes
:
-
name
:
azure-keyvault
csi
:
driver
:
secrets-store.csi.k8s.io
readOnly
:
true
volumeAttributes
:
secretProviderClass
:
azure-keyvault
containers
:
-
name
:
{{
.Chart.Name
}}
image
:
{{
.Values.image.repository
}}
/{{ .Chart.Name }}-{{ .Values.image.branch }}:{{ .Values.image.tag | default .Chart.AppVersion }}
imagePullPolicy
:
Always
ports
:
-
containerPort
:
80
readinessProbe
:
httpGet
:
path
:
/api/legal/v1/swagger-ui.html
port
:
80
volumeMounts
:
-
name
:
azure-keyvault
mountPath
:
"
/mnt/azure-keyvault"
readOnly
:
true
env
:
-
name
:
spring_application_name
value
:
legal
-
name
:
server.servlet.contextPath
value
:
/api/legal/v1/
-
name
:
server_port
value
:
"
80"
-
name
:
ACCEPT_HTTP
# TEMPORARY UNTIL HTTPS
value
:
"
true"
-
name
:
KEYVAULT_URI
valueFrom
:
configMapKeyRef
:
name
:
osdu-svc-properties
key
:
ENV_KEYVAULT
-
name
:
AZURE_CLIENT_ID
valueFrom
:
secretKeyRef
:
name
:
clientid
key
:
clientid
-
name
:
AZURE_CLIENT_SECRET
valueFrom
:
secretKeyRef
:
name
:
clientpassword
key
:
clientpassword
-
name
:
AZURE_TENANT_ID
valueFrom
:
configMapKeyRef
:
name
:
osdu-svc-properties
key
:
ENV_TENANT_ID
-
name
:
aad_client_id
valueFrom
:
secretKeyRef
:
name
:
appid
key
:
appid
-
name
:
appinsights_key
valueFrom
:
secretKeyRef
:
name
:
appinsights
key
:
appinsights
-
name
:
servicebus_namespace_name
valueFrom
:
configMapKeyRef
:
name
:
osdu-svc-properties
key
:
ENV_SERVICEBUS_NAMESPACE
-
name
:
storage_account
valueFrom
:
configMapKeyRef
:
name
:
osdu-svc-properties
key
:
ENV_STORAGE_ACCOUNT
-
name
:
azure_activedirectory_session_stateless
value
:
"
true"
-
name
:
azure_activedirectory_AppIdUri
value
:
"
api://$(aad_client_id)"
-
name
:
cosmosdb_database
value
:
osdu-db
-
name
:
LOG_PREFIX
value
:
legal
-
name
:
azure_storage_container_name
value
:
legal-service-azure-configuration
-
name
:
azure_storage_enable_https
value
:
"
true"
-
name
:
legal_service_region
value
:
us
-
name
:
servicebus_topic_name
value
:
legaltags
-
name
:
entitlements_service_endpoint
value
:
http://entitlements-azure/entitlements/v1
-
name
:
entitlements_service_api_key
value
:
"
OBSOLETE"
Loading