Skip to content

Commit c576ba0

Browse files
committed
Update chart information and deployment targets
1 parent 1ac60ba commit c576ba0

File tree

5 files changed

+86
-3
lines changed

5 files changed

+86
-3
lines changed

.devcontainer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"image":"mcr.microsoft.com/devcontainers/dotnet:8.0",
3+
4+
"features": {
5+
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {}
6+
},
7+
38
"customizations": {
49
"vscode": {
510
"extensions": [

.vscode/launch.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md.
8+
"name": ".NET Core Launch (web)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/LDTTeam.Authentication.Server/bin/Debug/net8.0/LDTTeam.Authentication.Server.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/LDTTeam.Authentication.Server",
16+
"stopAtEntry": false,
17+
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
18+
"serverReadyAction": {
19+
"action": "openExternally",
20+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
21+
},
22+
"env": {
23+
"ASPNETCORE_ENVIRONMENT": "Development"
24+
},
25+
"sourceFileMap": {
26+
"/Views": "${workspaceFolder}/Views"
27+
}
28+
},
29+
{
30+
"name": ".NET Core Attach",
31+
"type": "coreclr",
32+
"request": "attach"
33+
}
34+
]
35+
}

.vscode/tasks.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/LDTTeam Authentication.sln",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary;ForceNoAlign"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/LDTTeam Authentication.sln",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary;ForceNoAlign"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"--project",
36+
"${workspaceFolder}/LDTTeam Authentication.sln"
37+
],
38+
"problemMatcher": "$msCompile"
39+
}
40+
]
41+
}

Charts/ldtteam-authentication-server/Chart.lock

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ dependencies:
22
- name: postgresql
33
repository: https://charts.bitnami.com/bitnami
44
version: 16.1.2
5-
digest: sha256:adf233ecad367ef63b12e7caeb63e01210fb232c8ae82340b1a41e6ea7d27e24
6-
generated: "2024-11-11T13:06:09.442941202+01:00"
5+
- name: postgresql-ha
6+
repository: oci://registry-1.docker.io/bitnamicharts
7+
version: 15.0.4
8+
digest: sha256:920ba656c92dec0c5692b6241a81b583a037fa97fa298a10a7e0c97a45ac4890
9+
generated: "2024-12-28T14:57:24.9994522Z"

Charts/ldtteam-authentication-server/templates/deployment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ spec:
6565
{{- include "ldtteam-authentication-server.envFromSecret" (merge (dict "Secret" "Patreon.InitializingRefreshToken") .) | nindent 12}}
6666
{{- include "ldtteam-authentication-server.envFromSecret" (merge (dict "Secret" "Patron.ApiClientSecret") .) | nindent 12}}
6767
{{- include "ldtteam-authentication-server.envFromSecret" (merge (dict "Secret" "WebHook") .) | nindent 12}}
68-
{{- toYaml .Values.extraEnv | nindent 12 }}
6968
volumes:
7069
- name: appsettings
7170
configMap:

0 commit comments

Comments
 (0)