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
Security and Compliance
entitlements-azure
Commits
9cb9055e
Commit
9cb9055e
authored
May 06, 2020
by
Daniel Scholl
Browse files
Added Capability and Readme instructions for manual deployment of service
#1
parent
8f7c8080
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
.envrc.template
View file @
9cb9055e
...
...
@@ -30,3 +30,14 @@ export ENTITLEMENT_MEMBER_NAME_INVALID=
export ENTITLEMENT_MEMBER_NAME_VALID=
export ENTITLEMENT_GROUP_NAME_VALID=
##
# Needed to manually deploy a service
##
export AZURE_TENANT_ID=
export AZURE_CLIENT_ID=
export AZURE_CLIENT_SECRET=
export AZURE_RESOURCE_GROUP=
export AZURE_APPSERVICE_PLAN=
export AZURE_APPSERVICE_NAME=
.mvn/community-maven.settings.xml
View file @
9cb9055e
<settings>
<profiles>
<profile>
<!-- This profile uses the CI-Token to authenticate with the server, and is the default case -->
<id>
GitLab-Authenticate-With-Job-Token
</id>
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
<properties>
<gitlab-server>
community-maven-via-job-token
</gitlab-server>
</properties>
</profile>
<profiles>
<profile>
<!-- This profile uses the CI-Token to authenticate with the server, and is the default case -->
<id>
GitLab-Authenticate-With-Job-Token
</id>
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
<properties>
<gitlab-server>
community-maven-via-job-token
</gitlab-server>
</properties>
</profile>
<profile>
<!-- This profile uses a personal token to authenticate, which is useful for local or manual runs. The
<profile>
<!-- This profile uses a personal token to authenticate, which is useful for local or manual runs. The
presence of the COMMUNITY_MAVEN_TOKEN variable triggers this and overrides the CI Token
based authentication -->
<id>
GitLab-Authenticate-With-Private-Token
</id>
<activation>
<property>
<name>
env.COMMUNITY_MAVEN_TOKEN
</name>
</property>
</activation>
<properties>
<gitlab-server>
community-maven-via-private-token
</gitlab-server>
</properties>
</profile>
</profiles>
<id>
GitLab-Authenticate-With-Private-Token
</id>
<activation>
<property>
<name>
env.COMMUNITY_MAVEN_TOKEN
</name>
</property>
</activation>
<properties>
<gitlab-server>
community-maven-via-private-token
</gitlab-server>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>
community-maven-via-job-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Job-Token
</name>
<value>
${env.CI_JOB_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<servers>
<server>
<id>
community-maven-via-job-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Job-Token
</name>
<value>
${env.CI_JOB_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<server>
<id>
community-maven-via-private-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Private-Token
</name>
<value>
${env.COMMUNITY_MAVEN_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
</servers>
<server>
<id>
community-maven-via-private-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Private-Token
</name>
<value>
${env.COMMUNITY_MAVEN_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<server>
<id>
azure-auth
</id>
<configuration>
<tenant>
${env.AZURE_TENANT_ID}
</tenant>
<client>
${env.AZURE_CLIENT_ID}
</client>
<key>
${env.AZURE_CLIENT_SECRET}
</key>
<environment>
AZURE
</environment>
</configuration>
</server>
</servers>
</settings>
README.md
View file @
9cb9055e
This diff is collapsed.
Click to expand it.
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