Posty

Wyświetlanie postów z sierpień, 2018

Django static files

https://www.tivix.com/blog/fix-your-djangos-static-files-handling

Configuring Python with Azure App Service Web Apps

https://docs.microsoft.com/en-us/azure/app-service/web-sites-python-configure

Deploy GitHub source code repositories to an Azure App Service

https://blogs.msdn.microsoft.com/benjaminperkins/2017/05/10/deploy-github-source-code-repositories-to-an-azure-app-service/ https://azure.microsoft.com/pl-pl/blog/using-django-python-and-mysql-on-windows-azure-web-sites-creating-a-blog-application/

https://github.com/sahaskatta/AzureStorage

deprecate Chrome’s trust in the Symantec certificate authority

https://security.googleblog.com/2018/03/distrust-of-symantec-pki-immediate.html

Kubernetes

Obraz
https://github.com/kubernetes/minikube brew cask install minikube brew install kubernetes-cli minikube status minikube start kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.4 --port=8080 kubectl expose deployment hello-minikube --type=NodePort minikube service hello-minikube --url <open a browser and go to that url> https://github.com/kubernetes/kops brew update && brew install kops I. Introduction 1. What is Kubernetes Kubernetes Kubernetes is a container orchestration tool. Which means that is helps orchestrate the deployment of multiple containers and help manage its state and make sure the container is running smoothly. There are many nice feature built into kubernetes which we will go into detail in later sections. But let's just say if you want to launch a containerised solution for your web app  you almost certainly want to use an orchestration tool such as Kubernetes. -it lets you shedule containers on a cluster of machine...

DOCKER Notes

Obraz
1) Docker  overview - Docker was released in 2013 as an open source project by a company known as dotCloud , which was hosting company that is not around anymore.  In fact, within a year of releasing that open source project , it became so big that they changed their company around and basically closed the old company, started new company called Docker , Inc. - mascot of Docker is Gordon the turtle @gordonTheTurtle which lives in San Francisco - Docker CE (Community Edition) (free) vs Docker Enterprose Edition (paid) - three types  *Linux (diffrent per distro) (do not use default package)  *Docker for Windows (or legacy Docker Toolbox)  *Docker for Mac (or legacy Docker Toolbox) (do not use brew_  *Docker for AWS/Azure/Google Stable vs edge versions - edge (beta) released monthly, Stable querterly - edge get new features first, but only supported for a month - stable rolls in three months of Edge feautres, EE supported longer 2) I...