mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Merge branch 'feature/docker-multi-label' into develop
This commit is contained in:
@@ -121,12 +121,13 @@ jobs:
|
||||
command: 'build'
|
||||
Dockerfile: Dockerfile
|
||||
buildContext:
|
||||
tags: 'debug-$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
tags: '$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
arguments: |
|
||||
--no-cache
|
||||
--target publish
|
||||
--build-arg SEMVERSION=$(Major).$(Minor).$(Patch)
|
||||
--build-arg BuildUniqueID=$(BuildUniqueID)
|
||||
--label BuildType=Debug
|
||||
|
||||
- task: Docker@2
|
||||
displayName: 'push ISAClient Debug'
|
||||
@@ -134,7 +135,7 @@ jobs:
|
||||
containerRegistry: 'Harbor isa'
|
||||
repository: 'isa/ui'
|
||||
command: 'push'
|
||||
tags: 'debug-$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
tags: '$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: 'Artefakt veröffentlichen: HelmValues'
|
||||
@@ -182,13 +183,14 @@ jobs:
|
||||
command: 'build'
|
||||
Dockerfile: Dockerfile
|
||||
buildContext:
|
||||
tags: 'prod-$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
tags: '$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
arguments: |
|
||||
--no-cache
|
||||
--target publish
|
||||
--build-arg IS_PRODUCTION=true
|
||||
--build-arg SEMVERSION=$(Major).$(Minor).$(Patch)
|
||||
--build-arg BuildUniqueID=$(BuildUniqueID)
|
||||
--label BuildType=Production
|
||||
|
||||
- task: Docker@2
|
||||
displayName: 'push ISAClient Prod'
|
||||
@@ -196,7 +198,8 @@ jobs:
|
||||
containerRegistry: 'Harbor isa'
|
||||
repository: 'isa/ui'
|
||||
command: 'push'
|
||||
tags: 'prod-$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
tags: '$(Build.BuildNumber)-$(Build.SourceVersion)'
|
||||
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: 'Artefakt veröffentlichen: HelmValues'
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
fullnameOverride: isa-ui-feature
|
||||
image:
|
||||
harborRepo: isa/ui
|
||||
tag: debug-%BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
tag: %BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
|
||||
ingress:
|
||||
enabled: true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
fullnameOverride: isa-ui
|
||||
image:
|
||||
harborRepo: isa/ui
|
||||
tag: prod-%BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
tag: %BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
|
||||
ingress:
|
||||
enabled: true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
fullnameOverride: isa-ui
|
||||
image:
|
||||
harborRepo: isa/ui
|
||||
tag: prod-%BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
tag: %BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
|
||||
replicaCount: 2
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
fullnameOverride: isa-ui
|
||||
image:
|
||||
harborRepo: isa/ui
|
||||
tag: prod-%BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
tag: %BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
|
||||
replicaCount: 2
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
fullnameOverride: isa-ui
|
||||
image:
|
||||
harborRepo: isa/ui
|
||||
tag: debug-%BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
tag: %BUILD_BUILDNUMBER%-%BUILD_SOURCEVERSION%
|
||||
|
||||
ingress:
|
||||
enabled: true
|
||||
|
||||
Reference in New Issue
Block a user