kubectl create secret tls wildcard-secret \
--cert=wildcard.crt \
--key=wildcard.key \
-n your-app-namespace --output yaml > tls.yml
apply the configuration file
kubectl apply -f tls.yml
kubectl create secret tls wildcard-secret \
--cert=wildcard.crt \
--key=wildcard.key \
-n your-app-namespace --output yaml > tls.yml
apply the configuration file
kubectl apply -f tls.yml
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update
helm install nginx-ingress ingress-nginx/ingress-nginx \
--namespace ingress-nginx \
--create-namespace
verify your installation
kubectl get pods -n ingress-nginx
kubectl get svc -n ingress-nginx
If you want to put static IP on your ingress controller
helm install nginx-ingress ingress-nginx/ingress-nginx \
--namespace ingress-nginx \
--set controller.service.loadBalancerIP=your-ip-public \
--create-namespace
install postgresql:
source: https://computingforgeeks.com/install-postgresql-12-on-ubuntu/
C:\Users\webDev\Envs is not a directory, creating
Using base prefix 'c:\\python36'
New python executable in C:\Users\webDev\Envs\virtualpython3\Scripts\python.exe
Installing setuptools, pip, wheel...done.
(virtualpython3) webDev@WEBDEV-PC E:\doni\
fatal: cannot copy '/usr/local/git/share/git-core/templates/hooks/pre-receive.sample' to '/usr/local/Homebrew/.git/hooks/pre-receive.sample': Permission denied
Failed during: git init -q
sudo chown -R $USER /usr/local