Skip to content

Commit

Permalink
Merge pull request #1 from fitchtech/feat/pipelineTemplates
Browse files Browse the repository at this point in the history
Release Version 1 of AzurePipelines
  • Loading branch information
fitchtech authored Feb 25, 2021
2 parents 1278dc6 + 7ebd9c6 commit 77470ad
Show file tree
Hide file tree
Showing 56 changed files with 7,102 additions and 1,958 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode/settings.json
347 changes: 339 additions & 8 deletions README.md

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions assets/docker/aspnet.dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ARG registry=harbor.pks.tm.dev1.premera.cloud
ARG repository=baseimages/dotnet/core/aspnet
ARG tag=3.1-bionic
ARG componentName=default
ARG registry=mcr.microsoft.com
ARG repository=dotnet/aspnet
ARG tag=3.1-focal
ARG copy=.
ARG entrypoint=app.dll
FROM ${registry}/${repository}:${tag}
ENV copyPath=/Publish/$componentName
ENV entrypointPath=$componentName.dll
ENV entrypoint=${entrypoint}
EXPOSE 80
EXPOSE 443
USER 9000
WORKDIR /app
COPY $copyPath .
ENTRYPOINT ["dotnet", $entrypointPath]
COPY ${copy} .
ENTRYPOINT ["dotnet", "${entrypoint}"]
File renamed without changes.
20 changes: 0 additions & 20 deletions assets/kubernetes/overlays/dint/cpuLimits.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions assets/kubernetes/overlays/dint/kustomization.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions assets/kubernetes/overlays/dint/replicas.yaml

This file was deleted.

File renamed without changes.
146 changes: 0 additions & 146 deletions docs/pipeline.md

This file was deleted.

Loading

0 comments on commit 77470ad

Please sign in to comment.