Run the Docker daemon as a non-root user (Rootless mode) | Docker Documentation - 0 views
-
running the Docker daemon and containers as a non-root user
-
Rootless mode does not require root privileges even during the installation of the Docker daemon
-
Rootless mode executes the Docker daemon and containers inside a user namespace.
- ...9 more annotations...
What is Kubernetes Ingress? | IBM - 0 views
-
expose an application to the outside of your Kubernetes cluster,
-
ClusterIP, NodePort, LoadBalancer, and Ingress.
-
A service is essentially a frontend for your application that automatically reroutes traffic to available pods in an evenly distributed way.
- ...23 more annotations...
Using Traefik as a reverse proxy | Blog Eleven Labs - 0 views
-
a proxy is associated with the client(s), while a reverse proxy is associated with the server(s); a reverse proxy is usually an internal-facing proxy used as a ‘front-end’ to control and protect access to a server on a private network.
-
the restart: always instruction will allow our reverse-proxy service to restart automatically, on its own.
-
add an [api] section to enable the dashboard and the API
- ...6 more annotations...
Ingress Controllers | Kubernetes - 0 views
-
In order for the Ingress resource to work, the cluster must have an ingress controller running.
-
ingressClassName is a replacement of the older annotation method.
-
If you do not specify an IngressClass for an Ingress, and your cluster has exactly one IngressClass marked as default, then Kubernetes applies the cluster's default IngressClass to the Ingress.
NGINX Ingress Controller - Documentation - 0 views
-
NodePort, as the name says, means that a port on a node is configured to route incoming requests to a certain service.
-
LoadBalancer is a service, which is typically implemented by the cloud provider as an external service (with additional cost).
-
Load balancer provides a single IP address to access your services, which can run on multiple nodes.
- ...5 more annotations...
kube-proxy | Kubernetes - 0 views
-
The Kubernetes network proxy runs on each node. This reflects services as defined in the Kubernetes API on each node and can do simple TCP, UDP, and SCTP stream forwarding or round robin TCP, UDP, and SCTP forwarding across a set of backends.
-
Service cluster IPs and ports are currently found through Docker-links-compatible environment variables specifying ports opened by the service proxy.
Cloudflare outage on June 21, 2022 - 0 views
-
This mesh allows us to easily disable and enable parts of the internal network in a data center for maintenance or to deal with a problem.
-
As part of this protocol, operators define policies which decide which prefixes (a collection of adjacent IP addresses) are advertised to peers (the other networks they connect to), or accepted from peers.
fchollet/keras: Deep Learning library for Python. Convnets, recurrent neural networks, ... - 0 views
-
"Deep Learning library for Python. Convnets, recurrent neural networks, and more. Runs on Theano or TensorFlow. http://keras.io/"
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...
Use swarm mode routing mesh | Docker Documentation - 0 views
-
Docker Engine swarm mode makes it easy to publish ports for services to make them available to resources outside the swarm.
-
All nodes participate in an ingress routing mesh.
-
routing mesh enables each node in the swarm to accept connections on published ports for any service running in the swarm, even if there’s no task running on the node.
- ...6 more annotations...
How To Create a Kubernetes Cluster Using Kubeadm on Ubuntu 18.04 | DigitalOcean - 0 views
-
A pod is an atomic unit that runs one or more containers.
-
Pods are the basic unit of scheduling in Kubernetes: all containers in a pod are guaranteed to run on the same node that the pod is scheduled on.
-
Each pod has its own IP address, and a pod on one node should be able to access a pod on another node using the pod's IP.
- ...12 more annotations...
Volumes - Kubernetes - 0 views
-
On-disk files in a Container are ephemeral,
-
when a Container crashes, kubelet will restart it, but the files will be lost - the Container starts with a clean state
-
In Docker, a volume is simply a directory on disk or in another Container.
- ...105 more annotations...
Outbound connections in Azure | Microsoft Docs - 0 views
-
When an instance initiates an outbound flow to a destination in the public IP address space, Azure dynamically maps the private IP address to a public IP address.
-
After this mapping is created, return traffic for this outbound originated flow can also reach the private IP address where the flow originated.
-
Azure uses source network address translation (SNAT) to perform this function
- ...22 more annotations...
Kubernetes - Traefik - 0 views
-
allow fine-grained control of Kubernetes resources and API.
-
authorize Traefik to use the Kubernetes API.
-
namespace-specific RoleBindings
- ...29 more annotations...
Pods - Kubernetes - 0 views
-
Pods are the smallest deployable units of computing
-
A Pod (as in a pod of whales or pea pod) is a group of one or more containersA lightweight and portable executable image that contains software and all of its dependencies. (such as Docker containers), with shared storage/network, and a specification for how to run the containers.
-
A Pod’s contents are always co-located and co-scheduled, and run in a shared context.
- ...32 more annotations...
‹ Previous
21 - 40 of 126
Next ›
Last »
Showing 20▼ items per page