Page 1 of 1

Vermont : azure repos pricing - Eduard Kabrinskiy

Posted: 11 May 2021, 02:45
by SHALOMsl
Kabrinskiy Eduard - Consul devops - Kabrinskiy Eduard


<h1>Consul devops</h1>
<p>[youtube]</p>
Consul devops <a href="http://remmont.com">National news</a> Consul devops
<h1>A Practical Guide to HashiCorp Consul — Part 1</h1>
<p style="clear: both"><img src="https://miro.medium.com/fit/c/96/96/1*1 ... PYC3w.jpeg" /></p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*jfHfQs ... 42gJg.jpeg" /></p>
<p>This is part 1 of 2 part series on A Practical Guide to HashiCorp Consul. This part is primarily focused on understanding the problems that Consul solves and how it solves them. The second part is more focused on a practical application of Consul in a real-life example and will be published next week. Let’s get started.</em></p>
<p>How about setting up discoverable, configurable, and secure service mesh using a single tool?</p>
<p>What if we tell you this tool is platform-agnostic and cloud-ready?</p>
<p>And comes as a single binary download.</p>
<p>All this is true. The tool we are talking about is HashiCorp Consul.</p>
<p>Let’s learn about Consul in details below and see how it solves these complex challenges and makes the life of a distributed system operator easy.</p>
<h1>Introduction</h1>
<p>Microservices and other distributed systems can enable faster, simpler software development. But there’s a trade-off resulting in greater operational complexity around inter-service communication, configuration management, and network segmentation.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*s1RzSh ... bvZZMw.png" /></p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*pU3kq8 ... hJan1w.png" /></p>
<p>HashiCorp Consul is an open-source tool that solves these new complexities by providing service discovery, health checks, load balancing, a service graph, mutual TLS identity enforcement, and a configuration key-value store. These features make Consul an ideal control plane for a service mesh.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*vU6KN4 ... 3NcSQA.png" /></p>
<p>HashiCorp announced Consul in April 2014 and it has since then got a good community acceptance.</p>
<p>This guide is aimed at discussing some of these crucial problems and exploring the various solutions provided by HashiCorp Consul to tackle these problems.</p>
<p>Let’s rundown through the topics that we are going to cover in this guide. The topics are written to be self-content. You can jump directly to a specific topic if you want to.</p>
<h1>Brief Background on Monolithic vs. Service-oriented Architectures (SOA)</h1>
<p>Looking at traditional architectures of application delivery, what we find is a classic monolith. When we talk about monolith, we have a single application deployment.</p>
<p>Even if it is a single application, typically it has multiple different sub-components.</p>
<p>One of the examples that HashiCorp’s CTO Armon Dadgar gave during his introductory video for Consul was about — delivering desktop banking application. It has a discrete set of sub-components — for example, authentication (say subsystem A), account management (subsystem B), fund transfer (subsystem C), and foreign exchange (subsystem D).</p>
<p>Now, although these are independent functions — system A authentication vs system C fund transfer — we deploy it as a single, monolith app.</p>
<p>Over the last few years, we have seen a trend away from this kind of architecture. There are several reasons for this shift.</p>
<p>Challenge with a monolith is: Suppose there is a bug in one of the subsystems, system A, related to authentication.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*408EI1 ... RPBqYw.png" /></p>
<p>We can’t just fix it in system A and update it in production.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*mTZg6H ... vYtACw.png" /></p>
<p>We have to update system A and do a redeploy of the whole application, which we need deployment of subsystems B, C, and D as well.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*SMgw13 ... n5y1LA.png" /></p>
<p>This whole redeployment is not ideal. Instead, we would like to do a deployment of individual services.</p>
<p>The same monolithic app delivered as a set of individual, discrete services.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*pU3kq8 ... hJan1w.png" /></p>
<p>So, if there is a bug fix in one of our services:</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*NZyOUO ... TQF6Sw.png" /></p>
<p>and we fix that bug:</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*tr3OWh ... plphdg.png" /></p>
<p>We can do the redeployment of that service without coordinating the deployment with other services. What we are essentially talking about is one form of microservices.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*uIC5Ye ... B5TaIA.png" /></p>
<p>This gives a big boost to our development agility. We don’t need to coordinate our development efforts across different development teams or even systems. We will have the freedom of developing and deploying independently. One service on a weekly basis and other quarterly. This is going to be a big advantage for the development teams.</p>
<p>But, there is no such thing as a free lunch.</p>
<p>The development efficiency we have gained introduces its own set of operational challenges. Let’s look at some of those.</p>
<h1>Service discovery in a monolith, its challenges in a distributed system, and Consul’s solution</h1>
<h2>Monolithic applications</h2>
<p>Assuming two services in a single application want to talk to one another. One way is to expose a method, make it public and allow other services to call it. In a monolithic application, it is a single app, and the services would expose public functions and it would simply mean function calls across services.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*of_UST ... T3Ujjw.png" /></p>
<p>As this is a function call within a process, it has happened in-memory. Thus, it’s fast, and we need not worry about how our data was moved and if it was secure or not.</p>
<h2>Distributed Systems</h2>
<p>In the distributed world, service A is no longer delivered as the same application as service B. So, how does service A finds service B if it wants to talk to B?</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*2dDyMx ... jiU1wQ.png" /></p>
<p>Service A might not even be on the same machine as service B. So, there is a network in play. And it is not as fast and there is a latency that we can measure on the lines of milliseconds, as compared to nanoseconds of a simple function call.</p>
<h2>Challenges in Distributed Systems</h2>
<p>As we already know by now, two services on a distributed system have to discover one-another to interact. One of the traditional ways of solving this is by using load balancers.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*y5buEE ... vrfmgQ.png" /></p>
<p>Load balancers would sit in front of each service with a static IP known to all other services.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*D52Yvz ... s7tX5Q.png" /></p>
<p>This gives an ability to add multiple instances of the same service behind the load balancer and it would direct the traffic accordingly. But this load balancer IP is static and hard-coded within all other services, so services can skip discovery.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*p5ZJnW ... yW7eMA.png" /></p>
<p>The challenge is now to maintain a set of load balancers for each individual services. And we can safely assume, there was originally a load balancer for the whole application as well. The cost and effort for maintaining these load balancers have increased.</p>
<p>With load balancers in front of the services, they are a single point of failures. Even when we have multiple instances of service behind the load balancer if it is down our service is down. No matter how many instances of that service are running.</p>
<p>Load balancers also increase the latency of inter-service communication. If service A wishes to talk to service B, request from A will have to first talk to the load balancer of service B and then reach B. The response from B will also have to go through the same drill.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*6sNxPw ... Ju8kCg.png" /></p>
<p>And by nature, load balancers are manually managed in most cases. If we add another instance of service, it will not be readily available. We will need to register that service into the load balancer to make it accessible to the world. This would mean manual effort and time.</p>
<h2>Consul’s Solutions</h2>
<p>Consul’s solution to service discovery problem in distributed systems is a central service registry.</p>
<p>Consul maintains a central registry that contains the entry for all the upstream services. When a service instance starts, it is registered on the central registry. The registry is populated with all the upstream instances of the service.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*FzvAjl ... 3vz_lw.png" /></p>
<p>When a service A wants to talk to service B, it will discover and communicate with B by querying the registry about the upstream service instances of B. So, instead of talking to a load balancer, the service can directly talk to the desired destination service instance.</p>
<p>Consul also provides health-checks on these service instances. If one of the service instances or services itself is unhealthy or fails its health-check, the registry would then know about this scenario and would avoid returning the service’s address. The work that the load-balancer would do is handled by the registry in this case.</p>
<p>Also, if there are multiple instances of the same service, Consul would send the traffic randomly to different instances. Thus, leveling the load among different instances.</p>
<p>Consul has handled our challenges of failure detection and load distribution across multiple instances of services without the necessity of deploying a centralized load balancer.</p>
<p>The traditional problem of slow and manually managed load balancers is taken care of here. Consul programmatically manages registry, which gets updated when any new service registers itself and becomes available for receiving traffic.</p>
<p>This helps with scaling the services with ease.</p>
<h1>Configuration Management in a monolith, its challenges in a distributed environment, and Consul’s solution</h1>
<h2>Monolithic Applications</h2>
<p>When we look at the configuration for a monolithic application, they tend to be somewhere along the lines of giant YAML, XML or JSON files. That configuration is supposed to configure the entire application.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*JTBdjy ... 3gR1Nw.png" /></p>
<p>Given a single file, all of our subsystems in our monolithic application would now consume the configuration from the same file. Thus creating a consistent view of all our subsystems or services.</p>
<p>If we wish to change the state of the application using a configuration update, it would be easily available to all the subsystems. The new configuration is simultaneously consumed by all the components of our application.</p>
<h2>Distributed Systems</h2>
<p>Unlike monolith, distributed services would not have a common view on configuration. The configuration is now distributed and there every individual service would need to be configured separately.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*a0-7aK ... GhEjpw.png" /></p>
<h2>Challenges in Distributed Systems</h2>
<ul>
<li>The configuration is to be spread across different services. Maintaining consistency between the configuration on different services after each update is a challenge.</li>
<li>Moreover, the challenge grows when we expect the configuration to be updated dynamically.</li>
</ul>
<h2>Consul’s Solutions</h2>
<p>Consul’s solution for configuration management in a distributed environment is the central Key-Value store.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*D-GLrf ... afDNhg.png" /></p>
<p>Consul solves this challenge in a unique way. Instead of spreading the configuration across different distributed services as configuration pieces, it pushes the whole configuration to all the services and configures them dynamically on the distributed system.</p>
<p>Let’s take an example of state change in configuration. The changed state is pushed across all the services in real-time. The configuration is consistently present with all the services.</p>
<h1>Network segmentation in a monolith, its challenges in distributed systems, and Consul’s solutions</h1>
<h2>Monolithic Applications</h2>
<p>When we look at our classic monolithic architecture, the network is typically divided into three different zones.</p>
<p>The first zone</strong> in our network is publicly accessible. The traffic coming to our application via the internet and reaching our load balancers.</p>
<p>The second zone</strong> is the traffic from our load balancers to our application. Mostly an internal network zone without direct public access.</p>
<p>The third zone</strong> is the closed network zone, primarily designated for data. This is considered to be an isolated zone.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*KKlN_b ... U49VUg.png" /></p>
<p>Only the load balancers zone can reach into the application zone and only the application zone can reach into the data zone. It is a straightforward zoning system, simple to implement and manage.</p>
<h2>Distributed Systems</h2>
<p>The pattern changes drastically for distributed services.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*epcSJW ... wtqllA.png" /></p>
<p>There are multiple services within our application network zone itself. Each of these service talks to others within this network, making it a complicated traffic pattern.</p>
<h2>Challenges in Distributed Systems</h2>
<ul>
<li>The primary challenge is that the traffic is not in any sequential flow. Unlike monolithic architecture, where the flow was defined from load balancers to the application and application to data.</li>
<li>Depending on the access pattern we want to support, the traffic might come from different endpoints and reaching different services.</li>
</ul>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*iOgYCm ... 1zi-vg.png" /></p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*3RcqJa ... gm_pPw.png" /></p>
<h2>Consul’s Solutions</h2>
<p>Consul’s solution to the overall network segmentation challenge in distributed systems is by implementing service graphs and mutual TLS.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*oViPnL ... 2PFwEQ.png" /></p>
<p>Consul solves the problem of network segmentation by centrally managing the definition around who can talk to whom. Consul has a dedicated feature for this called Consul Connect.</p>
<p>Consul Connect enrolls these policies of inter-service communication that we desire and implements it as part of the service graph. So, a policy might say service A can talk to service B, but B cannot talk to C, for example.</p>
<p>The higher benefit of this is, it is not IP restricted. Rather it’s service level. This makes it scalable. The policy will be enforced on all instances of service and there will be no hardbound firewall rule specific to a service’s IP. Making us independent of the scale of our distribution network.</p>
<p>Consul Connect also handles service identity using popular TLS protocol. It distributes the TLS certificate associated with a service.</p>
<p>These certificates help other services securely identify each other. TLS also help with secure communication between the services. This makes for trusted network implementation.</p>
<p>Consul enforces TLS using an agent-based proxy attached to each service instance. This proxy acts as a sidecar. The use of proxy, in this case, prevents us from making any change into the code of original service.</p>
<p>This allows for the higher-level benefit of enforcing encryptions on data at rest and data in transit. Moreover, it will assist with fulfilling compliances required by laws around privacy and user identity.</p>
<h1>Basic Architecture of Consul</h1>
<p>Consul is a distributed and highly available system.</p>
<p>Consul is shipped as a single binary download for all popular platforms. The executable can run as a client as well as the server.</p>
<p>Each node that provides services to Consul runs a Consul agent. Each of these agents talks to one or more Consul servers.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*CMGSDD ... hBVwsg.png" /></p>
<p>The consul agent is responsible for health-checking the services on the node as the health-check of the node itself. It is not responsible for service discovery or maintaining key/value data.</p>
<p>Consul servers are where data is stored and replicated.</p>
<p>Consul can run with a single server, but it is recommended by HashiCorp to run a set of 3 to 5 servers to avoid failures. As all the data is stored at Consul server-side, with a single server, the failure could cause a data loss.</p>
<p>With a multi-servers cluster, they elect a leader among themselves. It is also recommended by HashiCorp to have a cluster of servers per datacenter.</p>
<p>During the discovery process, any service in search for other services can query the Consul servers or even Consul agents. The Consul agents forward the queries to Consul servers automatically.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*YX_1u7 ... 8VCdLg.png" /></p>
<p>If the query is the cross-data center, the queries are forwarded by the Consul server to the remote Consul servers. The results from remote Consul servers are returned to the original Consul server.</p>
<h1>Getting Started with Consul</h1>
<p>This section is dedicated to closely looking at Consul as a tool, with some hands-on experience.</p>
<h2>Download and Install</h2>
<p>As discussed above, Consul ships as a single binary downloaded from HashiCorps website or from Consul’s GitHub repo releases section.</p>
<p>Single binary can run as Consul Server or even as Consul Client Agent.</p>
<p>You can download Consul from here — Download Consul page.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*V-Sru2 ... 0RGB2g.png" /></p>
<p>We will download Consul on the command line using the link from the download page</p>
<p>Unzip the downloaded zip file.</p>
<h2>Use Consul</h2>
<p>Once you unzip the compressed file and put the binary under your PATH, you can run it like this.</p>
<p>This will start the agent in development mode.</p>
<h2>Consul Members</h2>
<p>While the above command is running, you can check for all the members in Consul’s network.</p>
<p>Given we only have one node running, it is treated as a server by default. You can designate an agent as a server by supplying the server as a command line parameter or server as a configuration parameter to Consul’s config.</p>
<p>The output of the above command is based on the gossip protocol and is eventually consistent.</p>
<h2>Consul HTTP API</h2>
<p>For a strongly consistent view of the Consul’s agent network, we can use HTTP API provided out of the box by Consul.</p>
<h2>Consul DNS Interface</h2>
<p>Consul also provides a DNS interface to query nodes. It serves DNS on 8600 port by default. That port is configurable.</p>
<p>Registering a service on Consul can be achieved either by writing a service definition or by sending a request over an appropriate HTTP API.</p>
<h2>Consul Service Definition</h2>
<p>The service definition is one of the popular ways of registering a service. Let’s take a look at one such service definition example.</p>
<p>To host our service definitions we will add a configuration directory, conventionally names as consul.d — ‘.d’ represents that there are set of configuration files under this directory, instead of single config under name consul.</p>
<p>Write the service definition for a fictitious Django web application running on port 80 on localhost.</p>
<p>To make our consul agent aware of this service definition, we can supply the configuration directory to it.</p>
<p>The relevant information in the log here are the sync statements related to the “web” service. Consul agent as accepted our config and synced it across all nodes. In this case one node.</p>
<h2>Consul DNS Service Query</h2>
<p>We can query the service with DNS, as we did with node. Like so:</p>
<p>We can also query DNS for service records that give us more info into the service specifics like port and node.</p>
<p>You can also use the TAG that we supplied in the service definition to query a specific tag:</p>
<h2>Consul Service Catalog Over HTTP API</h2>
<p>Service could similarly be queried using HTTP API:</p>
<p>We can filter the services based on health-checks on HTTP API:</p>
<h2>Update Consul Service Definition</h2>
<p>If you wish to update the service definition on a running Consul agent, it is very simple.</p>
<p>There are three ways to achieve this. You can send a SIGHUP signal to the process, reload Consul which internally sends SIGHUP on the node or you can call HTTP API dedicated to service definition updates that will internally reload the agent configuration.</p>
<p>Send SIGHUP to 21289</p>
<p>Or reload Consul</p>
<p>Configuration reload triggered</p>
<p>You should see this in your Consul log.</p>
<h2>Consul Web UI</h2>
<p>Consul provides a beautiful web user interface out-of-the-box. You can access it on port 8500.</p>
<p>In this case at http://localhost:8500. Let’s look at some of the screens.</p>
<p>The home page for the Consul UI services with all the relevant information related to a Consul agent and web service check.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*kK3VIH ... 6g8o3Q.png" /></p>
<p>Going into further details on a given service, we get a service dashboard with all the nodes and their health for that service.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*TyXNpL ... 3NKyEQ.png" /></p>
<p>On each individual node, we can look at the health-checks, services, and sessions.</p>
<p style="clear: both"><img src="https://miro.medium.com/max/60/1*F0qeDi ... ssmT9A.png" /></p>
<p>Overall, Consul Web UI is really impressive and a great companion for the command line tools that Consul provides.</p>
<h1>How is Consul Different From Zookeeper, doozerd, and etcd?</h1>
<p>Consul has first-class support for service discovery, health-check, key-value storage, multi-data centers.</p>
<p>Zookeeper, doozerd, and etcd are primarily based on the key-value store mechanism. To achieve something beyond such key-value, the store needs additional tools, libraries, and custom development around them.</p>
<p>All these tools, including Consul, uses server nodes that require a quorum of nodes to operate and are strongly consistent.</p>
<p>More or less, they all have similar semantics for key/value store management.</p>
<p>These semantics are attractive for building service discovery systems. Consul has out-of-the-box support for service discovery, which the other systems lack.</p>
<p>A service discovery system also requires a way to perform health-checks. As it is important to check for the service’s health before allowing others to discover it. Some systems use heartbeats with periodic updates and TTL. The work for these health checks grows with scale and requires fixed infra. The failure detection window is at least as long as TTL.</p>
<p>Unlike Zookeeper, Consul has client agents sitting on each node in the cluster, talking to each other in the gossip pool. This allows the clients to be thin, gives better health-checking ability, reduces client-side complexity, and solves debugging challenges.</p>
<p>Also, Consul provides native support for HTTP or DNS interfaces to perform system-wide, node-wide, or service-wide operations. Other systems need those being developed around the exposed primitives.</p>
<p>Consul’s website gives a good commentary on comparisons between Consul and other tools.</p>
<h1>Open Source Tools Around HashiCorp Consul</h1>
<p>HashiCorp and the community has built several tools around Consul</p>
<p>These Consul tools are created and managed by the dedicated engineers at HashiCorp:</p>
<p> Consul Template</strong> (3.3k stars) — Generic template rendering and notifications with Consul. Template rendering, notifier, and supervisor for @hashicorp Consul and Vault data. It provides a convenient way to populate values from Consul into the file system using the consul-template daemon.</p>
<p> Envconsul</strong> (1.2k stars) — Read and set environmental variables for processes from Consul. Envconsul provides a convenient way to launch a subprocess with environment variables populated from HashiCorp Consul and Vault.</p>
<p> Consul Replicate</strong> </strong>(360 stars) — Consul cross-DC KV replication daemon. This project provides a convenient way to replicate values from one Consul datacenter to another using the consul-replicate daemon.</p>
<p> Consul Migrate</strong> </strong>— Data migration tool to handle Consul upgrades to 0.5.1+.</p>
<p>The community around Consul has also built several tools to help with registering services and managing service configuration, I would like to mention some of the popular and well-maintained ones -</p>
<p> Confd</strong> (5.9k stars)</strong> — Manage local application configuration files using templates and data from etcd or consul.</p>
<p> Fabio</strong> (5.4k stars)</strong> — Fabio is a fast, modern, zero-conf load balancing HTTP(S) and TCP router for deploying applications managed by the consul. Register your services in consul, provide a health check and Fabio will start routing traffic to them. No configuration required.</p>
<p> Registrator</strong> (3.9k stars)</strong> — Service registry bridge for Docker with pluggable adapters. Registrator automatically registers and deregisters services for any Docker container by inspecting containers as they come online.</p>
<p> Hashi-UI</strong> (871 stars)</strong> — A modern user interface for HashiCorp Consul & Nomad.</p>
<p> Git2consul</strong> (594 stars)</strong> — Mirrors the contents of a git repository into Consul KVs. git2consul takes one or many git repositories and mirrors them into Consul KVs. The goal is for organizations of any size to use git as the backing store, audit trail, and access control mechanism for configuration changes and Consul as the delivery mechanism.</p>
<p> Spring-cloud-consul</strong> (503 stars)</strong> — This project provides Consul integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. With a few simple annotations, you can quickly enable and configure the common patterns inside your application and build large distributed systems with Consul based components.</p>
<p> Crypt</strong> (453 stars)</strong> — Store and retrieve encrypted configs from etcd or consul.</p>
<p> Mesos-Consul</strong> (344 stars)</strong> — Mesos to Consul bridge for service discovery. Mesos-consul automatically registers/deregisters services run as Mesos tasks.</p>
<p> Consul-cli</strong> (228 stars)</strong> — Command line interface to Consul HTTP API.</p>
<h1>Conclusion</h1>
<p>Distributed systems are not easy to build and setup. Maintaining them and keeping them running is altogether another piece of work. HashiCorp Consul makes the life of engineers facing such challenges easier.</p>
<p>As we went through different aspects of Consul, we learned how straightforward it would become for us to develop and deploy an application with distributed or microservices architecture.</p>
<p>Ease of use, excellent documentation, robust production-ready code and community backing, allows adapting and introducing HashiCorp Consul in our technology stack fairly easy.</p>
<p>We hope it was an informative ride on the journey of Consul. Our journey has not yet ended, this was just the first half. We will meet you again with the second part of this article that walks us through practical examples close to real-life applications.</p>
<p>Let’s us know what you would like to hear from us more or if you have any questions around the topic, we will be more than happy to answer those.</p>
<h1>Reference</h1>
<ul>
<li>HashiCorp Consul and its repo on GitHub</li>
<li>HashiCorp Consul Guides and Code</li>
<li>Microservices as explained by Martin Fowler et al.</li>
<li>HashiCorp Blog articles about Consul</li>
</ul>
<p> Velotio Technologies</strong> is an outsourced software product development partner for technology startups and enterprises. We specialize in enterprise B2B and SaaS product development with a focus on artificial intelligence and machine learning, DevOps, and test engineering.</p>
<p>Interested in learning more about us? We would love to connect with you on our</em> Website</em></strong> ,</em> LinkedIn</em></strong> or</em> Twitter</em></strong> .</em></p>
<h2>Consul devops</h2>

<h3>Consul devops</h3>
<p>[youtube]</p>
Consul devops <a href="http://remmont.com">Top stories today</a> Consul devops
<h4>Consul devops</h4>
This is part 1 of 2 part series on A Practical Guide to HashiCorp Consul. This part is primarily focused on understanding the problems that Consul solves and how it solves them. The second part is…
<h5>Consul devops</h5>
Consul devops <a href="http://remmont.com">Consul devops</a> Consul devops
SOURCE: <h6>Consul devops</h6> <a href="https://dev-ops.engineer/">Consul devops</a> Consul devops
#tags#[replace: -,-Consul devops] Consul devops#tags#

Eduard Kabrinskiy
local news