You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the generator script from the [latest release](https://github.com/ftechmax/msa-templates/releases/latest) and run it. The script automatically installs the matching `MSA.Templates` NuGet package and downloads the matching Kubernetes manifests.
@@ -55,14 +54,14 @@ Download the generator script from the [latest release](https://github.com/ftech
if [[ !"$SERVICE_NAME"=~ ^[A-Z][a-zA-Z0-9]+$ ]];then
@@ -24,6 +23,7 @@ fi
24
23
# Prepare service name
25
24
KEBAB_CASE_SERVICE_NAME=$(printf '%s'"$SERVICE_NAME"| sed -E 's/([A-Z]+)([A-Z][a-z])/\1-\2/g'| sed -E 's/([a-z0-9])([A-Z])/\1-\2/g'| tr '[:upper:]''[:lower:]')
26
25
DOT_CASE_SERVICE_NAME=$(printf '%s'"$SERVICE_NAME"| sed -E 's/([A-Z]+)([A-Z][a-z])/\1.\2/g'| sed -E 's/([a-z0-9])([A-Z])/\1.\2/g')
0 commit comments