HashiCorp Consul Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * HashiCorp Consul =Overview=")
 
Line 3: Line 3:


=Overview=
=Overview=
=Running Consul with <tt>podman</tt>=
<syntaxhighlight lang='bash'>
podman pull hashicorp/consul
podman run -d -p 8500:8500 -p 8600:8600/udp --name=dev-consul hashicorp/consul agent -server -ui -node=server-1 -bootstrap-expect=1 -client=0.0.0.0
</syntaxhighlight>

Revision as of 23:24, 2 October 2023

Internal

Overview

Running Consul with podman

podman pull hashicorp/consul
podman run -d -p 8500:8500 -p 8600:8600/udp --name=dev-consul hashicorp/consul agent -server -ui -node=server-1 -bootstrap-expect=1 -client=0.0.0.0