diff --git a/k8s/helm/README.md b/k8s/helm/README.md index 3bac756..1259efe 100644 --- a/k8s/helm/README.md +++ b/k8s/helm/README.md @@ -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 \ diff --git a/src/HelloEnv/Program.cs b/src/HelloEnv/Program.cs index 0e30ffb..447051e 100644 --- a/src/HelloEnv/Program.cs +++ b/src/HelloEnv/Program.cs @@ -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(); \ No newline at end of file