Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion k8s/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Create namespace (if needed)
kubectl create ns helloenv || true

# Install chart from local folder ./helloenv
# Install chart from local folder
helm install helloenv . -n helloenv \
--set image.repository=ghcr.io/nikodevops/helloenv \
--set image.tag=dev \
Expand Down
2 changes: 1 addition & 1 deletion src/HelloEnv/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

var greeting = Environment.GetEnvironmentVariable("GREETING") ?? "world";

app.MapGet("/", () => Results.Text($"Hello, {greeting}!!!", "text/plain"));
app.MapGet("/", () => Results.Text($"Hello, {greeting}!", "text/plain"));

app.Run();