Skip to content

Commit

Permalink
Website update for main
Browse files Browse the repository at this point in the history
  • Loading branch information
antrea-bot committed Dec 12, 2024
1 parent 790bab6 commit 32ba1b9
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
38 changes: 37 additions & 1 deletion content/docs/main/docs/api-reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,16 @@ <h3 id="controlplane.antrea.io/v1beta2.BundleFileServer">BundleFileServer
<td>
</td>
</tr>
<tr>
<td>
<code>hostPublicKey</code></br>
<em>
[]byte
</em>
</td>
<td>
</td>
</tr>
</tbody>
</table>
<h3 id="controlplane.antrea.io/v1beta2.BundleServerAuthConfiguration">BundleServerAuthConfiguration
Expand Down Expand Up @@ -3691,6 +3701,19 @@ <h3 id="crd.antrea.io/v1alpha1.BundleFileServer">BundleFileServer
e.g, <a href="https://api.example.com:8443/v1/supportbundles/">https://api.example.com:8443/v1/supportbundles/</a>. If scheme is not set, https is used by default.</p>
</td>
</tr>
<tr>
<td>
<code>hostPublicKey</code></br>
<em>
[]byte
</em>
</td>
<td>
<p>HostPublicKey specifies the only host public key that will be accepted when connecting to
the file server. If omitted, any host key will be accepted, which is not recommended.
For SFTP, the key must be formatted for use in the SSH wire protocol according to RFC 4253, section 6.6.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="crd.antrea.io/v1alpha1.BundleNodes">BundleNodes
Expand Down Expand Up @@ -4208,6 +4231,19 @@ <h3 id="crd.antrea.io/v1alpha1.PacketCaptureFileServer">PacketCaptureFileServer
e.g., <a href="https://api.example.com:8443/v1/packets/">https://api.example.com:8443/v1/packets/</a>. Currently only <code>sftp</code> protocol is supported.</p>
</td>
</tr>
<tr>
<td>
<code>hostPublicKey</code></br>
<em>
[]byte
</em>
</td>
<td>
<p>HostPublicKey specifies the only host public key that will be accepted when connecting to
the file server. If omitted, any host key will be accepted, which is not recommended.
For SFTP, the key must be formatted for use in the SSH wire protocol according to RFC 4253, section 6.6.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="crd.antrea.io/v1alpha1.PacketCaptureFirstNConfig">PacketCaptureFirstNConfig
Expand Down Expand Up @@ -12447,5 +12483,5 @@ <h3 id="system.antrea.io/v1beta1.BundleStatus">BundleStatus
<hr/>
<p><em>
Generated with <code>gen-crd-api-reference-docs</code>
on git commit <code>e404ccc</code>.
on git commit <code>521cd4b</code>.
</em></p>
4 changes: 4 additions & 0 deletions content/docs/main/docs/packetcapture-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ metadata:
spec:
fileServer:
url: sftp://127.0.0.1:22/upload # Define your own sftp url here.
# Host public key (as a base64-encoded string) that will be accepted when connecting to the file server.
# Get this key from your SSH server configuration, or from a known_hosts file.
# If omitted, any host key will be accepted, which is insecure and not recommended.
hostPublicKey: AAAAC3NzaC1lZDI1NTE5AAAAIBCUI6Yi9KbkiPXK2MzqYYtlluw7v_WQz071JZPdZEKr # Replace with your own.
timeout: 60
captureConfig:
firstN:
Expand Down
8 changes: 8 additions & 0 deletions content/docs/main/docs/support-bundle-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ spec:
sinceTime: 2h # Collect the logs in the latest 2 hours. Collect all available logs if the time is not set.
fileServer:
url: sftp://yourtestdomain.com:22/root/test
# Host public key (as a base64-encoded string) that will be accepted when connecting to the file server.
# Get this key from your SSH server configuration, or from a known_hosts file.
# If omitted, any host key will be accepted, which is insecure and not recommended.
# hostPublicKey: ...
authentication:
authType: "BasicAuthentication"
authSecret:
Expand All @@ -159,6 +163,10 @@ spec:
namespace: vm-ns # namespace is mandatory when collecting support bundle from external Nodes.
fileServer:
url: yourtestdomain.com:22/root/test # Scheme sftp can be omitted. The url of "$controlplane_node_ip:30010/upload" is used if deployed with sftp-deployment.yml.
# Host public key (as a base64-encoded string) that will be accepted when connecting to the file server.
# Get this key from your SSH server configuration, or from a known_hosts file.
# If omitted, any host key will be accepted, which is insecure and not recommended.
# hostPublicKey: ...
authentication:
authType: "BasicAuthentication"
authSecret:
Expand Down

0 comments on commit 32ba1b9

Please sign in to comment.