Apache Geode (incubating) | Home - 0 views
The Twelve-Factor App - 0 views
-
A copy of the revision tracking database is known as a code repository, often shortened to code repo or just repo.
-
always a one-to-one correlation between the codebase and the app
-
If there are multiple codebases, it’s not an app – it’s a distributed system.
- ...4 more annotations...
Helm | - 0 views
-
Helm will figure out where to install Tiller by reading your Kubernetes configuration file (usually $HOME/.kube/config). This is the same file that kubectl uses.
-
kubectl cluster-info
-
Role-Based Access Control (RBAC) enabled
- ...133 more annotations...
MongoDB Performance Tuning: Everything You Need to Know - Stackify - 0 views
-
db.serverStatus().globalLock
-
db.serverStatus().locks
-
globalLock.currentQueue.total: This number can indicate a possible concurrency issue if it’s consistently high. This can happen if a lot of requests are waiting for a lock to be released.
- ...35 more annotations...
Options for Highly Available Topology | Kubernetes - 0 views
-
With stacked control plane nodes, where etcd nodes are colocated with control plane nodes
-
A stacked HA cluster is a topology where the distributed data storage cluster provided by etcd is stacked on top of the cluster formed by the nodes managed by kubeadm that run control plane components.
-
Each control plane node runs an instance of the kube-apiserver, kube-scheduler, and kube-controller-manager
- ...6 more annotations...
Home - SemiCode OS - 0 views
twitter/distributedlog: A high performance replicated log service. - 0 views
-
"A high performance replicated log service. http://distributedlog.io"
How to write excellent Dockerfiles - 0 views
-
minimize image size, build time and number of layers.
-
maximize build cache usage
-
Container should do one thing
- ...25 more annotations...
javascript - How do I "think in AngularJS" if I have a jQuery background? - Stack Overflow - 0 views
-
in AngularJS, we have a separate model layer that we can manage in any way we want, completely independently from the view.
-
keep your concerns separate
-
do DOM manipulation and augment your view with directives
- ...34 more annotations...
How to Use Docker on OS X: The Missing Guide | Viget - 0 views
-
Docker is a client-server application.
-
The Docker server is a daemon that does all the heavy lifting: building and downloading images, starting and stopping containers, and the like. It exposes a REST API for remote management.
-
The Docker client is a command line program that communicates with the Docker server using the REST API.
- ...9 more annotations...
Tails - Privacy for anyone anywhere - 1 views
Flynn: first preview release | Hacker News - 0 views
-
Etcd and Zookeeper provide essentially the same functionality. They are both a strongly consistent key/value stores that support notifications to clients of changes. These two projects are limited to service discovery
-
So lets say you had a client application that would talk to a node application that could be on any number of servers. What you could do is hard code that list into your application and randomly select one, in order to "fake" load balancing. However every time a machine went up or down you would have to update that list.
-
What Consul provides is you just tell your app to connect to "mynodeapp.consul" and then consul will give you the proper address of one of your node apps.
- ...9 more annotations...
-
" So lets say you had a client application that would talk to a node application that could be on any number of servers. What you could do is hard code that list into your application and randomly select one, in order to "fake" load balancing. However every time a machine went up or down you would have to update that list. What Consul provides is you just tell your app to connect to "mynodeapp.consul" and then consul will give you the proper address of one of your node apps."
Virtual Private Cloud (VPC) | Virtual Private Cloud | Google Cloud - 0 views
-
A single Google Cloud VPC can span multiple regions without communicating across the public Internet.
-
Google Cloud VPCs let you increase the IP space of any subnets without any workload shutdown or downtime.
-
Get private access to Google services, such as storage, big data, analytics, or machine learning, without having to give your service a public IP address.
- ...3 more annotations...
10 Common Git Problems and How to Fix Them - DEV Community - 0 views
-
Please keep in mind that --amend actually will create a new commit which replaces the previous one, so don’t use it for modifying commits which already have been pushed to a central repository.
-
git rebase --interactive
-
Just pick the commit(s) you want to update, change pick to reword (or r for short), and you will be taken to a new view where you can edit the message.
- ...8 more annotations...
Deploy a registry server | Docker Documentation - 0 views
-
By default, secrets are mounted into a service at /run/secrets/<secret-name>
-
docker secret create
-
If you use a distributed storage driver, such as Amazon S3, you can use a fully replicated service. Each worker can write to the storage back-end without causing write conflicts.
- ...10 more annotations...
Boosting your kubectl productivity ♦︎ Learnk8s - 0 views
-
kubectl is your cockpit to control Kubernetes.
-
kubectl is a client for the Kubernetes API
-
Kubernetes API is an HTTP REST API.
- ...75 more annotations...
Providers - Configuration Language - Terraform by HashiCorp - 0 views
-
By default, terraform init downloads plugins into a subdirectory of the working directory so that each working directory is self-contained.
-
Terraform optionally allows the use of a local directory as a shared plugin cache, which then allows each distinct plugin binary to be downloaded only once.
-
directory must already exist before Terraform will cache plugins; Terraform will not create the directory itself.
- ...3 more annotations...
Scalable architecture without magic (and how to build it if you're not Google) - DEV Co... - 0 views
-
Don’t mess up write-first and read-first databases.
-
keep them stateless.
-
you should know how to make a scalable setup on bare metal.
- ...29 more annotations...
‹ Previous
21 - 40 of 60
Next ›
Showing 20▼ items per page