Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
| docker build -t flask-reverse-string:latest . | |
| docker run -d -p 4000:5000 flask-reverse-string:latest | |
| docker commit <containerid> rajakwikee/flask-reverse-string:latest | |
| docker push rajakwikee/flask-reverse-string |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: > | |
| AWS CloudFormation template to create a new VPC | |
| to work with Fargate | |
| in Create Cluster Wizard | |
| Parameters: | |
| EcsClusterName: | |
| Type: String | |
| Description: > | |
| Specifies the ECS Cluster Name with which the resources would be |
| Sources: | |
| https://neo4j.com/developer/docker-run-neo4j/ | |
| docker run \ | |
| --name testneo4j \ | |
| -p7474:7474 -p7687:7687 \ | |
| -d \ | |
| -v $HOME/neo4j/data:/data \ | |
| -v $HOME/neo4j/logs:/logs \ |
| # delete all pods | |
| kubectl delete --all pods --namespace=default | |
| # deete all deployments | |
| kubectl delete --all deployments --namespace=default | |
| # delete all services | |
| kubectl delete --all services --namespace=default |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.