Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f715c50306 | |||
| 7fc448d525 | |||
| fcd8c2ede7 | |||
| 8f48e11738 | |||
| 9ae11b9b03 | |||
| a44dcdb8f8 | |||
| 56f967c6e4 | |||
| bb42713fb2 | |||
| 58312d489b | |||
| 3beebe16d3 | |||
| 6757eb342e | |||
| 5ace2129e1 | |||
| e0a98bee0b | |||
| c6f64b78aa | |||
| 967130e724 | |||
| 2bf2d79739 | |||
| 6cee984d7b |
+20
-5
@@ -31,20 +31,37 @@ steps:
|
||||
registry: nexus.khongisa.co.za
|
||||
repo: nexus.khongisa.co.za/litecharms-shop
|
||||
tags: [ latest, "1.${DRONE_BUILD_NUMBER}" ]
|
||||
custom_labels:
|
||||
- org.opencontainers.image.source=https://gitea.khongisa.co.za/litecharms/litecharms-shop
|
||||
- org.opencontainers.image.version=1.${DRONE_BUILD_NUMBER}
|
||||
- org.opencontainers.image.revision=${DRONE_COMMIT_SHA}
|
||||
username: { from_secret: docker_username }
|
||||
password: { from_secret: docker_password }
|
||||
|
||||
- name: gitea-tag
|
||||
- name: gitea-tag-release
|
||||
image: alpine/git
|
||||
environment:
|
||||
GITEA_TOKEN: { from_secret: git_token }
|
||||
GITEA_USER: { from_secret: git_username }
|
||||
GITEA_PASS: { from_secret: git_password }
|
||||
commands:
|
||||
- git config --global user.email "drone@litecharms.co.za"
|
||||
- git config --global user.name "Drone CI"
|
||||
- echo "169.255.58.144 gitea.khongisa.co.za" >> /etc/hosts
|
||||
- apk add --no-cache curl
|
||||
- git remote set-url origin https://$${GITEA_USER}:$${GITEA_PASS}@gitea.khongisa.co.za/litecharms/litecharmsshop.git
|
||||
- git tag 1.${DRONE_BUILD_NUMBER}
|
||||
- git push origin 1.${DRONE_BUILD_NUMBER}
|
||||
- |
|
||||
curl -X POST "https://gitea.khongisa.co.za/api/v1/repos/litecharms/litecharmsshop/releases" \
|
||||
-H "Authorization: token $${GITEA_TOKEN}" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "{
|
||||
\"tag_name\": \"1.${DRONE_BUILD_NUMBER}\",
|
||||
\"target_commitish\": \"${DRONE_COMMIT_SHA}\",
|
||||
\"name\": \"Release 1.${DRONE_BUILD_NUMBER}\",
|
||||
\"body\": \"### Artifacts\n* **Docker Image:** nexus.khongisa.co.za/litecharms-shop:1.${DRONE_BUILD_NUMBER}\n* **NuGet:** [View on Nexus](https://nexus.khongisa.co.za/repository/nuget-group/)\",
|
||||
\"draft\": false,
|
||||
\"prerelease\": false
|
||||
}"
|
||||
|
||||
depends_on:
|
||||
- build
|
||||
@@ -66,7 +83,6 @@ steps:
|
||||
- mkdir -p $HOME/.kube
|
||||
- echo "$KUBE_CONFIG" > $HOME/.kube/config
|
||||
- kubectl apply -f litecharms-shop-uat.yml
|
||||
- kubectl rollout restart deployment/litecharms-shop -n litecharms-shop-uat
|
||||
|
||||
depends_on:
|
||||
- package
|
||||
@@ -88,7 +104,6 @@ steps:
|
||||
- mkdir -p $HOME/.kube
|
||||
- echo "$KUBE_CONFIG" > $HOME/.kube/config
|
||||
- kubectl apply -f litecharms-shop.yml
|
||||
- kubectl rollout restart shop/deployment/litecharms-shop -n litecharms-shop
|
||||
|
||||
depends_on:
|
||||
- uat
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
# LiteCharmsShop
|
||||
|
||||
The primary customer-facing web application for the LiteCharms platform.
|
||||
|
||||
## 🏗 Architecture
|
||||
* **Type:** Kubernetes Deployment
|
||||
* **Scale:** Horizontal scaling enabled via `replicas`.
|
||||
* **Ingress:** Managed via `IngressRouter` for external traffic routing.
|
||||
|
||||
## 🚀 CI/CD Workflow
|
||||
* **Trigger:** Pull Request to `master`.
|
||||
* **Build:** Compiles .NET 10.0 source.
|
||||
* **Containerize:** Docker image pushed to Nexus as `litecharms-scheduler:1.${DRONE_BUILD_NUMBER}`.
|
||||
* **Deploy:** * Updates UAT via `kubectl apply`.
|
||||
* Production deployment is triggered via **Promotion** to the `production` target.
|
||||
|
||||
## 🌐 Endpoints
|
||||
* **UAT:** `https://uat-shop.khongisa.co.za` (Internal/VPN)
|
||||
* **Monitoring:** Aspire Dashboard enabled via `Monitoring__Address`.
|
||||
@@ -1,9 +1,11 @@
|
||||
using LiteCharms.Features.Utilities.Commands;
|
||||
using LiteCharms.Abstractions;
|
||||
using LiteCharms.Features.Email.Events;
|
||||
using LiteCharms.Models;
|
||||
using static LiteCharms.Abstractions.Constants;
|
||||
|
||||
namespace Shop.Components.Pages;
|
||||
|
||||
public partial class Contact(ISender mediator, IToastService toastService) : IDisposable
|
||||
public partial class Contact([FromKeyedServices(EmailServiceBus)] IEventBus emailBus, IToastService toastService) : IDisposable
|
||||
{
|
||||
public CancellationTokenSource TokenSource { get; set; } = new();
|
||||
|
||||
@@ -13,10 +15,9 @@ public partial class Contact(ISender mediator, IToastService toastService) : IDi
|
||||
{
|
||||
try
|
||||
{
|
||||
var request = SendEmailCommand.Create(Input.EmailAddress!, Input.FullName!, "shop@litecharms.co.za",
|
||||
"Khongisa Shop", Input.EmailSubject!, Input.Message!);
|
||||
var notification = SendShopEmailEnquiryEvent.Create(Input.FullName!, Input.EmailAddress!, Input.EmailSubject!, Input.Message!);
|
||||
|
||||
var result = await mediator.Send(request, TokenSource.Token);
|
||||
var result = await emailBus.PublishAsync(notification, TokenSource.Token);
|
||||
|
||||
if (result.IsFailed)
|
||||
{
|
||||
|
||||
+2
-1
@@ -15,9 +15,10 @@ builder.Services.AddEndpointsApiExplorer();
|
||||
|
||||
builder.Services.AddMediator();
|
||||
builder.Services.AddSalesServiceBus();
|
||||
builder.Services.AddEmailServiceBus();
|
||||
builder.Services.AddGeneralServiceBus();
|
||||
builder.Services.AddShopDatabase(builder.Configuration);
|
||||
builder.Services.AddQuartzSchedulerClient(ShopSchedulerName, ShopSchedulerInstanceId, builder.Configuration);
|
||||
builder.Services.AddQuartzSchedulerClient(ShopSchedulerName, builder.Configuration);
|
||||
|
||||
builder.Services.AddPostgresHealtchCheck();
|
||||
builder.Services.AddQuartzHealtchCheck();
|
||||
|
||||
+3
-3
@@ -17,9 +17,9 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="LiteCharms.Extensions" Version="1.13.0" />
|
||||
<PackageReference Include="LiteCharms.Features" Version="1.13.0" />
|
||||
<PackageReference Include="LiteCharms.Models" Version="1.13.0" />
|
||||
<PackageReference Include="LiteCharms.Extensions" Version="1.20.0" />
|
||||
<PackageReference Include="LiteCharms.Features" Version="1.20.0" />
|
||||
<PackageReference Include="LiteCharms.Models" Version="1.20.0" />
|
||||
<PackageReference Include="Polly" Version="8.6.6" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
@@ -22,8 +22,9 @@ metadata:
|
||||
namespace: litecharms-shop-uat
|
||||
type: Opaque
|
||||
data:
|
||||
connection-string: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPWxlYWRnZW5lcmF0b3ItZGV2O1VzZXJuYW1lPWxlYWRnZW5lcmF0b3I7UGFzc3dvcmQ9S2VLNDRsczRQWHBuYms7UGVyc2lzdCBTZWN1cml0eSBJbmZvPVRydWU=
|
||||
quartz-store: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNjaGVkdWxlci1kZXY7VXNlcm5hbWU9c2NoZWR1bGVyLWRldi11c2VyO1Bhc3N3b3JkPWtWVm1vV0tKM3h6Z1FYO1BlcnNpc3QgU2VjdXJpdHkgSW5mbz1UcnVl
|
||||
connection-string: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNob3AtZGV2O1VzZXJuYW1lPXNob3AtZGV2LXVzZXI7UGFzc3dvcmQ9a1ZWbW9XS0ozeHpnUVg7UGVyc2lzdCBTZWN1cml0eSBJbmZvPVRydWU=
|
||||
connection-string-quartz: SG9zdD0xOTIuMTY4LjEuMTcwO0RhdGFiYXNlPXNjaGVkdWxlci1kZXY7VXNlcm5hbWU9c2NoZWR1bGVyLWRldi11c2VyO1Bhc3N3b3JkPWtWVm1vV0tKM3h6Z1FYO1BlcnNpc3QgU2VjdXJpdHkgSW5mbz1UcnVl
|
||||
aspire-apikey: bWMzRzYzSzJqNVpPRXNpMEFqTW9qTFRYbTFLRVpGY3R6SUlqU3dEaVRHdXQ4cUdTa1B1V3d4R1AxUmJzY0pVbw==
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
@@ -43,7 +44,7 @@ metadata:
|
||||
name: litecharms-shop
|
||||
namespace: litecharms-shop-uat
|
||||
spec:
|
||||
replicas: 1
|
||||
replicas: 2
|
||||
selector:
|
||||
matchLabels:
|
||||
app: shop
|
||||
@@ -62,6 +63,7 @@ spec:
|
||||
containers:
|
||||
- name: shop
|
||||
image: nexus.khongisa.co.za/litecharms-shop:latest
|
||||
imagePullPolicy: Always
|
||||
resources:
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
@@ -79,7 +81,7 @@ spec:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: shop-secrets
|
||||
key: quartz-store
|
||||
key: connection-string-quartz
|
||||
- name: ConnectionStrings__PostgresShop
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
|
||||
Reference in New Issue
Block a user