-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fields for TLS material to destination config
Signed-off-by: Andrew Melnick <[email protected]>
- Loading branch information
Showing
4 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -907,11 +907,24 @@ URI to access the Podman service | |
- **rootless remote** - ssh://[email protected]/run/user/1000/podman/podman.sock | ||
- **rootful local** - unix:///run/podman/podman.sock | ||
- **rootful remote** - ssh://[email protected]:22/run/podman/podman.sock | ||
- **tcp/tls remote** - tcp://10.10.1.136:9443 | ||
|
||
**identity="~/.ssh/id_rsa** | ||
|
||
Path to file containing ssh identity key | ||
|
||
**tls_cert_file="~/certs/podman/tls.crt"** | ||
|
||
Path to PEM file containing TLS client certificate | ||
|
||
**tls_key_file="~/certs/podman/tls.key"** | ||
|
||
Path to PEM file containing TLS client certificate private key | ||
|
||
**tls_ca_file="~/certs/podman/ca.crt"** | ||
|
||
Path to PEM file containing TLS certificate authority (CA) bundle | ||
|
||
**[engine.volume_plugins]** | ||
|
||
A table of all the enabled volume plugins on the system. Volume plugins can be | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -766,10 +766,18 @@ default_sysctls = [ | |
# rootful "unix:///run/podman/podman.sock (Default) | ||
# remote rootless ssh://engineering.lab.company.com/run/user/1000/podman/podman.sock | ||
# remote rootful ssh://[email protected]:22/run/podman/podman.sock | ||
# tcp/tls remote tcp://10.10.1.136:9443 | ||
# | ||
# uri = "ssh://[email protected]/run/user/1001/podman/podman.sock" | ||
# Path to file containing ssh identity key | ||
# identity = "~/.ssh/id_rsa" | ||
# Path to PEM file containing TLS client certificate | ||
# tls_cert_file = "~/certs/podman/tls.crt" | ||
# Path to PEM file containing TLS client certificate private key | ||
# tls_key_file = "~/certs/podman/tls.key" | ||
# Path to PEM file containing TLS certificate authority (CA) bundle | ||
# tls_ca_file = "~/certs/podman/ca.crt" | ||
|
||
|
||
# Directory for temporary files. Must be tmpfs (wiped after reboot) | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -587,10 +587,17 @@ default_sysctls = [ | |
# rootful "unix:///run/podman/podman.sock (Default) | ||
# remote rootless ssh://engineering.lab.company.com/run/user/1000/podman/podman.sock | ||
# remote rootful ssh://[email protected]:22/run/podman/podman.sock | ||
# tcp/tls remote tcp://10.10.1.136:9443 | ||
# | ||
# uri = "ssh://[email protected]/run/user/1001/podman/podman.sock" | ||
# Path to file containing ssh identity key | ||
# identity = "~/.ssh/id_rsa" | ||
# Path to PEM file containing TLS client certificate | ||
# tls_cert_file = "~/certs/podman/tls.crt" | ||
# Path to PEM file containing TLS client certificate private key | ||
# tls_key_file = "~/certs/podman/tls.key" | ||
# Path to PEM file containing TLS certificate authority (CA) bundle | ||
# tls_ca_file = "~/certs/podman/ca.crt" | ||
|
||
# Directory for temporary files. Must be tmpfs (wiped after reboot) | ||
# | ||
|