Firecracker - 0 views
CAP Theorem | Complete Think - 1 views
Gracefully Shutdown Docker Container - Kakashi's Blog - 1 views
-
The initial idea is to make application invokes deconstructor of each component as soon as the application receives specific signals such as SIGTERM and SIGINT
-
When you run a docker container, by default it has a PID namespace, which means the docker process is isolated from other processes on your host.
-
The PID namespace has an important task to reap zombie processes.
- ...11 more annotations...
kubeadm init | Kubernetes - 0 views
kubeadm join | Kubernetes - 0 views
Introducing the MinIO Operator and Operator Console - 0 views
-
Object-storage-as-a-service is a game changer for IT.
-
provision multi-tenant object storage as a service.
-
have the skill set to create, deploy, tune, scale and manage modern, application oriented object storage using Kubernetes
- ...12 more annotations...
Helm | Template Functions and Pipelines - 0 views
-
When injecting strings from the .Values object into the template, we ought to quote these strings.
-
Helm has over 60 available functions. Some of them are defined by the Go template language itself. Most of the others are part of the Sprig template library
-
the "Helm template language" as if it is Helm-specific, it is actually a combination of the Go template language, some extra functions, and a variety of wrappers to expose certain objects to the templates.
- ...10 more annotations...
RFC 3339 vs ISO 8601 - 0 views
About Kubernetes Ingress - 0 views
phusion/passenger-docker: Docker base images for Ruby, Python, Node.js and Meteor web apps - 0 views
-
Ubuntu 20.04 LTS as base system
-
2.7.5 is configured as the default.
-
Python 3.8
- ...23 more annotations...
Docker image building on GitLab CI | $AYMDEV() - 0 views
-
Continuous Integration (or CI) is a practice where you continously test an application to detect errors as soon as possible.
-
Docker is a container technology, many CI tools execute jobs (the tasks of a pipeline) in container to have an isolated environment.
-
Docker in Docker (« DinD » in short) means executing Docker in a Docker container.
- ...11 more annotations...
Using cache in GitLab CI with Docker-in-Docker | $AYMDEV() - 0 views
-
optimize our images.
-
When you build an image, it is made of multiple layers: we add a layer per instruction.
-
If we build the same image again without modifying any file, Docker will use existing layers rather than re-executing the instructions.
- ...21 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...
Creating Highly Available clusters with kubeadm | Kubernetes - 0 views
-
If instead, you prefer to copy certs across control-plane nodes manually or using automation tools, please remove this flag and refer to Manual certificate distribution section below.
-
if you are using a kubeadm configuration file set the podSubnet field under the networking object of ClusterConfiguration.
-
manually copy the certificates from the primary control plane node to the joining control plane nodes.
- ...1 more annotation...
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.
Service | Kubernetes - 0 views
-
Each Pod gets its own IP address
-
Pods are nonpermanent resources.
-
Kubernetes Pods are created and destroyed to match the state of your cluster
- ...23 more annotations...
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...
Installation Guide - NGINX Ingress Controller - 0 views
-
On most Kubernetes clusters, the ingress controller will work without requiring any extra configuration.
« First
‹ Previous
241 - 260 of 270
Next ›
Showing 20▼ items per page