Commit 1ce29985 authored by Vũ Hoàng Nam's avatar Vũ Hoàng Nam

Add guide for connect Minikube Ingress to MacOS

parent bddfd55e
Create tls command
##### Create tls command
``` ```
openssl req -x509 -newkey rsa:4096 -sha256 -nodes -keyout tls.key -out tls.crt -subj "/CN=web-app.com" -days 36 openssl req -x509 -newkey rsa:4096 -sha256 -nodes -keyout tls.key -out tls.crt -subj "/CN=web-app.com" -days 36
``` ```
Create secret tls ##### Create secret tls
``` ```
kubectl create secret tls web-app-tls --cert=tls.crt --key=tls.key kubectl create secret tls web-app-tls --cert=tls.crt --key=tls.key
```
##### Connect from MacOS to Minikube Ingress Addons
```
# Install via Homebrew
$ brew install chipmk/tap/docker-mac-net-connect
# Run the service and register it to launch at boot
$ sudo brew services start chipmk/tap/docker-mac-net-connect
``` ```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment