Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testing #16

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
context: .
file: WebApplication1/Dockerfile
push: true
tags: mabusaa/argocd-course-webapp:${{ github.sha }}
tags: rushualv/argocd-course-webapp:${{ github.sha }}
promote-to-dev-environment:
runs-on: ubuntu-latest
needs: docker-build-push
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
context: .
file: WebApplication1/Dockerfile
push: true
tags: mabusaa/argocd-course-webapp:${{ github.event.pull_request.head.sha }}
tags: rushualv/argocd-course-webapp:${{ github.event.pull_request.head.sha }}
update-image-tag-in-helm:
runs-on: ubuntu-latest
needs: docker-build-push
Expand Down
3 changes: 1 addition & 2 deletions WebApplication1/Pages/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
}

<div class="text-center">
<h1 class="display-4">Welcome to this demo</h1>
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
<h1 class="display-4">Welcome to this demo made by Roman Mudrikuv from Lviv Ukraine WGB</h1>
</div>
2 changes: 1 addition & 1 deletion WebApplication1/Pages/Privacy.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
}
<h1>@ViewData["Title"]</h1>

<p>Use this page to detail your site's privacy policy.</p>
<p>World Bank privacy page.</p>
4 changes: 2 additions & 2 deletions WebApplication1/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<footer class="border-top footer text-muted">
<div class="container">
&copy; 2022 - WebApplication1 - <a asp-area="" asp-page="/Privacy">Privacy</a>
&copy; 2023 - WebApplication1
</div>
</footer>

Expand All @@ -48,4 +48,4 @@

@await RenderSectionAsync("Scripts", required: false)
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions helm/webapp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
replicaCount: 1

image:
repository: mabusaa/argocd-course-webapp
repository: rushualv/argocd-course-webapp
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "9dbc07045cd3502b9863803b21356cd5ec2a93eb"
tag: "bfb63d4ac077b5d1417466c6b61c3cc4e57d3f1b"

imagePullSecrets: []
nameOverride: ""
Expand Down