Skip to content

Commit 77470ad

Browse files
authored
Merge pull request #1 from fitchtech/feat/pipelineTemplates
Release Version 1 of AzurePipelines
2 parents 1278dc6 + 7ebd9c6 commit 77470ad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+7102
-1958
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode/settings.json

README.md

Lines changed: 339 additions & 8 deletions
Large diffs are not rendered by default.

assets/docker/aspnet.dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
ARG registry=harbor.pks.tm.dev1.premera.cloud
2-
ARG repository=baseimages/dotnet/core/aspnet
3-
ARG tag=3.1-bionic
4-
ARG componentName=default
1+
ARG registry=mcr.microsoft.com
2+
ARG repository=dotnet/aspnet
3+
ARG tag=3.1-focal
4+
ARG copy=.
5+
ARG entrypoint=app.dll
56
FROM ${registry}/${repository}:${tag}
6-
ENV copyPath=/Publish/$componentName
7-
ENV entrypointPath=$componentName.dll
7+
ENV entrypoint=${entrypoint}
88
EXPOSE 80
99
EXPOSE 443
1010
USER 9000
1111
WORKDIR /app
12-
COPY $copyPath .
13-
ENTRYPOINT ["dotnet", $entrypointPath]
12+
COPY ${copy} .
13+
ENTRYPOINT ["dotnet", "${entrypoint}"]

assets/kubernetes/overlays/dint/cpuLimits.yaml

Lines changed: 0 additions & 20 deletions
This file was deleted.

assets/kubernetes/overlays/dint/kustomization.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

assets/kubernetes/overlays/dint/replicas.yaml

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/pipeline.md

Lines changed: 0 additions & 146 deletions
This file was deleted.

0 commit comments

Comments
 (0)