Open a terminal in the folder which contains all the creativeHub projects repositories, then execute these commands
minikube start
export GATEWAY_URL=http://localhost:8080
export CLIENT_URL=https://localhost:4200
for f in ./**/orchestration/*.yaml; do cat $f | envsubst | kubectl apply -f -; done
minikube tunnel
minikube start
$env:GATEWAY_URL = "http://localhost:8080"
$env:CLIENT_URL = "http://localhost:4200"
Resolve-Path .\**\orchestration\*.yaml | Select -ExpandProperty Path | %{Get-Content $_ | envsubst | kubectl apply -f -}
minikube tunnel
Open a terminal in the folder which contains all the creativeHub projects repositories, then execute these commands
okteto kubeconfig
export GATEWAY_URL=https://api-gateway-acontenti.cloud.okteto.net
export CLIENT_URL=https://creative-hub-client-taass-acontenti.cloud.okteto.net
for f in ./**/orchestration/*.yaml; do cat $f | envsubst | kubectl apply -f -; done
okteto kubeconfig
$env:GATEWAY_URL = "https://api-gateway-acontenti.cloud.okteto.net"
$env:CLIENT_URL = "https://creative-hub-client-taass-acontenti.cloud.okteto.net"
Resolve-Path .\**\orchestration\*.yaml | Select -ExpandProperty Path | %{Get-Content $_ | envsubst | kubectl apply -f -}