diff --git a/README.md b/README.md index df9fb51..5a1321c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Prerequisites - [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) - [helm 3](https://helm.sh/docs/intro/quickstart/#install-helm) -- [k3d](https://github.com/rancher/k3d) - you can install it with the command: `curl -s https://raw.githubusercontent.com/rancher/k3d/master/install.sh | bash` +- [k3d](https://github.com/rancher/k3d) - you can install it with the command: `brew install k3d` or `curl -s https://raw.githubusercontent.com/rancher/k3d/master/install.sh | bash` # Quick start @@ -22,7 +22,7 @@ Start k3s cluster and Kyma: ``` At the end script asks for your password to add TLS certificate to your key chain. -Use credentials to log into [Kyma Console](https://console.local.kyma.pro) +Use credentials to log into [Kyma Console](https://console.local.kyma.dev) Your cluster is ready! diff --git a/coredns-patch.tpl b/coredns-patch.tpl index 3b1db48..96631ff 100644 --- a/coredns-patch.tpl +++ b/coredns-patch.tpl @@ -8,7 +8,7 @@ data: .:53 { errors health - rewrite name regex (.*)\.local\.kyma\.pro istio-ingressgateway.istio-system.svc.cluster.local + rewrite name regex (.*)\.local\.kyma\.dev istio-ingressgateway.istio-system.svc.cluster.local ready kubernetes cluster.local in-addr.arpa ip6.arpa { pods insecure diff --git a/kyma-k3d.sh b/kyma-k3d.sh index 7d3ad8f..077fc64 100755 --- a/kyma-k3d.sh +++ b/kyma-k3d.sh @@ -7,7 +7,7 @@ k3d create --publish 80:80 --publish 443:443 --enable-registry --registry-volume # k3d delete --keep-registry-volume -n kyma echo "Cluster created in $(( $SECONDS/60 )) min $(( $SECONDS % 60 )) sec" export KUBECONFIG="$(k3d get-kubeconfig -n='kyma')" -export DOMAIN=local.kyma.pro +export DOMAIN=local.kyma.dev export GARDENER=false export OVERRIDES=global.isLocalEnv=true,global.ingress.domainName=$DOMAIN,global.environment.gardener=$GARDENER,global.domainName=$DOMAIN,global.minikubeIP=127.0.0.1,global.tlsCrt=ZHVtbXkK export ORY=global.ory.hydra.persistence.enabled=false,global.ory.hydra.persistence.postgresql.enabled=false,hydra.hydra.autoMigrate=false